|
@@ -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>
|
|
@@ -242,6 +246,7 @@
|
242
|
246
|
inRecordDate:[],
|
243
|
247
|
fkcustmerName:'',
|
244
|
248
|
ordNo:'',
|
|
249
|
+ contractNo:''
|
245
|
250
|
},
|
246
|
251
|
multipleSelection: [],
|
247
|
252
|
tableData: [],
|
|
@@ -433,6 +438,7 @@
|
433
|
438
|
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"),
|
434
|
439
|
fkcustmerName : this.query.fkcustmerName,
|
435
|
440
|
ordNo : this.query.ordNo,
|
|
441
|
+ contractNo : this.query.contractNo,
|
436
|
442
|
}
|
437
|
443
|
axios.get(url, param).then(response => {
|
438
|
444
|
if (response.data.code == 0) {
|
|
@@ -744,6 +750,7 @@
|
744
|
750
|
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"),
|
745
|
751
|
fkcustmerName : this.query.fkcustmerName,
|
746
|
752
|
ordNo : this.query.ordNo,
|
|
753
|
+ contractNo : this.query.contractNo,
|
747
|
754
|
}
|
748
|
755
|
|
749
|
756
|
|