同步管理系统代码

zhairh
郑明梁 3 years ago
parent f31dbef3d5
commit 7a77e1d438

@ -1064,6 +1064,7 @@ export default {
}, },
productType: null, productType: null,
editQuery: null, editQuery: null,
pId:0,
productRemarkSet: {}, productRemarkSet: {},
relevanceEdit: { relevanceEdit: {
id: null, id: null,
@ -1075,7 +1076,8 @@ export default {
allowNoBatch: null, allowNoBatch: null,
allowNoExpire: null, allowNoExpire: null,
allowNoProduct: null, allowNoProduct: null,
cpdls: null cpdls: null,
pId:null,
}, },
defaultSys: null, defaultSys: null,
isImport: false, isImport: false,
@ -1451,6 +1453,7 @@ export default {
this.thisData = row; this.thisData = row;
this.editDialogVisible = true; this.editDialogVisible = true;
this.editQuery = row; this.editQuery = row;
this.pId=row.id;
this.relevanceEdit = { this.relevanceEdit = {
id: row.id, id: row.id,
isUseDy: row.isUseDy, isUseDy: row.isUseDy,
@ -1561,6 +1564,7 @@ export default {
this.relevanceEdit.isLock = this.editQuery.isLock; this.relevanceEdit.isLock = this.editQuery.isLock;
this.relevanceEdit.isAdavence = this.editQuery.isAdavence; this.relevanceEdit.isAdavence = this.editQuery.isAdavence;
this.relevanceEdit = this.editQuery; this.relevanceEdit = this.editQuery;
this.relevanceEdit.pid = this.pId;
if (this.checked == true) { if (this.checked == true) {
this.relevanceEdit.isUseDy = 1; this.relevanceEdit.isUseDy = 1;
} else { } else {

@ -242,7 +242,7 @@ export default {
this.getList(); this.getList();
}, },
onSubmit() { onSubmit() {
            if(this.filterQuery.invStorageCode==null || this.filterQuery.invStorageCode==""){             if(this.filterQuery.invStorageCode==null || this.filterQuery.invStorageCode==""){
                this.$message.error("当前仓库不能为空");                 this.$message.error("当前仓库不能为空");
                return                 return
@ -275,7 +275,7 @@ export default {
this.getList(); this.getList();
}, },
getList() { getList() {
this.loading = true; this.loading = true;
this.filterQuery.customerId = store.getters.customerId; this.filterQuery.customerId = store.getters.customerId;

@ -62,8 +62,8 @@
<el-col :span="7"> <el-col :span="7">
<el-form-item prop="locStorageCode"> <el-form-item prop="locStorageCode">
<el-select v-model="formData.invWarehouseCode" placeholder="采购库信息" style="width: 100%" <el-select v-model="formData.invWarehouseCode" placeholder="采购库信息" style="width: 100%"
:disabled="true" clearable> :disabled="true" clearable>
<el-option <el-option
v-for="item in subInvList" v-for="item in subInvList"

Loading…
Cancel
Save