寄售类型单据
@@ -98,16 +93,23 @@
+ :disabled="!changeEnable || inputQuery.mainAction=='WareHouseIn' || inputQuery.id == null || inputQuery.mainAction==null ||inputQuery.preIn">
缺量自动补单
-
+
+
+
@@ -306,7 +308,12 @@ export default {
});
this.getBusTypes();
},
-
+ preInChange() {
+ if (this.inputQuery.preIn) {
+ this.inputQuery.changeEnable = false;
+ this.inputQuery.advanceType = false;
+ }
+ },
getBusTypes() {
let query = {
enabled: true,
diff --git a/src/views/basic/BussinessTypeThird.vue b/src/views/basic/BussinessTypeThird.vue
index c3ce471..74e1ac0 100644
--- a/src/views/basic/BussinessTypeThird.vue
+++ b/src/views/basic/BussinessTypeThird.vue
@@ -11,13 +11,6 @@
style="width: 400px"
>
-
-
-
-
-
-
-
@@ -35,21 +28,13 @@
查询
+ 新增
+
更新下载
-
-
-
-
-
-
-
-
-
-
-
+
@@ -58,11 +43,6 @@
-
-
-
-
-
@@ -74,12 +54,19 @@
>编辑
+ 删除
+
import {
getOriginBusType,
- updateBussinessType,
+ updateBussinessType, delBussinessType,
insertBussinessType, downloadBussinessType
} from "../../api/basic/busOriginType";
@@ -237,6 +224,8 @@ export default {
},
onAddSubmit() {
+
+
insertBussinessType(this.inputQuery)
.then((response) => {
this.loading = false;
@@ -263,7 +252,7 @@ export default {
},
handleModifyClick(row) {
- this.modifyDialogVisible = true;
+
this.inputQuery = {
id: row.id,
remark: row.remark,
@@ -273,16 +262,44 @@ export default {
thirdSys: row.thirdSys,
thirdSysName: row.thirdSysName
};
+ this.modifyDialogVisible = true;
+ },
+
+
+ handleDeleteClick(row) {
+ this.deleteDialog(row.id)
+ },
+
+ handleAddClick() {
+ this.inputQuery = {
+ action: "",
+ name: "",
+ enable: "",
+ remark: "",
+ thirdSys: null,
+ thirdSysName: null
+ };
+ this.addDialogVisible = true;
},
deleteDialog(rowId) {
- this.$confirm("此操作将永久删除该业务类型信息, 是否继续?", "提示", {
+ this.$confirm("此操作将永久删除该单据类型信息, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
- this.deleteOrders(rowId);
+ let query = {
+ id: rowId,
+ }
+ delBussinessType(query)
+ .then((response) => {
+ this.getList();
+ })
+ .catch(() => {
+ });
+
+
})
.catch(() => {
});
diff --git a/src/views/basic/BussinessTypeThirdModify.vue b/src/views/basic/BussinessTypeThirdModify.vue
index 677b4f7..aed48cc 100644
--- a/src/views/basic/BussinessTypeThirdModify.vue
+++ b/src/views/basic/BussinessTypeThirdModify.vue
@@ -10,7 +10,7 @@
style="width: 200px"
size="small"
splaceholder="请输入内容"
- :disabled="true"
+ :disabled="!isAdd"
v-model="inputQuery.name"
>
@@ -22,7 +22,7 @@