|
@@ -12,6 +12,10 @@
|
12
|
12
|
<el-form-item label="垛位名称" style="margin-left: -35px">
|
13
|
13
|
<el-input v-model="query.stackName" size="small" style="width:120px;margin-left: -8px"></el-input>
|
14
|
14
|
</el-form-item>
|
|
15
|
+ <el-form-item label="钢板号" style="margin-left: -15px">
|
|
16
|
+ <el-input v-model="query.plateNo" size="small" style="width:120px;margin-left: -8px">
|
|
17
|
+ </el-input>
|
|
18
|
+ </el-form-item>
|
15
|
19
|
<el-form-item label="物料名称" style="margin-left: -35px">
|
16
|
20
|
<el-input v-model="query.materialName" size="small" style="width:120px;margin-left: -8px">
|
17
|
21
|
<el-button slot="append" icon="el-icon-search" @click="showMaterial"></el-button>
|
|
@@ -36,10 +40,7 @@
|
36
|
40
|
<el-input v-model="query.model" size="small" style="width:120px;margin-left: -8px">
|
37
|
41
|
</el-input>
|
38
|
42
|
</el-form-item>
|
39
|
|
- <el-form-item label="钢板号" style="margin-left: -15px">
|
40
|
|
- <el-input v-model="query.plateNo" size="small" style="width:120px;margin-left: -8px">
|
41
|
|
- </el-input>
|
42
|
|
- </el-form-item>
|
|
43
|
+
|
43
|
44
|
<el-form-item label="订单号" style="margin-left: -15px">
|
44
|
45
|
<el-input v-model="query.ordNo" size="small" style="width:120px;margin-left: -8px">
|
45
|
46
|
</el-input>
|
|
@@ -55,6 +56,7 @@
|
55
|
56
|
<el-button type="success" size="small" @click="handleExport" >导出记录</el-button>
|
56
|
57
|
<el-button type="primary" size="small" @click="showOut">出库</el-button>
|
57
|
58
|
<el-button type="danger" size="small" @click="handleInBack" :disabled="backAble">取消入库</el-button>
|
|
59
|
+ <el-button type="primary" size="small" @click="resetButton" :disabled="backAble">重置</el-button>
|
58
|
60
|
</el-form-item>
|
59
|
61
|
<!-- <el-button type="primary" @click="showOut">出库</el-button> -->
|
60
|
62
|
<!-- <el-form-item label=" ">
|
|
@@ -223,6 +225,8 @@
|
223
|
225
|
customerName: '',
|
224
|
226
|
plateNo: '',
|
225
|
227
|
wareId:'',
|
|
228
|
+ ordNo:'',
|
|
229
|
+ fkcustmerName:'',
|
226
|
230
|
},
|
227
|
231
|
multipleSelection: [],
|
228
|
232
|
tableData: [],
|
|
@@ -346,6 +350,18 @@
|
346
|
350
|
});
|
347
|
351
|
}
|
348
|
352
|
},
|
|
353
|
+ resetButton(){ //查询条件重置
|
|
354
|
+ this.query.wareName = '',
|
|
355
|
+ this.query.stackName = '',
|
|
356
|
+ this.query.model = '',
|
|
357
|
+ this.query.materialName = '',
|
|
358
|
+ this.query.standard = '',
|
|
359
|
+ this.query.customerName = '',
|
|
360
|
+ this.query.plateNo = '',
|
|
361
|
+ this.query.wareId = '',
|
|
362
|
+ this.query.ordNo = '',
|
|
363
|
+ this.query.fkcustmerName = ''
|
|
364
|
+ },
|
349
|
365
|
showDistribution() {
|
350
|
366
|
//console.log(this.selectRows.length)
|
351
|
367
|
if (this.selectRows.length < 1) {
|