|
|
|
@ -152,6 +152,16 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="寄售仓库" prop="advanceType" class="query-form-item">
|
|
|
|
|
<el-radio-group v-model="subData.advanceType">
|
|
|
|
|
<el-radio :label="false">非寄售</el-radio>
|
|
|
|
|
<el-radio :label="true">寄售</el-radio>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row class="el-row" type="flex">
|
|
|
|
|
<el-col class="el-col">
|
|
|
|
@ -376,6 +386,9 @@ export default {
|
|
|
|
|
],
|
|
|
|
|
name: [
|
|
|
|
|
{required: true, message: "请输入仓库名称", trigger: "blur"}
|
|
|
|
|
],
|
|
|
|
|
advanceType: [
|
|
|
|
|
{required: true, message: "请选择是否寄售", trigger: "blur"}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
subData: {},
|
|
|
|
@ -444,7 +457,7 @@ export default {
|
|
|
|
|
this.subData = JSON.parse(JSON.stringify(data));
|
|
|
|
|
this.isShow = true;
|
|
|
|
|
} else if (formName === "add") {
|
|
|
|
|
this.subData = {};
|
|
|
|
|
this.subData = {advanceType: false,};
|
|
|
|
|
this.isShow = false;
|
|
|
|
|
}
|
|
|
|
|
this.subFormVisible = true;
|
|
|
|
@ -456,7 +469,7 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
this.sysSubList=null;
|
|
|
|
|
this.sysSubList = null;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
hideForm() { // 新增,编辑---取消
|
|
|
|
@ -580,10 +593,10 @@ export default {
|
|
|
|
|
this.thrWareHouseVisible = false;
|
|
|
|
|
this.thrSubWareHouseVisible = false;
|
|
|
|
|
//刷新表单
|
|
|
|
|
this.thirdSubQuery.name="";
|
|
|
|
|
this.subData.id=null;
|
|
|
|
|
this.checkSubThrWarehouseRow.code=null;
|
|
|
|
|
this.checkSubThrWarehouseRow.thirdSysFk=null;
|
|
|
|
|
this.thirdSubQuery.name = "";
|
|
|
|
|
this.subData.id = null;
|
|
|
|
|
this.checkSubThrWarehouseRow.code = null;
|
|
|
|
|
this.checkSubThrWarehouseRow.thirdSysFk = null;
|
|
|
|
|
},
|
|
|
|
|
//绑定第三方分库
|
|
|
|
|
bindSubThrWarehouse() {
|
|
|
|
@ -681,8 +694,8 @@ export default {
|
|
|
|
|
this.currentInvInfo = {
|
|
|
|
|
invStorageCode: row.parentId,
|
|
|
|
|
invWarehouseCode: row.code,
|
|
|
|
|
flag:row.id,
|
|
|
|
|
page:1
|
|
|
|
|
flag: row.id,
|
|
|
|
|
page: 1
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|