|
@@ -4,13 +4,13 @@
|
4
|
4
|
<el-form :model="query" label-width="100px" inline="">
|
5
|
5
|
<el-row>
|
6
|
6
|
<el-form-item label="库房名称" style="margin-left: -15px">
|
7
|
|
- <el-select v-model="query.wareName" clearable size="small" style="width:120px;margin-left: -8px">
|
|
7
|
+ <el-select v-model="query.wareName" clearable size="small" style="width:100px;margin-left: -8px">
|
8
|
8
|
<el-option v-for="item in optionsWare" :key="item.id" :label="item.name" :value="item.name">
|
9
|
9
|
</el-option>
|
10
|
10
|
</el-select>
|
11
|
11
|
</el-form-item>
|
12
|
12
|
<el-form-item label="垛位名称" style="margin-left: -35px">
|
13
|
|
- <el-input v-model="query.stackName" size="small" style="width:120px;margin-left: -8px"></el-input>
|
|
13
|
+ <el-input v-model="query.stackName" size="small" style="width:100px;margin-left: -8px"></el-input>
|
14
|
14
|
</el-form-item>
|
15
|
15
|
<el-form-item label="物料名称" style="margin-left: -35px">
|
16
|
16
|
<el-input v-model="query.materialName" size="small" style="width:120px;margin-left: -8px">
|
|
@@ -27,6 +27,10 @@
|
27
|
27
|
<el-button slot="append" icon="el-icon-search" @click="showFKcustmer"></el-button>
|
28
|
28
|
</el-input>
|
29
|
29
|
</el-form-item>
|
|
30
|
+ <el-form-item label="合约号" style="margin-left: -35px">
|
|
31
|
+ <el-input v-model="query.contractNo" size="small" style="width:100px;margin-left: -8px">
|
|
32
|
+ </el-input>
|
|
33
|
+ </el-form-item>
|
30
|
34
|
<el-form-item label="订单客户" style="margin-left: -35px">
|
31
|
35
|
<el-input v-model="query.customerName" size="small" style="width:170px;margin-left: -8px">
|
32
|
36
|
<el-button slot="append" icon="el-icon-search" @click="showCustomer"></el-button>
|
|
@@ -240,6 +244,7 @@
|
240
|
244
|
inRecordDate:[],
|
241
|
245
|
fkcustmerName:'',
|
242
|
246
|
ordNo:'',
|
|
247
|
+ contractNo:''
|
243
|
248
|
},
|
244
|
249
|
multipleSelection: [],
|
245
|
250
|
tableData: [],
|
|
@@ -431,6 +436,7 @@
|
431
|
436
|
toDate :(!this.query.inRecordDate[1]) ? new Date().Format("yyyy-MM-dd HH:mm:ss") :this.query.inRecordDate[1].Format("yyyy-MM-dd HH:mm:ss"),
|
432
|
437
|
fkcustmerName : this.query.fkcustmerName,
|
433
|
438
|
ordNo : this.query.ordNo,
|
|
439
|
+ contractNo : this.query.contractNo,
|
434
|
440
|
}
|
435
|
441
|
axios.get(url, param).then(response => {
|
436
|
442
|
if (response.data.code == 0) {
|
|
@@ -741,6 +747,7 @@
|
741
|
747
|
toDate :(!this.query.inRecordDate[1]) ? new Date().Format("yyyy-MM-dd HH:mm:ss") :this.query.inRecordDate[1].Format("yyyy-MM-dd HH:mm:ss"),
|
742
|
748
|
fkcustmerName : this.query.fkcustmerName,
|
743
|
749
|
ordNo : this.query.ordNo,
|
|
750
|
+ contractNo : this.query.contractNo,
|
744
|
751
|
}
|
745
|
752
|
|
746
|
753
|
|