From 5ea46cccf4f162f622bcb6bc6697956c53ab3cd4 Mon Sep 17 00:00:00 2001 From: jishenghua <752718920@qq.com> Date: Thu, 10 Oct 2024 00:57:26 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=99=E5=8D=95=E6=8D=AE=E5=BD=95=E5=85=A5?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E5=A2=9E=E5=8A=A0=E5=93=81=E7=89=8C=E5=92=8C?= =?UTF-8?q?=E5=88=B6=E9=80=A0=E5=95=86=E7=9A=84=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jshERP-web/src/views/bill/mixins/BillModalMixin.js | 10 ++++++++++ .../src/views/bill/modules/AllocationOutModal.vue | 2 ++ jshERP-web/src/views/bill/modules/AssembleModal.vue | 2 ++ jshERP-web/src/views/bill/modules/DisassembleModal.vue | 2 ++ jshERP-web/src/views/bill/modules/OtherInModal.vue | 2 ++ jshERP-web/src/views/bill/modules/OtherOutModal.vue | 2 ++ .../src/views/bill/modules/PurchaseApplyModal.vue | 2 ++ .../src/views/bill/modules/PurchaseBackModal.vue | 2 ++ jshERP-web/src/views/bill/modules/PurchaseInModal.vue | 2 ++ .../src/views/bill/modules/PurchaseOrderModal.vue | 2 ++ jshERP-web/src/views/bill/modules/RetailBackModal.vue | 2 ++ jshERP-web/src/views/bill/modules/RetailOutModal.vue | 2 ++ jshERP-web/src/views/bill/modules/SaleBackModal.vue | 2 ++ jshERP-web/src/views/bill/modules/SaleOrderModal.vue | 2 ++ jshERP-web/src/views/bill/modules/SaleOutModal.vue | 2 ++ 15 files changed, 38 insertions(+) diff --git a/jshERP-web/src/views/bill/mixins/BillModalMixin.js b/jshERP-web/src/views/bill/mixins/BillModalMixin.js index 880951bf5..7e1498c42 100644 --- a/jshERP-web/src/views/bill/mixins/BillModalMixin.js +++ b/jshERP-web/src/views/bill/mixins/BillModalMixin.js @@ -606,6 +606,8 @@ export const BillModalMixin = { standard: mInfo.standard, model: mInfo.model, color: mInfo.color, + brand: mInfo.brand, + mfrs: mInfo.mfrs, materialOther: mInfo.materialOther, unit: mInfo.commodityUnit, sku: mInfo.sku, @@ -621,6 +623,8 @@ export const BillModalMixin = { changeColumnHide() { this.changeFormTypes(this.materialTable.columns, 'model', 0) this.changeFormTypes(this.materialTable.columns, 'color', 0) + this.changeFormTypes(this.materialTable.columns, 'brand', 0) + this.changeFormTypes(this.materialTable.columns, 'mfrs', 0) this.changeFormTypes(this.materialTable.columns, 'materialOther', 0) this.changeFormTypes(this.materialTable.columns, 'sku', 0) }, @@ -632,6 +636,12 @@ export const BillModalMixin = { if(info.color) { this.changeFormTypes(this.materialTable.columns, 'color', 1) } + if(info.brand) { + this.changeFormTypes(this.materialTable.columns, 'brand', 1) + } + if(info.mfrs) { + this.changeFormTypes(this.materialTable.columns, 'mfrs', 1) + } if(info.materialOther) { this.changeFormTypes(this.materialTable.columns, 'materialOther', 1) } diff --git a/jshERP-web/src/views/bill/modules/AllocationOutModal.vue b/jshERP-web/src/views/bill/modules/AllocationOutModal.vue index dae1731d7..9e154d3b2 100644 --- a/jshERP-web/src/views/bill/modules/AllocationOutModal.vue +++ b/jshERP-web/src/views/bill/modules/AllocationOutModal.vue @@ -151,6 +151,8 @@ { title: '规格', key: 'standard', width: '9%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '9%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '5%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '调入仓库', key: 'anotherDepotId', width: '8%', type: FormTypes.select, placeholder: '请选择${title}', options: [], allowSearch:true}, diff --git a/jshERP-web/src/views/bill/modules/AssembleModal.vue b/jshERP-web/src/views/bill/modules/AssembleModal.vue index 2f8dadc69..a1587b41b 100644 --- a/jshERP-web/src/views/bill/modules/AssembleModal.vue +++ b/jshERP-web/src/views/bill/modules/AssembleModal.vue @@ -152,6 +152,8 @@ { title: '规格', key: 'standard', width: '9%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '9%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '5%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/DisassembleModal.vue b/jshERP-web/src/views/bill/modules/DisassembleModal.vue index e583d757a..50140931f 100644 --- a/jshERP-web/src/views/bill/modules/DisassembleModal.vue +++ b/jshERP-web/src/views/bill/modules/DisassembleModal.vue @@ -152,6 +152,8 @@ { title: '规格', key: 'standard', width: '9%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '9%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '5%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/OtherInModal.vue b/jshERP-web/src/views/bill/modules/OtherInModal.vue index f5377d4dc..63c20cd6c 100644 --- a/jshERP-web/src/views/bill/modules/OtherInModal.vue +++ b/jshERP-web/src/views/bill/modules/OtherInModal.vue @@ -189,6 +189,8 @@ { title: '规格', key: 'standard', width: '9%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '9%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '5%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/OtherOutModal.vue b/jshERP-web/src/views/bill/modules/OtherOutModal.vue index 37902d71b..5ce1de138 100644 --- a/jshERP-web/src/views/bill/modules/OtherOutModal.vue +++ b/jshERP-web/src/views/bill/modules/OtherOutModal.vue @@ -189,6 +189,8 @@ { title: '规格', key: 'standard', width: '9%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '9%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '5%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/PurchaseApplyModal.vue b/jshERP-web/src/views/bill/modules/PurchaseApplyModal.vue index bdc3cd650..456455805 100644 --- a/jshERP-web/src/views/bill/modules/PurchaseApplyModal.vue +++ b/jshERP-web/src/views/bill/modules/PurchaseApplyModal.vue @@ -166,6 +166,8 @@ { title: '规格', key: 'standard', width: '9%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '9%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '6%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '6%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '6%', type: FormTypes.normal }, { title: '多属性', key: 'sku', width: '10%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/PurchaseBackModal.vue b/jshERP-web/src/views/bill/modules/PurchaseBackModal.vue index 1dd255ef1..db7d9582e 100644 --- a/jshERP-web/src/views/bill/modules/PurchaseBackModal.vue +++ b/jshERP-web/src/views/bill/modules/PurchaseBackModal.vue @@ -243,6 +243,8 @@ { title: '规格', key: 'standard', width: '9%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '9%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '5%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/PurchaseInModal.vue b/jshERP-web/src/views/bill/modules/PurchaseInModal.vue index 317b0be2a..3f73df5bf 100644 --- a/jshERP-web/src/views/bill/modules/PurchaseInModal.vue +++ b/jshERP-web/src/views/bill/modules/PurchaseInModal.vue @@ -276,6 +276,8 @@ { title: '规格', key: 'standard', width: '9%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '9%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '5%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/PurchaseOrderModal.vue b/jshERP-web/src/views/bill/modules/PurchaseOrderModal.vue index 713005aa1..c5c0fb623 100644 --- a/jshERP-web/src/views/bill/modules/PurchaseOrderModal.vue +++ b/jshERP-web/src/views/bill/modules/PurchaseOrderModal.vue @@ -259,6 +259,8 @@ { title: '规格', key: 'standard', width: '9%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '9%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '5%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/RetailBackModal.vue b/jshERP-web/src/views/bill/modules/RetailBackModal.vue index acf166629..4471f1fbc 100644 --- a/jshERP-web/src/views/bill/modules/RetailBackModal.vue +++ b/jshERP-web/src/views/bill/modules/RetailBackModal.vue @@ -232,6 +232,8 @@ { title: '规格', key: 'standard', width: '10%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '10%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '7%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '5%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/RetailOutModal.vue b/jshERP-web/src/views/bill/modules/RetailOutModal.vue index 1ca9ca3da..50c3e9768 100644 --- a/jshERP-web/src/views/bill/modules/RetailOutModal.vue +++ b/jshERP-web/src/views/bill/modules/RetailOutModal.vue @@ -244,6 +244,8 @@ { title: '规格', key: 'standard', width: '10%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '10%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '7%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '5%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/SaleBackModal.vue b/jshERP-web/src/views/bill/modules/SaleBackModal.vue index 0dfa67a3d..0e433878d 100644 --- a/jshERP-web/src/views/bill/modules/SaleBackModal.vue +++ b/jshERP-web/src/views/bill/modules/SaleBackModal.vue @@ -248,6 +248,8 @@ { title: '规格', key: 'standard', width: '9%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '9%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '5%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/SaleOrderModal.vue b/jshERP-web/src/views/bill/modules/SaleOrderModal.vue index 4e87ae1ac..4bcbef7d7 100644 --- a/jshERP-web/src/views/bill/modules/SaleOrderModal.vue +++ b/jshERP-web/src/views/bill/modules/SaleOrderModal.vue @@ -244,6 +244,8 @@ { title: '规格', key: 'standard', width: '9%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '9%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '5%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal }, diff --git a/jshERP-web/src/views/bill/modules/SaleOutModal.vue b/jshERP-web/src/views/bill/modules/SaleOutModal.vue index de6e38381..01d733fdf 100644 --- a/jshERP-web/src/views/bill/modules/SaleOutModal.vue +++ b/jshERP-web/src/views/bill/modules/SaleOutModal.vue @@ -291,6 +291,8 @@ { title: '规格', key: 'standard', width: '9%', type: FormTypes.normal }, { title: '型号', key: 'model', width: '9%', type: FormTypes.normal }, { title: '颜色', key: 'color', width: '5%', type: FormTypes.normal }, + { title: '品牌', key: 'brand', width: '6%', type: FormTypes.normal }, + { title: '制造商', key: 'mfrs', width: '6%', type: FormTypes.normal }, { title: '扩展信息', key: 'materialOther', width: '5%', type: FormTypes.normal }, { title: '库存', key: 'stock', width: '5%', type: FormTypes.normal }, { title: '单位', key: 'unit', width: '4%', type: FormTypes.normal },