|
@@ -70,6 +70,7 @@
|
70
|
70
|
<el-dropdown-menu slot="dropdown">
|
71
|
71
|
<el-dropdown-item command="handleInBack" style="background-color: #f5f5f5;">取消入库</el-dropdown-item>
|
72
|
72
|
<el-dropdown-item command="handleChangeCustomer" style="background-color: #f5f5f5;">批量修改</el-dropdown-item>
|
|
73
|
+ <el-dropdown-item command="handleChangeStack" style="background-color: #f5f5f5;">批量倒垛</el-dropdown-item>
|
73
|
74
|
</el-dropdown-menu>
|
74
|
75
|
</el-dropdown>
|
75
|
76
|
|
|
@@ -169,7 +170,7 @@
|
169
|
170
|
</el-form>
|
170
|
171
|
</el-dialog>
|
171
|
172
|
|
172
|
|
- <el-dialog title="垛位备注" :visible.sync="stackDialogVisible" width="500px">
|
|
173
|
+ <el-dialog title="批量垛位" :visible.sync="stackDialogVisible" width="500px">
|
173
|
174
|
<el-form>
|
174
|
175
|
<el-form-item label="库房名称" style="margin-left: -15px">
|
175
|
176
|
<el-select v-model="newWare" clearable size="small" style="width:120px;margin-left: -8px">
|
|
@@ -181,14 +182,6 @@
|
181
|
182
|
<el-input v-model="newStack">
|
182
|
183
|
</el-input>
|
183
|
184
|
</el-form-item>
|
184
|
|
- <el-form-item label="新垛位备注">
|
185
|
|
- <el-input v-model="newRemark1">
|
186
|
|
- </el-input>
|
187
|
|
- </el-form-item>
|
188
|
|
- <el-form-item label="新备注信息">
|
189
|
|
- <el-input v-model="newRemark">
|
190
|
|
- </el-input>
|
191
|
|
- </el-form-item>
|
192
|
185
|
<el-form-item label=" ">
|
193
|
186
|
<el-button type="success" @click="handleStackSave">保存</el-button>
|
194
|
187
|
<el-button type="danger" @click="handleStackCancelSave">取消</el-button>
|
|
@@ -402,6 +395,9 @@
|
402
|
395
|
case "handleChangeCustomer":
|
403
|
396
|
this.handleChangeCustomer();
|
404
|
397
|
break;
|
|
398
|
+ case "handleChangeStack":
|
|
399
|
+ this.handleChangeStack();
|
|
400
|
+ break;
|
405
|
401
|
}
|
406
|
402
|
},
|
407
|
403
|
|
|
@@ -412,6 +408,10 @@
|
412
|
408
|
this.query.customerName = customer.name
|
413
|
409
|
},
|
414
|
410
|
|
|
411
|
+ handleChangeStack(){
|
|
412
|
+ this.stackDialogVisible = true;
|
|
413
|
+ this.newStack='';
|
|
414
|
+ },
|
415
|
415
|
|
416
|
416
|
showFKcustmer() {
|
417
|
417
|
this.$refs.PopupFKcustmer.show()
|