diff --git a/src/api/auth/authDept.js b/src/api/auth/authDept.js
new file mode 100644
index 0000000..70f0f08
--- /dev/null
+++ b/src/api/auth/authDept.js
@@ -0,0 +1,33 @@
+import axios from "../../utils/axios";
+
+export function filterDepts(query) {
+ return axios({
+ url: "/udi/auth/dept/filter",
+ method: "get",
+ params: query
+ });
+}
+
+export function addDept(data) {
+ return axios({
+ url: "/udi/auth/dept/add",
+ method: "post",
+ data: data
+ });
+}
+
+export function updateDept(data) {
+ return axios({
+ url: "/udi/auth/dept/update",
+ method: "post",
+ data: data
+ });
+}
+
+export function deleteDept(data) {
+ return axios({
+ url: "/udi/auth/dept/delete",
+ method: "post",
+ data: data
+ });
+}
diff --git a/src/api/inventory/invRelBusTypes.js b/src/api/inventory/invRelBusTypes.js
new file mode 100644
index 0000000..5c2bc12
--- /dev/null
+++ b/src/api/inventory/invRelBusTypes.js
@@ -0,0 +1,22 @@
+import axios from "../../utils/axios";
+
+
+export function filterSelectInvUser(query) {
+ return axios({
+ url: "/spms/bus/user/select/filter",
+ method: "get",
+ params: query
+ });
+}
+
+
+export function updateInvUser(query) {
+ return axios(
+ {
+ url: "/spms/bus/user/warehouse/update",
+ method: "post",
+ data: query
+ }
+ )
+}
+
diff --git a/src/router/index.js b/src/router/index.js
index af1c53b..529c8db 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -17,6 +17,7 @@ import adminRouter from "../views/userManage/admin/router.vue";
import authAdmin from "../views/userManage/admin/authAdmin.vue";
import authRole from "../views/userManage/admin/authRole.vue";
import authPermissionRule from "../views/userManage/admin/authPermissionRule.vue";
+import authDept from "../views/userManage/authDept.vue";
import systemParamConfig from "../views/userManage/param/systemParamConfig.vue";
import registerManage from "../views/userManage/registerManage.vue";
import phoneRegisterManage from "../views/userManage/phoneRegisterManage.vue";
@@ -283,6 +284,15 @@ export const asyncRouterMap = [
authRule: ["authMange/auth_permission_rule"]
}
},
+ {
+ path: "authDept",
+ component: authDept,
+ name: "部门管理",
+ icon: "",
+ meta: {
+ authRule: ["authMange/authDept"]
+ }
+ },
]
},
diff --git a/src/views/basic/invWarehouse.vue b/src/views/basic/invWarehouse.vue
index 330eb9b..3cb246b 100644
--- a/src/views/basic/invWarehouse.vue
+++ b/src/views/basic/invWarehouse.vue
@@ -195,11 +195,6 @@
@@ -135,7 +136,7 @@
@@ -146,12 +147,10 @@
-
-
+
+
-
-
diff --git a/src/views/userManage/authDept.vue b/src/views/userManage/authDept.vue
new file mode 100644
index 0000000..4e8b358
--- /dev/null
+++ b/src/views/userManage/authDept.vue
@@ -0,0 +1,326 @@
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+
+
+ 添加
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{
+ scope.row.flag | statusFilterName
+ }}
+
+
+
+
+
+
+
+
+ 编辑
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 禁用
+ 正常
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/warehouse/addHosOrder.vue b/src/views/warehouse/addHosOrder.vue
index baa8079..5df3dd4 100644
--- a/src/views/warehouse/addHosOrder.vue
+++ b/src/views/warehouse/addHosOrder.vue
@@ -178,6 +178,7 @@
placeholder="请输入病人住院号"
>
+
@@ -202,6 +203,39 @@
+
+
+
+ 所属部门:
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
@@ -431,6 +465,7 @@ import selectRlDialog from "./DialogSelectRl";
import editCodeDialog from "./editCode";
import A from "../../plugin/KeyScaner"
import {deleteLog} from "@/api/basic/udiinfolog";
+import {filterDepts} from "@/api/auth/authDept";
export default {
@@ -521,6 +556,7 @@ export default {
checkSuccess: false,
codeDetail: null,
editTitle: "编辑条码",
+ fromDeptOptions: [],
};
},
components: {
@@ -878,7 +914,7 @@ export default {
this.formData.vailInv = this.curAction.vailInv;
this.formData.codeFillCheck = this.curAction.codeFillCheck;
} else {
- this.curAction = {corpType:0,genUnit: false,changeEnable:false,};
+ this.curAction = {corpType: 0, genUnit: false, changeEnable: false,};
this.formData.action = null;
}
@@ -945,6 +981,26 @@ export default {
});
},
+ findDeptMethod() {
+ let query = {
+ flag: 1
+ };
+ filterDepts(query)
+ .then((response) => {
+ this.loading = false;
+ this.fromDeptOptions = response.data.list || [];
+ })
+ .catch(() => {
+ this.loading = false;
+ this.fromDeptOptions = [];
+ });
+ },
+
+ deptChange(row) {
+ this.formData.corpId = row.code;
+ this.formData.corpName = row.name;
+ },
+
findStorageMethod() {
if (this.formData.locStorageCode == null)
return;
diff --git a/src/views/warehouse/stockHospOrderNew.vue b/src/views/warehouse/stockHospOrderNew.vue
index 91a0020..6e80d8b 100644
--- a/src/views/warehouse/stockHospOrderNew.vue
+++ b/src/views/warehouse/stockHospOrderNew.vue
@@ -149,7 +149,6 @@
:value="item.code">
{{ item.name }}
{{ item.code }}
-
@@ -161,6 +160,31 @@
placeholder="请输入病人住院号"
>
+
+
+
+
+ {{ item.name }}
+
+
+
@@ -423,6 +447,7 @@ import {filterAll, filterAllByLoc, filterAllByUser} from "@/api/basic/invWarehou
import dialogInvProduct from "../inventory/DialogInvProduct"
import {filterSubByInv} from "@/api/basic/invSubWarehouse";
import {isBlank} from "@/utils/strUtil";
+import {filterDepts} from "@/api/auth/authDept";
export default {
name: "idQuery",
@@ -523,6 +548,7 @@ export default {
storageList: [],
invQueryData: {},
subInvList: [],
+ fromDeptOptions: [],
};
},
components: {
@@ -560,17 +586,9 @@ export default {
if (this.$isBlank(this.codeArray[i].count) || this.codeArray[i].count == "0") {
return this.$message.error('单据数量不能为0');
}
- // if (this.$isBlank(this.codeArray[i].batchNo)) {
- // if (!this.codeArray[i].allowNoBatch) {
- // return this.$message.error('批次号不能为空');
- // }
- // }
if (this.$isBlank(this.codeArray[i].productDate) && this.$isBlank(this.codeArray[i].expireDate)) {
return this.$message.error('生产日期与失效日期不能全部为空');
}
- // if (this.$isBlank(this.codeArray[i].expireDate)) {
- // return this.$message.error('失效日期不能为空');
- // }
}
@@ -580,14 +598,6 @@ export default {
if (this.$isBlank(this.codeArray[i].count) || this.codeArray[i].count == "0") {
return this.$message.error('单据数量不能为0');
}
-
- // if (!this.$isBlank(this.codeArray[i].productDate && this.codeArray[i].productDate.length != 6)) {
- // return this.$message.error('生产日期格式错误');
- // }
- // if (!this.$isBlank(this.codeArray[i].expireDate && this.codeArray[i].expireDate.length != 6)) {
- // return this.$message.error('失效日期不能为空');
- // }
-
}
}
@@ -647,7 +657,7 @@ export default {
}
}
},
- findStorageMethod(query) {
+ findStorageMethod() {
if (this.formData.locStorageCode == null)
return;
this.fromStorageOptions = [];
@@ -662,12 +672,32 @@ export default {
this.fromStorageOptions.push(temp[i]);
}
}
+ })
+ .catch(() => {
+ });
+ },
+ findDeptMethod() {
+ let query = {
+ flag: 1
+ };
+ filterDepts(query)
+ .then((response) => {
+ this.loading = false;
+ this.fromDeptOptions = response.data.list || [];
})
.catch(() => {
+ this.loading = false;
+ this.fromDeptOptions = [];
});
},
+ deptChange(row) {
+ this.formData.corpId = row.code;
+ this.formData.corpName = row.name;
+ },
+
+
findSubStorageMethod() {
let cQuery = {
pcode: this.formData.corpId,