|
|
|
@ -69,9 +69,6 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item prop="billType">
|
|
|
|
|
<!--<el-select v-model="formData.billType" style="width: 100%" placeholder="业务类型" :disabled="true">-->
|
|
|
|
|
<!--<el-option label="送货单" value="deliveryNote"></el-option>-->
|
|
|
|
|
<!--</el-select>-->
|
|
|
|
|
<el-select v-model="formData.billType" placeholder="请选择业务类型" @change="actionChange">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in busTypes"
|
|
|
|
@ -90,7 +87,7 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item class="query-form-item" prop="corpName"
|
|
|
|
|
v-if="curAction.corpType ==0 ">
|
|
|
|
|
v-if="curAction.corpType ==0">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="formData.corpName"
|
|
|
|
|
filterable
|
|
|
|
@ -156,10 +153,7 @@
|
|
|
|
|
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item prop="locStorageCode">
|
|
|
|
|
<!--<el-select v-model="formData.billType" style="width: 100%" placeholder="业务类型" :disabled="true">-->
|
|
|
|
|
<!--<el-option label="送货单" value="deliveryNote"></el-option>-->
|
|
|
|
|
<!--</el-select>-->
|
|
|
|
|
<el-select v-model="formData.locStorageCode" placeholder="当前仓库信息">
|
|
|
|
|
<el-select v-model="formData.locStorageCode" placeholder="当前仓库信息" @change="locInChange">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in storageList"
|
|
|
|
|
:key="item.name"
|
|
|
|
@ -189,7 +183,7 @@
|
|
|
|
|
<!-- <el-radio-button :label="false" size="mini">禁用</el-radio-button>-->
|
|
|
|
|
<!-- </el-radio-group>-->
|
|
|
|
|
<el-form-item prop="type" style="margin-right: 20px;"
|
|
|
|
|
v-if="curAction.mainAction=='WareHouseOut'">
|
|
|
|
|
v-if="!(curAction.mainAction=='WareHouseIn' && curAction.corpType == 0)">
|
|
|
|
|
<el-checkbox v-model="formData.noInvOut">允许无库存出库</el-checkbox>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -491,6 +485,7 @@
|
|
|
|
|
<dialogInvProduct
|
|
|
|
|
:closeDialog="closeDialogC2"
|
|
|
|
|
:data="thisData"
|
|
|
|
|
:invQueryData="invQueryData"
|
|
|
|
|
></dialogInvProduct>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
@ -544,7 +539,7 @@ export default {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
},
|
|
|
|
|
formData: {noInvOut: false,},
|
|
|
|
|
formData: {noInvOut: false, locStorageCode: null},
|
|
|
|
|
formRules: {
|
|
|
|
|
corpName: [
|
|
|
|
|
{required: true, message: "请输入供应商", trigger: "blur"}
|
|
|
|
@ -603,6 +598,7 @@ export default {
|
|
|
|
|
selectInvProductVisible: false,
|
|
|
|
|
thisData: {},
|
|
|
|
|
storageList: [],
|
|
|
|
|
invQueryData: {},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
@ -618,7 +614,6 @@ export default {
|
|
|
|
|
this.currentRow = {};
|
|
|
|
|
this.selectedIndex = "";
|
|
|
|
|
this.iCount = 0;
|
|
|
|
|
|
|
|
|
|
this.$refs["dataForm"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (this.codeArray.length < 1) {
|
|
|
|
@ -710,7 +705,6 @@ export default {
|
|
|
|
|
filterAll()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.storageList = response.data || [];
|
|
|
|
|
// this.formData.locStorageCode = this.storageList[0];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
@ -820,17 +814,24 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
this.thisData.stockOrderLists = this.codeArray;
|
|
|
|
|
this.thisData.formData = this.formData;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let item = this.getActionItem(this.formData.billType);
|
|
|
|
|
console.log(item.mainAction + "----" + this.formData.noInvOut);
|
|
|
|
|
if (item.mainAction == 'WareHouseOut' && this.formData.noInvOut != true)//内部单
|
|
|
|
|
{
|
|
|
|
|
if (item.mainAction == 'WareHouseOut' && this.formData.noInvOut != true) {
|
|
|
|
|
this.invQueryData = {
|
|
|
|
|
locStorageCode: this.formData.locStorageCode,
|
|
|
|
|
};
|
|
|
|
|
this.selectInvProductVisible = true;
|
|
|
|
|
} else if (item.mainAction == "WareHouseIn" && this.curAction.corpType == 1 && this.formData.noInvOut != true) {
|
|
|
|
|
|
|
|
|
|
this.invQueryData = {
|
|
|
|
|
locStorageCode: this.formData.corpId,
|
|
|
|
|
};
|
|
|
|
|
console.log("his.invQueryData " + this.invQueryData.locStorageCode);
|
|
|
|
|
this.selectInvProductVisible = true;
|
|
|
|
|
} else {
|
|
|
|
|
this.selectProductVisible = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.code = this.code.trim();
|
|
|
|
@ -872,35 +873,6 @@ export default {
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// let tQuery2 = {
|
|
|
|
|
// id: response.data.getId
|
|
|
|
|
// };
|
|
|
|
|
// if (this.orderEditor) {
|
|
|
|
|
// tQuery2.orderId = this.formData.id;
|
|
|
|
|
// console.log(tQuery2)
|
|
|
|
|
// addStockOrderDetailFromCodeById(tQuery2).then((response) => {
|
|
|
|
|
// this.loading = false;
|
|
|
|
|
// if (response.code === 20000) {
|
|
|
|
|
// this.closeDialogC2(response);
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$message.error(response.message);
|
|
|
|
|
// }
|
|
|
|
|
// }).catch(() => {
|
|
|
|
|
// this.loading = false;
|
|
|
|
|
// });
|
|
|
|
|
// } else {
|
|
|
|
|
// getStockOrderDetailInstrumentById(tQuery2).then((response) => {
|
|
|
|
|
// this.loading = false;
|
|
|
|
|
// if (response.code === 20000) {
|
|
|
|
|
// this.closeDialogC2(response.data);
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$message.error(response.message);
|
|
|
|
|
// }
|
|
|
|
|
// }).catch(() => {
|
|
|
|
|
// this.loading = false;
|
|
|
|
|
// });
|
|
|
|
|
// }
|
|
|
|
|
} else {
|
|
|
|
|
this.thisData = response.data;
|
|
|
|
|
this.thisData.code = this.code;
|
|
|
|
@ -931,23 +903,9 @@ export default {
|
|
|
|
|
this.thisData = {};
|
|
|
|
|
|
|
|
|
|
if (this.$isNotBlank(rData)) {
|
|
|
|
|
console.log(rData)
|
|
|
|
|
// for (let i = 0; i < this.codeArray.length; i++) {
|
|
|
|
|
// let obj = this.codeArray[i];
|
|
|
|
|
// if (obj.batchNo == rData[0].batchNo) {
|
|
|
|
|
// obj.count = parseInt(obj.count) + parseInt(this.iCount);
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
this.codeArray = [];
|
|
|
|
|
rData.forEach((obj, index) => {
|
|
|
|
|
// this.codeArray.push(obj);
|
|
|
|
|
this.codeArray.unshift(obj);
|
|
|
|
|
// if (this.codeArray.length === 0) {
|
|
|
|
|
// this.codeArray.push(obj);
|
|
|
|
|
// } else {
|
|
|
|
|
// this.codeArray.unshift(obj);
|
|
|
|
|
// }
|
|
|
|
|
});
|
|
|
|
|
console.log(this.codeArray);
|
|
|
|
|
this.$refs.multipleTable.setCurrentRow(this.codeArray[0]);
|
|
|
|
@ -956,37 +914,6 @@ export default {
|
|
|
|
|
this.focusNext('iCount');
|
|
|
|
|
this.closeConfirmFunction(true);
|
|
|
|
|
}
|
|
|
|
|
// if (this.orderEditor) {
|
|
|
|
|
// this.getStockOrderDetailList();
|
|
|
|
|
// if (this.$isNotBlank(rData)) {
|
|
|
|
|
// this.$refs.multipleTable.setCurrentRow(this.codeArray[0]);
|
|
|
|
|
// this.currentRow = this.codeArray[0];
|
|
|
|
|
// this.selectedIndex = 0;
|
|
|
|
|
// this.focusNext('iCount');
|
|
|
|
|
// }
|
|
|
|
|
// } else {
|
|
|
|
|
// if (this.$isNotBlank(rData)) {
|
|
|
|
|
// // for (let i = 0; i < this.codeArray.length; i++) {
|
|
|
|
|
// // if (this.codeArray[i].productId === rData.productId) {
|
|
|
|
|
// // this.$alert("已添加", '提示', {
|
|
|
|
|
// // confirmButtonText: '确定',
|
|
|
|
|
// // type: 'warning',
|
|
|
|
|
// // closeOnClickModal: true,
|
|
|
|
|
// // callback: action => {
|
|
|
|
|
// // this.$refs.inputRef.focus();
|
|
|
|
|
// // }
|
|
|
|
|
// // });
|
|
|
|
|
// // break;
|
|
|
|
|
// // }
|
|
|
|
|
// // if (i + 1 === this.codeArray.length) {
|
|
|
|
|
// // this.codeArray.push(rData);
|
|
|
|
|
// // this.$refs.multipleTable.setCurrentRow(this.codeArray[0]);
|
|
|
|
|
// // this.currentRow = this.codeArray[0];
|
|
|
|
|
// // this.selectedIndex = 0;
|
|
|
|
|
// // }
|
|
|
|
|
// // }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
},
|
|
|
|
|
rowChange(val) {
|
|
|
|
|
this.currentRow = val;
|
|
|
|
@ -1059,8 +986,6 @@ export default {
|
|
|
|
|
count: this.iCount,
|
|
|
|
|
code: this.code,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//012693548470801311200226172302271020022632100025
|
|
|
|
|
if (this.orderEditor) {
|
|
|
|
|
addStockOrderDetailFromCode(tQuery).then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
@ -1317,10 +1242,13 @@ export default {
|
|
|
|
|
actionChange(item) {
|
|
|
|
|
this.curAction = this.getActionItem(item);
|
|
|
|
|
this.formData.locStorageCode = this.curAction.storageCode;
|
|
|
|
|
console.log(this.curAction.corpType + "---" + this.curAction.genUnit + "-----" + this.curAction.action);
|
|
|
|
|
// this.formData.corpName = '';
|
|
|
|
|
// this.formData.corpId = '';
|
|
|
|
|
console.log(this.curAction.corpType + "---" + this.formData.locStorageCode + "-----" + this.curAction.action);
|
|
|
|
|
},
|
|
|
|
|
locInChange(item) {
|
|
|
|
|
console.log(item);
|
|
|
|
|
this.formData.locStorageCode = item;
|
|
|
|
|
this.$forceUpdate();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
filters: {},
|
|
|
|
|
mounted() {
|
|
|
|
@ -1345,12 +1273,9 @@ export default {
|
|
|
|
|
} else {
|
|
|
|
|
this.formData = {
|
|
|
|
|
billdate: "",
|
|
|
|
|
// corpName: store.getters.companyName,
|
|
|
|
|
customerId: store.getters.customerId,
|
|
|
|
|
// billType: "deliveryNote",
|
|
|
|
|
billType: "",
|
|
|
|
|
type: "2",
|
|
|
|
|
// type: "",
|
|
|
|
|
};
|
|
|
|
|
this.iCount = 0;
|
|
|
|
|
this.orderEditor = false;
|
|
|
|
|