|
@@ -1115,8 +1115,7 @@
|
|
|
scope.row.fBillstatus === 30 ||
|
|
|
scope.row.fBillstatus === 40
|
|
|
"
|
|
|
- @change="changefWarehouseAreid(scope.row)"
|
|
|
- placeholder="请选择库区"
|
|
|
+ placeholder="请选择库位"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="(dict, index) in kqhouseOptions"
|
|
@@ -3774,7 +3773,21 @@ export default {
|
|
|
});
|
|
|
this.weightList = false;
|
|
|
// this.contrOl = true
|
|
|
+ // 查询库区下 所有库位
|
|
|
+ this.warehouseMethod();
|
|
|
},
|
|
|
+ /* 所有库位信息 */
|
|
|
+ warehouseMethod() {
|
|
|
+ var fWarehouseid = this.form.fWarehouseid ;
|
|
|
+ let queryParams = { pageNum: 1, pageSize: 10, fStatus: 0, delFlag: 0, fWarehouseid : fWarehouseid };
|
|
|
+ listWarehouse(queryParams).then((response) => {
|
|
|
+ this.kqhouseOptions = response.rows;
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
// 导入付款信息
|
|
|
whgenlegData() {
|
|
|
if (this.dialogWhgenlegList.length === 0) {
|
|
@@ -4288,15 +4301,6 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- // 库位查询
|
|
|
- changefWarehouseAreid(row) {
|
|
|
- for (let corp in this.kqhouseOptions) {
|
|
|
- if (row.fGoodsid === this.kqhouseOptions[corp].fId) {
|
|
|
- this.$set(row, "fGoodsids", this.kqhouseOptions[corp].fName);
|
|
|
- this.$set(row, "fPackagespecs", this.kqhouseOptions[corp].fPackagespecs);
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
// 变更计价单位
|
|
|
changeFeeUnit(row) {
|
|
|
if (!row.fFeeUnitid) {
|