|
@@ -16,8 +16,8 @@
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :md="6" :sm="24">
|
|
<a-col :md="6" :sm="24">
|
|
- <a-form-item label="备货单号">
|
|
|
|
- <a-input id="signWarehousingList-sendBillNo" v-model.trim="queryParam.sendBillNo" allowClear placeholder="请输入备货单号"/>
|
|
|
|
|
|
+ <a-form-item label="发货单号">
|
|
|
|
+ <a-input id="signWarehousingList-sendBillNo" v-model.trim="queryParam.sendBillNo" allowClear placeholder="请输入发货单号"/>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<template v-if="advanced">
|
|
<template v-if="advanced">
|
|
@@ -101,14 +101,14 @@ export default {
|
|
beginDate: getDate.getCurrMonthDays().starttime + ' 00:00:00',
|
|
beginDate: getDate.getCurrMonthDays().starttime + ' 00:00:00',
|
|
endDate: getDate.getCurrMonthDays().endtime + ' 23:59:59',
|
|
endDate: getDate.getCurrMonthDays().endtime + ' 23:59:59',
|
|
purchaseBillNo: '', // 采购单号
|
|
purchaseBillNo: '', // 采购单号
|
|
- sendBillNo: '', // 备货单号
|
|
|
|
|
|
+ sendBillNo: '', // 发货单号
|
|
auditState: undefined
|
|
auditState: undefined
|
|
},
|
|
},
|
|
disabled: false, // 查询、重置按钮是否可操作
|
|
disabled: false, // 查询、重置按钮是否可操作
|
|
tableHeight: 0,
|
|
tableHeight: 0,
|
|
columns: [
|
|
columns: [
|
|
{ title: '采购单号', scopedSlots: { customRender: 'purchaseBillNo' }, width: '18%', align: 'center' },
|
|
{ title: '采购单号', scopedSlots: { customRender: 'purchaseBillNo' }, width: '18%', align: 'center' },
|
|
- { title: '备货单号', scopedSlots: { customRender: 'sendBillNo' }, width: '18%', align: 'center' },
|
|
|
|
|
|
+ { title: '发货单号', scopedSlots: { customRender: 'sendBillNo' }, width: '18%', align: 'center' },
|
|
{ title: '创建时间', dataIndex: 'createDate', width: '14%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '创建时间', dataIndex: 'createDate', width: '14%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '发货数量', dataIndex: 'totalPutQty', width: '8%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
{ title: '发货数量', dataIndex: 'totalPutQty', width: '8%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
{ title: '发货金额', dataIndex: 'totalPutAmount', width: '8%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
{ title: '发货金额', dataIndex: 'totalPutAmount', width: '8%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|