单据类型修改

prod
anthonywj 2 years ago
parent fa4988d49d
commit 54729fa693

@ -8,6 +8,7 @@ export function filterSubAll(query) {
params: query
});
}
export function findByInvUser(query) {
return axios({
url: "/udiwms/busType/findByInvUser",
@ -16,6 +17,24 @@ export function findByInvUser(query) {
});
}
//获取用户所有关联仓库
export function findInvByUser(query) {
return axios({
url: "/spms/inv/warehouse/findByUser",
method: "get",
params: query
});
}
//获取除了自己所有其他仓库
export function findByFrom(query) {
return axios({
url: "/spms/inv/warehouse/findByFrom",
method: "get",
params: query
});
}
export function filterSubByInv(query) {
return axios({

@ -10,11 +10,11 @@
border>启用单据类型
</el-checkbox>
<el-checkbox v-model="inputQuery.genUnit" :disabled="inputQuery.corpType !=2" style="width: 200px" border>
<el-checkbox v-model="inputQuery.genUnit" :disabled="inputQuery.corpType !=1" style="width: 200px" border>
允许手动输入客户信息
</el-checkbox>
<el-checkbox v-model="inputQuery.useDyCount" :disabled="inputQuery.corpType !=2" style="width: 200px"
<el-checkbox v-model="inputQuery.useDyCount" :disabled="inputQuery.corpType !=1" style="width: 200px"
border>允许科室多次使用出库
</el-checkbox>

@ -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) {

Loading…
Cancel
Save