|
@@ -31,7 +31,7 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :md="6" :sm="8">
|
|
<a-col :md="6" :sm="8">
|
|
<a-form-item label="小PO">
|
|
<a-form-item label="小PO">
|
|
- <a-input placeholder="请输入小PO" v-model="queryParam.poNo"></a-input>
|
|
|
|
|
|
+ <a-input placeholder="请输入小PO" v-model="queryParam.smallPo"></a-input>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<template v-if="toggleSearchStatus">
|
|
<template v-if="toggleSearchStatus">
|
|
@@ -42,7 +42,7 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :md="6" :sm="8">
|
|
<a-col :md="6" :sm="8">
|
|
<a-form-item label="款号">
|
|
<a-form-item label="款号">
|
|
- <a-input placeholder="请输入款号" v-model="queryParam.styleNum"></a-input>
|
|
|
|
|
|
+ <a-input placeholder="请输入款号" v-model="queryParam.itemNumber"></a-input>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
</template>
|
|
</template>
|
|
@@ -97,9 +97,11 @@ export default {
|
|
fatherData:[], //接受父组件的表格数据
|
|
fatherData:[], //接受父组件的表格数据
|
|
// 查询条件
|
|
// 查询条件
|
|
queryParam: {
|
|
queryParam: {
|
|
- orderNum: '',
|
|
|
|
- name: '', // 品名
|
|
|
|
- styleNum: ''
|
|
|
|
|
|
+ itemNumber:'',
|
|
|
|
+ customerAbbreviation:'',
|
|
|
|
+ preDeliveryDate:'',
|
|
|
|
+ smallPo:'',
|
|
|
|
+ distributionPoint:''
|
|
},
|
|
},
|
|
selectedRowKeys: [], // 勾选航
|
|
selectedRowKeys: [], // 勾选航
|
|
selectedRows: [],
|
|
selectedRows: [],
|
|
@@ -125,9 +127,15 @@ export default {
|
|
width: 120,
|
|
width: 120,
|
|
className: 'replacecolor'
|
|
className: 'replacecolor'
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ title: '预装箱单单据号',
|
|
|
|
+ dataIndex: 'documentNo',
|
|
|
|
+ width: 120,
|
|
|
|
+ className: 'replacecolor'
|
|
|
|
+ },
|
|
{
|
|
{
|
|
title: '小PO',
|
|
title: '小PO',
|
|
- dataIndex: 'small_po',
|
|
|
|
|
|
+ dataIndex: 'smallPo',
|
|
width: 120,
|
|
width: 120,
|
|
customRender: t => ellipsis(t),
|
|
customRender: t => ellipsis(t),
|
|
className: 'replacecolor'
|
|
className: 'replacecolor'
|
|
@@ -152,7 +160,7 @@ export default {
|
|
|
|
|
|
{
|
|
{
|
|
title: '备注',
|
|
title: '备注',
|
|
- dataIndex: 'note',
|
|
|
|
|
|
+ dataIndex: 'memo',
|
|
width: 150,
|
|
width: 150,
|
|
customRender: t => ellipsis(t),
|
|
customRender: t => ellipsis(t),
|
|
className: 'replacecolor'
|
|
className: 'replacecolor'
|
|
@@ -274,7 +282,6 @@ export default {
|
|
searchQuery() {
|
|
searchQuery() {
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
//if (this.queryParam.preDeliveryDate != undefined && this.queryParam.preDeliveryDate != "")
|
|
//if (this.queryParam.preDeliveryDate != undefined && this.queryParam.preDeliveryDate != "")
|
|
-
|
|
|
|
querySyPreAssembledPackingList(this.queryParam).then(res => {
|
|
querySyPreAssembledPackingList(this.queryParam).then(res => {
|
|
if (res.success) {
|
|
if (res.success) {
|
|
this.advancePackingListData = res.result.records;
|
|
this.advancePackingListData = res.result.records;
|
|
@@ -289,7 +296,14 @@ export default {
|
|
},
|
|
},
|
|
// 重置
|
|
// 重置
|
|
searchReset() {
|
|
searchReset() {
|
|
- this.queryParam = {}
|
|
|
|
|
|
+ this.queryParam = {
|
|
|
|
+ itemNumber:'',
|
|
|
|
+ customerAbbreviation:'',
|
|
|
|
+ preDeliveryDate:'',
|
|
|
|
+ smallPo:'',
|
|
|
|
+ distributionPoint:''
|
|
|
|
+ }
|
|
|
|
+ this.searchQuery()
|
|
// this.getShipmentList()
|
|
// this.getShipmentList()
|
|
},
|
|
},
|
|
// 弹框确定
|
|
// 弹框确定
|