ソースを参照

fix:收货单收货数量totalCount改为receiveTotalCount

liujt 1 日 前
コミット
ed87290d7c

+ 16 - 4
src/views/purchasingManage/purchaseOrder/invoice/components/detailDialog.vue

@@ -325,14 +325,26 @@
               label: '包装规格',
               showOverflowTooltip: true
             },
-            {
+            // 华泰临时改动?
+            // {
+            //   width: 80,
+            //   prop: 'totalCount',
+            //   label: '收货数量',
+            //   align: 'center',
+            //   formatter: (row, column) => {
+            //     if (row.totalCount) {
+            //       return row.totalCount + ' ' + row.measuringUnit;
+            //     }
+            //   }
+            // },
+               {
               width: 80,
-              prop: 'totalCount',
+              prop: 'receiveTotalCount',
               label: '收货数量',
               align: 'center',
               formatter: (row, column) => {
-                if (row.totalCount) {
-                  return row.totalCount + ' ' + row.measuringUnit;
+                if (row.receiveTotalCount) {
+                  return row.receiveTotalCount + ' ' + row.measuringUnit;
                 }
               }
             },