lilei 3 éve
szülő
commit
4542aa518c

+ 1 - 0
src/views/allocationManagement/transfersPrint/list.vue

@@ -197,6 +197,7 @@ export default {
         { title: '收货客户名称', dataIndex: 'receiverName', width: '8%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
         { title: '总数量', dataIndex: 'totalQty', width: '5%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '调拨类型', dataIndex: 'allocateTypeName', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
+        { title: '业务状态', dataIndex: 'stateDictValue', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '打印状态', dataIndex: 'printStateDictValue', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '打印次数', dataIndex: 'printCount', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '操作', scopedSlots: { customRender: 'action' }, width: '8%', align: 'center' }

+ 12 - 0
src/views/salesManagement/outboundOrder/sendGoodModal.vue

@@ -394,6 +394,18 @@ export default {
       this.tableData = []
       this.detail = []
       this.$refs.ruleForm.resetFields()
+      this.form = {
+        'stockOutSnList': [], // 出库单列表
+        'sendDate': moment(), // 托运时间
+        'customerAddress': '', // 目的地
+        'customerAddressDetail': '', // 详细地址
+        'customerCacateName': '', // 收货人
+        'customerCacatePhone': '', // 收货人电话
+        'payType': '', // 收款方式
+        'handoverType': '', // 发货方式
+        'totalSendAmount': '', // 发货总费用
+        'sendBillDetailList': [] // 发货列表
+      }
     }
   },
   watch: {