{{ scope.row.供货商 }}
@@ -296,7 +296,7 @@
询价单
询价单基础信息维护
-
+
{{ scope.row.询价单编号 }}
@@ -343,7 +343,7 @@
{{ scope.row.供应商名称 }}
-
+
{{ scope.row.电话号码 }}
@@ -353,9 +353,34 @@
{{ scope.row.传真 }}
-
+
- {{ scope.row.电子信箱 }}
+ {{ scope.row.注册资本 }}
+
+
+
+
+ {{ scope.row.帐号 }}
+
+
+
+
+ {{ scope.row.开户行 }}
+
+
+
+
+ {{ scope.row.税号 }}
+
+
+
+
+ {{ scope.row.企业性质 }}
+
+
+
+
+ {{ scope.row.货期 }}
@@ -381,6 +406,11 @@
询价单明细
+
+
+ {{ scope.row.供应商名称 }}
+
+
{{ scope.row.组件零件流水号 ? scope.row.物料型号 : scope.row.零件图号 }}
@@ -486,19 +516,19 @@
-
+
-
+
-
+
@@ -569,12 +599,12 @@
{{ scope.row.供应商名称 }}
-
+
{{ scope.row.企业性质 }}
-
+
{{ scope.row.注册资本 }}
@@ -806,7 +836,8 @@ export default {
total12: 0,
pageCurrent12: 1,
pageSize12: 10,
- supplierFilters: [{ text: '', value: '' }],
+ remarkFilters: [],
+ supplierFilters: [],
tableData2: [], // 询价单列表
total2: 0,
pageCurrent2: 1,
@@ -1026,6 +1057,9 @@ export default {
selectable(row, index) { // 控制某行是否可选
return (parseInt(row.询价状态编号) === 1 && parseInt(row.采购状态编号) === 1 && parseInt(row.是否确认) === 1) // 未询价&&未采购&&确认物料修改
},
+ filterHandler0(value, row) { // 筛选备注
+ return row['备注'] === value
+ },
filterHandler(value, row) { // 筛选供货商
return row['供货商'] === value
},
@@ -1040,6 +1074,18 @@ export default {
searchMaterial(this.pageCurrent11, this.pageSize11, this.materialStatusValue[this.materialStatusValue.length - 1], check1, this.materialName, check2, this.materialSpec, check3, this.materialModel, this.id, check4, this.projectValue, check5, this.machineValue, check6, this.groupValue).then(response => {
this.tableData11 = response.data.rows
this.total11 = response.data.total
+ const remark = []
+ const supplier = []
+ this.remarkFilters = []
+ this.supplierFilters = []
+ response.data.rows.map(v => {
+ if (!remark.includes(v.备注)) {
+ remark.push(v.备注)
+ supplier.push(v.供货商)
+ this.remarkFilters.push({ text: v.备注, value: v.备注 })
+ this.supplierFilters.push({ text: v.供货商, value: v.供货商 })
+ }
+ })
})
},
handleSizeChange11(val) { // 标准件和外购件列表分页
@@ -1062,6 +1108,18 @@ export default {
searchPart(this.pageCurrent12, this.pageSize12, this.materialStatusValue[this.materialStatusValue.length - 1], check1, this.partNum, check2, this.partName, check3, this.partSpec, this.id, check4, this.projectValue, check5, this.machineValue, check6, this.groupValue).then(response => {
this.tableData12 = response.data.rows
this.total12 = response.data.total
+ const remark = []
+ const supplier = []
+ this.remarkFilters = []
+ this.supplierFilters = []
+ response.data.rows.map(v => {
+ if (!remark.includes(v.备注)) {
+ remark.push(v.备注)
+ supplier.push(v.供货商)
+ this.remarkFilters.push({ text: v.备注, value: v.备注 })
+ this.supplierFilters.push({ text: v.供货商, value: v.供货商 })
+ }
+ })
})
},
handleSizeChange12(val) { // 基本件列表分页
diff --git a/src/views/PurchasingCenter/CreatePurchaseContract/index.vue b/src/views/PurchasingCenter/CreatePurchaseContract/index.vue
index a19f135c..9cd7e562 100644
--- a/src/views/PurchasingCenter/CreatePurchaseContract/index.vue
+++ b/src/views/PurchasingCenter/CreatePurchaseContract/index.vue
@@ -3,6 +3,17 @@
+
+
+
+
+
+
+
@@ -14,11 +25,6 @@
-
-
-
-
-
@@ -129,6 +135,9 @@
+
+
+
①选择合同模板:
@@ -156,7 +165,7 @@