|
|
|
@ -84,7 +84,7 @@
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item prop="fromCorp"
|
|
|
|
|
label="往来信息:"
|
|
|
|
|
v-if="curAction.corpType ==0 || curAction.corpType == 3 || (curAction.corpType == 2 && !curAction.genUnit)"
|
|
|
|
|
v-if="curAction.corpType ==0 || curAction.corpType == 2 || (curAction.corpType == 1 && !curAction.genUnit)"
|
|
|
|
|
>
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="formData.fromCorp"
|
|
|
|
@ -109,11 +109,11 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item prop="fromCorp"
|
|
|
|
|
v-if="curAction.corpType ==1"
|
|
|
|
|
v-if="curAction.corpType ==3"
|
|
|
|
|
label="往来信息:"
|
|
|
|
|
>
|
|
|
|
|
<el-select v-model="formData.fromInvCode" placeholder="请选择往来仓库"
|
|
|
|
|
:disabled="corpOrderIdDisabled" filterable @change="getFormStorageCode"
|
|
|
|
|
:disabled="corpOrderIdDisabled" filterable
|
|
|
|
|
clearable
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
>
|
|
|
|
@ -131,7 +131,7 @@
|
|
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item prop="fromCorp"
|
|
|
|
|
v-if="curAction.corpType ==2 && curAction.genUnit">
|
|
|
|
|
v-if="curAction.corpType ==1 && curAction.genUnit">
|
|
|
|
|
<el-input v-model="formData.fromCorp" auto-complete="off"
|
|
|
|
|
clearable
|
|
|
|
|
style="width: 90%"
|
|
|
|
@ -262,7 +262,7 @@ import {
|
|
|
|
|
errorCodeList, addOrderWeb, deleteCodesTempById, submitOrderWeb, saveOrderWeb,
|
|
|
|
|
updateCodeBindSup, enterCodeWeb
|
|
|
|
|
} from "../../api/inout/order";
|
|
|
|
|
import {filterSubByInv, findByInvUser} from "../../api/system/invSubWarehouse";
|
|
|
|
|
import {filterSubByInv, findByFrom, findByInvUser, findInvByUser} from "../../api/system/invSubWarehouse";
|
|
|
|
|
import draggable from "vuedraggable";
|
|
|
|
|
import {parseTime} from "../../utils/coTools";
|
|
|
|
|
import {getBasicUnitMaintains} from "../../api/basic/basicUnitMaintain"
|
|
|
|
@ -342,7 +342,7 @@ export default {
|
|
|
|
|
// serialNo: null,
|
|
|
|
|
// invWarehouseCode: null,
|
|
|
|
|
// subInvCode: null,
|
|
|
|
|
// fromSubInvCode: null,
|
|
|
|
|
// fromInvCode: null,
|
|
|
|
|
// codeFillCheck: null,
|
|
|
|
|
// vailInv: null,
|
|
|
|
|
// deptCode: null,
|
|
|
|
@ -397,12 +397,12 @@ export default {
|
|
|
|
|
//获取用户仓库列表
|
|
|
|
|
findInvByUser() {
|
|
|
|
|
this.curInvOptions = [];
|
|
|
|
|
filterSubByInv(query)
|
|
|
|
|
findInvByUser()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.curInvOptions = response.data || [];
|
|
|
|
|
if (this.curInvOptions != null && this.curInvOptions.length == 1) {
|
|
|
|
|
this.formData.invWarehouseCode = this.curInvOptions[0].code;
|
|
|
|
|
this.getBusType();
|
|
|
|
|
this.getBusTypeByInv()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
@ -415,7 +415,7 @@ export default {
|
|
|
|
|
this.getBusTypeByInv();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//根据仓库获取单据类型
|
|
|
|
|
//根据仓库,用户获取单据类型
|
|
|
|
|
getBusTypeByInv() {
|
|
|
|
|
let query = {
|
|
|
|
|
code: this.formData.invCode,
|
|
|
|
@ -461,15 +461,72 @@ export default {
|
|
|
|
|
//单据类型改变
|
|
|
|
|
actionChange(item) {
|
|
|
|
|
this.curAction = this.getActionItem(item);
|
|
|
|
|
if (this.curAction.corpType == 0 || this.curAction.corpType == 2 || (this.curAction.corpType == 1 && !this.curAction.genUnit)) {
|
|
|
|
|
//1.切换往来单位
|
|
|
|
|
this.formData.fromCorp = null;
|
|
|
|
|
this.findMethod();
|
|
|
|
|
} else if (this.curAction.corpType == 3) {
|
|
|
|
|
//2. 切换往来仓库
|
|
|
|
|
this.formData.fromInvCode = null;
|
|
|
|
|
this.findFromInvList();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//1.切换往来单位
|
|
|
|
|
this.formData.fromCorp = null;
|
|
|
|
|
this.findMethod();
|
|
|
|
|
|
|
|
|
|
//2. 切换往来仓库
|
|
|
|
|
this.formData.fromInvCode = null;
|
|
|
|
|
//获取往来仓库列表
|
|
|
|
|
findFromInvList(val) {
|
|
|
|
|
let cQuery = {
|
|
|
|
|
locInvCode: this.formData.invCode,
|
|
|
|
|
};
|
|
|
|
|
findByFrom(cQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.fromInvOptions = response.data || [];
|
|
|
|
|
if (val == 1) {
|
|
|
|
|
this.formData.fromInvCode = this.fromInvOptions[0].code;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//获取当前单据类型
|
|
|
|
|
getActionItem(action) {
|
|
|
|
|
for (let i = 0; i < this.busTypeOptions.length; i++) {
|
|
|
|
|
if (this.busTypeOptions[i].action == action) {
|
|
|
|
|
return this.busTypeOptions[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//添加条码
|
|
|
|
|
addCode(event) {
|
|
|
|
|
this.originCode = "";
|
|
|
|
|
this.sictomText = "";
|
|
|
|
|
this.formData.corpOrderId = this.formData.corpOrderId.trim();
|
|
|
|
|
this.formData.batchNo = "";
|
|
|
|
|
this.formData.produceDate = "";
|
|
|
|
|
this.formData.expireDate = "";
|
|
|
|
|
this.formData.serialNo = "";
|
|
|
|
|
this.actionEnable = true;
|
|
|
|
|
if (event == null) {
|
|
|
|
|
} else event.target.select();
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
if (this.$isBlank(this.formData.action)) {
|
|
|
|
|
this.$message.warning("请选择单据类型!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.$isBlank(this.formData.corpOrderId)) {
|
|
|
|
|
let date = new Date();
|
|
|
|
|
this.formData.corpOrderId = parseTime(date, '{y}{m}{d}{h}{i}{s}') + Math.ceil(Math.random() * 89 + 10);
|
|
|
|
|
}
|
|
|
|
|
this.formData.code = this.formData.code.trim();
|
|
|
|
|
if (this.$isBlank(this.formData.code)) return;
|
|
|
|
|
this.loading = true;
|
|
|
|
|
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.formData)));
|
|
|
|
|
tQuery.orderId = this.idQuery.id;
|
|
|
|
|
tQuery.actDate = parseTime(this.formData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
|
|
|
|
|
tQuery.action = this.formData.action;
|
|
|
|
|
this.addCodeSubmit(tQuery);
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -483,7 +540,7 @@ export default {
|
|
|
|
|
locStorageCode: this.formData.locStorageCode,
|
|
|
|
|
invStorageCode: this.formData.invStorageCode,
|
|
|
|
|
invWarehouseCode: this.formData.invWarehouseCode,
|
|
|
|
|
fromSubInvCode: this.formData.fromSubInvCode,
|
|
|
|
|
fromInvCode: this.formData.fromInvCode,
|
|
|
|
|
subInvCode: this.formData.subInvCode,
|
|
|
|
|
action: this.formData.action,
|
|
|
|
|
fromCorp: this.formData.fromCorp,
|
|
|
|
@ -601,51 +658,7 @@ export default {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
addCode(event) {
|
|
|
|
|
this.originCode = "";
|
|
|
|
|
this.sictomText = "";
|
|
|
|
|
this.formData.corpOrderId = this.formData.corpOrderId.trim();
|
|
|
|
|
this.formData.batchNo = "";
|
|
|
|
|
this.formData.produceDate = "";
|
|
|
|
|
this.formData.expireDate = "";
|
|
|
|
|
this.formData.serialNo = "";
|
|
|
|
|
this.actionEnable = true;
|
|
|
|
|
if (event == null) {
|
|
|
|
|
} else event.target.select();
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
if (this.$isBlank(this.formData.action)) {
|
|
|
|
|
this.$message.warning("请选择单据类型!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.formData.invWarehouseCode == null || this.formData.invWarehouseCode == '') {
|
|
|
|
|
this.$message.error('当前分库不能为空');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.curAction.corpType == 1) {
|
|
|
|
|
if (this.$isBlank(this.formData.fromSubInvCode)) {
|
|
|
|
|
this.$message.error('当前往来分库不能为空');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.$isBlank(this.formData.corpOrderId)) {
|
|
|
|
|
let date = new Date();
|
|
|
|
|
this.formData.corpOrderId = parseTime(date, '{y}{m}{d}{h}{i}{s}') + Math.ceil(Math.random() * 89 + 10);
|
|
|
|
|
}
|
|
|
|
|
this.formData.code = this.formData.code.trim();
|
|
|
|
|
if (this.$isBlank(this.formData.code)) return;
|
|
|
|
|
this.loading = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.formData)));
|
|
|
|
|
tQuery.orderId = this.idQuery.id;
|
|
|
|
|
tQuery.actDate = parseTime(this.formData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
|
|
|
|
|
tQuery.action = this.formData.action;
|
|
|
|
|
this.addCodeSubmit(tQuery);
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
repeatAddCode(editData) {
|
|
|
|
|
let tQuery = editData;
|
|
|
|
@ -716,16 +729,11 @@ export default {
|
|
|
|
|
this.formData.expireDate = response.data.expireDate;
|
|
|
|
|
this.formData.batchNo = response.data.batchNo;
|
|
|
|
|
this.formData.serialNo = response.data.serialNo;
|
|
|
|
|
|
|
|
|
|
this.$message({
|
|
|
|
|
type: 'error',
|
|
|
|
|
message: "提交失败!" + this.editTitle,
|
|
|
|
|
customClass: 'messageIndex'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// this.$message.error("提交失败!" + this.editTitle);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
this.$alert(response.message, '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
@ -742,27 +750,9 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
unitChange(row) {
|
|
|
|
|
this.formData.fromCorpId = row.erpId;
|
|
|
|
|
this.formData.fromCorp = row.name;
|
|
|
|
|
this.curRow = row;
|
|
|
|
|
},
|
|
|
|
|
getFormStorageCode(code) {
|
|
|
|
|
var row = this.fromInvOptions.find(item => item.code == code)
|
|
|
|
|
this.formData.subInvCode = row.parentId
|
|
|
|
|
this.formData.fromSubInvCode = row.code
|
|
|
|
|
this.formData.fromCorpId = row.code;
|
|
|
|
|
this.formData.fromCorp = row.warehouseName;
|
|
|
|
|
},
|
|
|
|
|
ksChange(code) {
|
|
|
|
|
this.formData.deptCode = code;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getInputFocus(event) {
|
|
|
|
|
event.currentTarget.select();
|
|
|
|
|
// var inputer = document.getElementById("inputer");
|
|
|
|
|
// inputer.focus();
|
|
|
|
|
},
|
|
|
|
|
tableSelection() {
|
|
|
|
|
this.$refs.multipleTable.clearSelection();
|
|
|
|
@ -780,112 +770,6 @@ export default {
|
|
|
|
|
intentBack() {
|
|
|
|
|
this.$router.go(-1);
|
|
|
|
|
},
|
|
|
|
|
getBusType() {
|
|
|
|
|
let query = {
|
|
|
|
|
code: this.formData.invWarehouseCode,
|
|
|
|
|
enabled: true,
|
|
|
|
|
type: 1
|
|
|
|
|
};
|
|
|
|
|
getLocalJoinByUser(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.busTypeOptions = response.data.list || [];
|
|
|
|
|
if (this.formData.action != null) {
|
|
|
|
|
this.curAction = this.getActionItem(this.formData.action);
|
|
|
|
|
if (this.curAction != null) {
|
|
|
|
|
this.formData.vailInv = this.curAction.vailInv;
|
|
|
|
|
this.formData.codeFillCheck = this.curAction.codeFillCheck;
|
|
|
|
|
} else {
|
|
|
|
|
this.curAction = {corpType: 0, genUnit: false, changeEnable: false,};
|
|
|
|
|
this.formData.action = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
geActionName(action) {
|
|
|
|
|
this.busTypeOptions.forEach((obj) => {
|
|
|
|
|
if (obj.action == action) {
|
|
|
|
|
return obj.name;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
locCHange() {
|
|
|
|
|
|
|
|
|
|
if (this.$isNotBlank(this.formData.invWarehouseCode)) {
|
|
|
|
|
this.formData.invWarehouseCode = "";
|
|
|
|
|
}
|
|
|
|
|
this.findStorageMethod();
|
|
|
|
|
this.findInvByUser(this.formData.locStorageCode);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
findStorageMethod() {
|
|
|
|
|
|
|
|
|
|
if (this.formData.locStorageCode == null)
|
|
|
|
|
return;
|
|
|
|
|
this.fromStorageOptions = [];
|
|
|
|
|
let cQuery = {
|
|
|
|
|
locInvCode: this.formData.locStorageCode,
|
|
|
|
|
};
|
|
|
|
|
filterAllByLoc(cQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.fromStorageOptions = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
findSubStorageMethod(val) {
|
|
|
|
|
if (this.curInvOptions.length > 0) {
|
|
|
|
|
this.query.invStorageCode = this.curInvOptions.find(item => item.code == this.formData.invWarehouseCode).parentId
|
|
|
|
|
}
|
|
|
|
|
this.getBusType();
|
|
|
|
|
let cQuery = {
|
|
|
|
|
code: this.formData.invWarehouseCode,
|
|
|
|
|
filter: 2,
|
|
|
|
|
};
|
|
|
|
|
filterSubByInv(cQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
|
|
this.fromInvOptions = response.data || [];
|
|
|
|
|
if (val == 1) {
|
|
|
|
|
|
|
|
|
|
} else
|
|
|
|
|
this.formData.fromSubInvCode = this.fromInvOptions[0].code;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getStorage(event) {
|
|
|
|
|
this.storageList = [];
|
|
|
|
|
filterAllByUser()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.storageList = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getActionName(action) {
|
|
|
|
|
for (let i = 0; i < this.busTypeOptions.length; i++) {
|
|
|
|
|
if (this.busTypeOptions[i].action === action) {
|
|
|
|
|
return this.busTypeOptions[i].advanceType;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
getActionItem(action) {
|
|
|
|
|
for (let i = 0; i < this.busTypeOptions.length; i++) {
|
|
|
|
|
if (this.busTypeOptions[i].action == action) {
|
|
|
|
|
return this.busTypeOptions[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
selectSupUnit(row) {
|
|
|
|
@ -970,11 +854,9 @@ export default {
|
|
|
|
|
inputer.focus();
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
|
|
|
|
|
this.formData.code = '';
|
|
|
|
|
this.formData.actDate = new Date();
|
|
|
|
|
this.codeArray = [];
|
|
|
|
|
this.getStorage(this.formData.action);
|
|
|
|
|
if (this.$isNotBlank(this.idQuery.id)) {
|
|
|
|
|
this.formData.actDate = new Date(this.idQuery.actDate);
|
|
|
|
|
this.formData.corpOrderId = this.idQuery.corpOrderId;
|
|
|
|
@ -985,12 +867,12 @@ export default {
|
|
|
|
|
this.formData.fromCorpId = this.idQuery.fromCorpId;
|
|
|
|
|
this.formData.locStorageCode = this.idQuery.locStorageCode;
|
|
|
|
|
this.formData.invWarehouseCode = this.idQuery.invWarehouseCode;
|
|
|
|
|
this.formData.fromSubInvCode = this.idQuery.fromSubInvCode;
|
|
|
|
|
this.formData.fromInvCode = this.idQuery.fromInvCode;
|
|
|
|
|
this.formData.outChangeEnable = this.idQuery.outChangeEnable;
|
|
|
|
|
this.formData.preCheck = this.idQuery.preCheck;
|
|
|
|
|
this.actionEnable = true;
|
|
|
|
|
this.getCodeList();
|
|
|
|
|
this.findSubStorageMethod(1);
|
|
|
|
|
this.findFromInvList(1);
|
|
|
|
|
} else {
|
|
|
|
|
this.corpOrderIdDisabled = false;
|
|
|
|
|
if (JSON.stringify(this.$route.query) === '{}') {
|
|
|
|
@ -1007,12 +889,8 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
this.formData.invWarehouseCode = this.$store.getters.locSubInvCode;
|
|
|
|
|
this.formData.locStorageCode = this.$store.getters.locInvCode;
|
|
|
|
|
if (this.$isNotBlank(this.formData.locStorageCode)) {
|
|
|
|
|
this.findStorageMethod();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.findInvByUser();
|
|
|
|
|
this.findSubStorageMethod();
|
|
|
|
|
//查询是否启用多级仓库,判断是否启用部门
|
|
|
|
|
selectSysParamByKey({paramKey: "muti_inv_mode"}).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|