|
|
|
@ -119,6 +119,7 @@ export default {
|
|
|
|
|
targetAction: null,
|
|
|
|
|
name: null,
|
|
|
|
|
enable: null,
|
|
|
|
|
type: null,
|
|
|
|
|
remark: null
|
|
|
|
|
},
|
|
|
|
|
enableMap: {
|
|
|
|
@ -131,6 +132,7 @@ export default {
|
|
|
|
|
1: "耗材领用",
|
|
|
|
|
2: "产品申购",
|
|
|
|
|
3: "采购计划",
|
|
|
|
|
4: "盘点转单"
|
|
|
|
|
},
|
|
|
|
|
formMap: {
|
|
|
|
|
add: "新增单据生成设置",
|
|
|
|
@ -186,11 +188,11 @@ export default {
|
|
|
|
|
|
|
|
|
|
onAddSubmit() {
|
|
|
|
|
if (isBlank(this.inputQuery.originName)) {
|
|
|
|
|
this.$message.error("补单类型名称不能为空!")
|
|
|
|
|
this.$message.error("单据类型名称不能为空!")
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (isBlank(this.inputQuery.originAction)) {
|
|
|
|
|
this.$message.error("补单类型代码不能为空!");
|
|
|
|
|
this.$message.error("单据类型代码不能为空!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (isBlank(this.inputQuery.targetAction)) {
|
|
|
|
@ -198,7 +200,11 @@ export default {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (isBlank(this.inputQuery.enable)) {
|
|
|
|
|
this.$message.error("请选择启用状态!")
|
|
|
|
|
this.$message.error("请选择启用状态!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (isBlank(this.inputQuery.type)) {
|
|
|
|
|
this.$message.error("请选择类型!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -209,10 +215,10 @@ export default {
|
|
|
|
|
this.$message.error("单据类型名称不得为纯数字类型!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.inputQuery.type = 1; //默认类型为耗材领用
|
|
|
|
|
|
|
|
|
|
addBusTypeChange(this.inputQuery).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.cancelDialog();
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|