|
@@ -55,8 +55,15 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="打印时间" prop="printTime">
|
|
|
+ <el-date-picker v-model="screenForm.printTime" type="datetimerange" range-separator="至" style="width: 100%;"
|
|
|
+ value-format="yyyy-MM-dd HH:mm:ss" start-placeholder="开始日期" end-placeholder="结束日期">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="24" class="tr">
|
|
|
+ <el-col :xs="24" :sm="12" :lg="18" class="tr">
|
|
|
<el-form-item label="">
|
|
|
<el-button @click="resetScreenForm">清空</el-button>
|
|
|
<el-button type="primary" @click="submitScreenForm">搜索</el-button>
|
|
@@ -82,11 +89,17 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column align="left" label="打单日期" prop="createTime" min-width="160" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="left" label="信息密钥" prop="informationKey" min-width="100" show-overflow-tooltip>
|
|
|
+ <!-- <el-table-column align="left" label="信息密钥" prop="informationKey" min-width="100" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
<CopyButton :copyText="scope.row.informationKey" />
|
|
|
<span>{{ scope.row.informationKey }}</span>
|
|
|
</template>
|
|
|
+ </el-table-column> -->
|
|
|
+ <el-table-column align="left" label="出库单号" prop="salesOrderId" min-width="130" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <CopyButton :copyText="scope.row.salesOrderId" />
|
|
|
+ <span>{{ scope.row.salesOrderId }}</span>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="left" label="发货申请单号" prop="invoiceId" min-width="130" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
@@ -126,6 +139,8 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column align="left" label="提货总数量" prop="refundableQty" min-width="100" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column align="left" label="提货人" prop="takerName" min-width="100" show-overflow-tooltip>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="left" label="经销商编码" prop="customerNumber" min-width="100" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
<CopyButton :copyText="scope.row.customerNumber" />
|
|
@@ -203,8 +218,11 @@ export default {
|
|
|
date: '',
|
|
|
status: '',
|
|
|
takerPhone: '',
|
|
|
- takerId: ''
|
|
|
+ takerId: '',
|
|
|
+ printTime:'',
|
|
|
+ salesOrderId:''
|
|
|
},
|
|
|
+ pickupManList:''
|
|
|
}
|
|
|
},
|
|
|
|
|
@@ -219,7 +237,10 @@ export default {
|
|
|
endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
|
status: this.screenForm.status,
|
|
|
takerPhone: this.screenForm.takerPhone,
|
|
|
- takerId: this.screenForm.takerId
|
|
|
+ takerId: this.screenForm.takerId,
|
|
|
+ printStartTime:this.screenForm.printTime[0],
|
|
|
+ printEndTime:this.screenForm.printTime[1],
|
|
|
+ salesOrderId:this.screenForm.salesOrderId
|
|
|
}
|
|
|
},
|
|
|
},
|
|
@@ -253,7 +274,10 @@ export default {
|
|
|
endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
|
status: this.screenForm.status,
|
|
|
takerPhone: this.screenForm.takerPhone,
|
|
|
- takerId: this.screenForm.takerId
|
|
|
+ takerId: this.screenForm.takerId,
|
|
|
+ printStartTime:this.screenForm.printTime[0],
|
|
|
+ printEndTime:this.screenForm.printTime[1],
|
|
|
+ salesOrderId:this.screenForm.salesOrderId
|
|
|
};
|
|
|
getPickupList(params).then((res) => {
|
|
|
this.dataList = res.data.records;
|