Răsfoiți Sursa

添加查询条件

yusheng 1 an în urmă
părinte
comite
1c4dd80634

+ 7 - 0
src/views/purchasingManage/purchaseOrder/invoice/index.vue

@@ -254,6 +254,13 @@
             showOverflowTooltip: true,
             minWidth: 140
           },
+          {
+            prop: 'productCodes',
+            label: '产品编码',
+            align: 'center',
+            showOverflowTooltip: true,
+            minWidth: 160
+          },
           {
             prop: 'batchNo',
             label: '批次号',

+ 7 - 0
src/views/purchasingManage/purchaseOrder/outSourceSend/index.vue

@@ -238,6 +238,13 @@
             showOverflowTooltip: true,
             minWidth: 140
           },
+          {
+            prop: 'productCodes',
+            label: '产品编码',
+            align: 'center',
+            showOverflowTooltip: true,
+            minWidth: 160
+          },
           {
             prop: 'batchNo',
             label: '批次号',

+ 7 - 0
src/views/purchasingManage/purchaseOrder/returnGoods/index.vue

@@ -209,6 +209,13 @@
             showOverflowTooltip: true,
             minWidth: 140
           },
+          {
+            prop: 'productCodes',
+            label: '产品编码',
+            align: 'center',
+            showOverflowTooltip: true,
+            minWidth: 160
+          },
           {
           prop: 'batchNo',
           label: '批次号',

+ 16 - 2
src/views/saleManage/saleOrder/components/searchTable.vue

@@ -3,7 +3,7 @@
   <seekPage :seekList="seekList" :formLength="4" @search="search"></seekPage>
 </template>
 <script>
-  import { reviewStatusSelect,saleOrderProgressStatusEnum } from '@/enum/dict';
+  import { reviewStatusSelect, saleOrderProgressStatusEnum } from '@/enum/dict';
   export default {
     data() {
       return {};
@@ -68,11 +68,25 @@
             width: 380,
             placeholder: ''
           },
+          {
+            label: '到货方式',
+            value: 'arrivalWay',
+            type: 'select',
+            planList: [
+              {
+                label: '一次性到货',
+                value: '1'
+              },
+              { label: '分配到货', value: '2' }
+            ],
+            width: 380,
+            placeholder: ''
+          },
           {
             label: '订单进度',
             value: 'progress',
             type: 'select',
-            planList:saleOrderProgressStatusEnum,
+            planList: saleOrderProgressStatusEnum,
             width: 380,
             placeholder: ''
           },