Browse Source

fix: 库存式订单选择产品显示盘具列

liujt 2 tuần trước cách đây
mục cha
commit
1f9ccfd20d

+ 1 - 0
src/BIZComponents/inventoryTable.vue

@@ -2515,6 +2515,7 @@
           this.$set(parasm, 'batchNo', item.batchNo);
           this.$set(parasm, 'imgCode', '');
           this.$set(parasm, 'produceType', item.componentAttribute);
+          this.$set(parasm, 'reelSpecification', item.reelSpecification);
           this.$set(parasm, 'taxRate', item.taxRate !== undefined && item.taxRate !== null? item.taxRate : this.isContractBook ? this.defTaxRate : this.isTaxRate == 1 ? this.defTaxRate : undefined);
           let goodsData = await getGoodsByCategoryId(item.productId);
           goodsData = goodsData.filter((item) => item.approvalStatus == 2);

+ 6 - 0
src/BIZComponents/selectStockLedger/selectStockLedgerDialog.vue

@@ -309,6 +309,12 @@
             align: 'center',
             label: '包装单位',
             showOverflowTooltip: true
+          },
+          {
+            prop: 'reelSpecification',
+            label: '盘具',
+            showOverflowTooltip: true,
+            align: 'center'
           }
         ];
         return tempData.filter((item) => !item.hide);