|
|
@@ -46,6 +46,10 @@
|
|
46
|
46
|
<el-input v-model="query.plateNo" size="small" style="width:120px;margin-left: -8px" @input="getPltList">
|
|
47
|
47
|
</el-input>
|
|
48
|
48
|
</el-form-item>
|
|
|
49
|
+ <el-form-item label="合约号" style="margin-left: -35px;margin-top: -15px">
|
|
|
50
|
+ <el-input v-model="query.contractNo" size="small" style="width:120px;margin-left: -8px" @input="getConList">
|
|
|
51
|
+ </el-input>
|
|
|
52
|
+ </el-form-item>
|
|
49
|
53
|
<el-form-item label="理货人员" style="margin-top: -15px">
|
|
50
|
54
|
<el-select v-model="query.tallyPeople" size="small" style="margin-left: 10px;margin-top: -15px" clearable placeholder="理货人员">
|
|
51
|
55
|
<el-option v-for="item in tallyPeopleOption" :key="item.id" :label="item.dicName" :value="item.dicCode">
|
|
|
@@ -66,6 +70,10 @@
|
|
66
|
70
|
<el-input v-model="query.remark1" size="small" style="width:120px;margin-left: -8px" @input="getPltList">
|
|
67
|
71
|
</el-input>
|
|
68
|
72
|
</el-form-item>
|
|
|
73
|
+ <el-form-item label="修改时间" style="margin-left: -35px;margin-top: -15px">
|
|
|
74
|
+ <el-date-picker size="small" v-model="ChangeInDtm" type="datetime" placeholder="选择日期时间" style="width:200px;margin-left: -8px">
|
|
|
75
|
+ </el-date-picker>
|
|
|
76
|
+ </el-form-item>
|
|
69
|
77
|
<el-form-item label=" " style="margin-left: -35px;margin-top: -15px">
|
|
70
|
78
|
<el-button size="small" @click="handleSearch" type="primary">查询</el-button>
|
|
71
|
79
|
<!-- <el-button @click="handleSearch" type="primary" size="small">查询</el-button> -->
|
|
|
@@ -94,10 +102,7 @@
|
|
94
|
102
|
</el-dropdown>
|
|
95
|
103
|
|
|
96
|
104
|
</el-form-item>
|
|
97
|
|
- <el-form-item label="修改时间" style="margin-left: -35px;margin-top: -15px">
|
|
98
|
|
- <el-date-picker size="small" v-model="ChangeInDtm" type="datetime" placeholder="选择日期时间" style="width:200px;margin-left: -8px">
|
|
99
|
|
- </el-date-picker>
|
|
100
|
|
- </el-form-item>
|
|
|
105
|
+
|
|
101
|
106
|
</el-row>
|
|
102
|
107
|
</el-form>
|
|
103
|
108
|
<total-block ref="totalBlock" style="margin-left: -25px;font-size: 13px;margin-left: 5px" v-bind:childParam="childParam" v-bind:childUrl = 'childUrl'></total-block>
|
|
|
@@ -115,6 +120,8 @@
|
|
115
|
120
|
</el-table-column>
|
|
116
|
121
|
<el-table-column prop="materialName" label="货物品名" show-overflow-tooltip width="100px" header-align="center" align="center">
|
|
117
|
122
|
</el-table-column>
|
|
|
123
|
+ <el-table-column prop="contractNo" label="合约号" show-overflow-tooltip width="100px" header-align="center" align="center">
|
|
|
124
|
+ </el-table-column>
|
|
118
|
125
|
<el-table-column prop="ordNo" label="订单号" width="180px" show-overflow-tooltip align="left">
|
|
119
|
126
|
</el-table-column>
|
|
120
|
127
|
<el-table-column prop="model" label="规格" show-overflow-tooltip width="180px" align="center">
|
|
|
@@ -191,7 +198,8 @@
|
|
191
|
198
|
carNo:'',
|
|
192
|
199
|
tallyPeople:'',
|
|
193
|
200
|
fkComponyName:'',
|
|
194
|
|
- remark1:''
|
|
|
201
|
+ remark1:'',
|
|
|
202
|
+ contractNo:''
|
|
195
|
203
|
},
|
|
196
|
204
|
selectRows: [],
|
|
197
|
205
|
loading: false,
|
|
|
@@ -215,7 +223,8 @@
|
|
215
|
223
|
standard: '',
|
|
216
|
224
|
customerName: '',
|
|
217
|
225
|
plateNo: '',
|
|
218
|
|
- ord_no:''
|
|
|
226
|
+ ord_no:'',
|
|
|
227
|
+ contractNo:''
|
|
219
|
228
|
},
|
|
220
|
229
|
childUrl:'WareInRecord/queryTotal.do',
|
|
221
|
230
|
tallyPeopleOption:[],
|
|
|
@@ -336,6 +345,7 @@
|
|
336
|
345
|
this.query.tallyPeople = '',
|
|
337
|
346
|
this.query.fkComponyName = '',
|
|
338
|
347
|
this.query.remark1 = '';
|
|
|
348
|
+ this.query.contractNo = '';
|
|
339
|
349
|
this.setSearchTime()
|
|
340
|
350
|
},
|
|
341
|
351
|
getWare() {
|
|
|
@@ -372,7 +382,8 @@
|
|
372
|
382
|
carNo : this.query.carNo,
|
|
373
|
383
|
tallyPeople:this.query.tallyPeople,
|
|
374
|
384
|
fkComponyName:this.query.fkComponyName,
|
|
375
|
|
- remark1:this.query.remark1
|
|
|
385
|
+ remark1:this.query.remark1,
|
|
|
386
|
+ contractNo:this.query.contractNo.length == 0 ? '' : this.query.contractNo.join(','),
|
|
376
|
387
|
}
|
|
377
|
388
|
|
|
378
|
389
|
this.childParam = param;
|
|
|
@@ -398,6 +409,10 @@
|
|
398
|
409
|
const replaceResult = this.query.plateNo.replace(/[;,,;\s\r\n]+/g, ",").split(",");
|
|
399
|
410
|
this.query.plateNo = replaceResult;
|
|
400
|
411
|
},
|
|
|
412
|
+ getConList(){
|
|
|
413
|
+ const replaceResult = this.query.contractNo.replace(/[;,,;\s\r\n]+/g, ",").split(",");
|
|
|
414
|
+ this.query.contractNo = replaceResult;
|
|
|
415
|
+ },
|
|
401
|
416
|
getOrdList(){
|
|
402
|
417
|
const replaceResult = this.query.ordNo.replace(/[;,,;\s\r\n]+/g, ",").split(",");
|
|
403
|
418
|
this.query.ordNo = replaceResult;
|
|
|
@@ -421,7 +436,8 @@
|
|
421
|
436
|
carNo : this.query.carNo,
|
|
422
|
437
|
tallyPeople:this.query.tallyPeople,
|
|
423
|
438
|
fkComponyName:this.query.fkComponyName,
|
|
424
|
|
- remark1:this.query.remark1
|
|
|
439
|
+ remark1:this.query.remark1,
|
|
|
440
|
+ contractNo:this.query.contractNo.length == 0 ? '' : this.query.contractNo.join(','),
|
|
425
|
441
|
}
|
|
426
|
442
|
|
|
427
|
443
|
|