diff --git a/src/api/inout/ioDepartmentOrder.js b/src/api/inout/ioDepartmentOrder.js
index ad256252..9a08fcab 100644
--- a/src/api/inout/ioDepartmentOrder.js
+++ b/src/api/inout/ioDepartmentOrder.js
@@ -12,6 +12,22 @@ export function getOrderListbyCode(data) {
return axios({
url: "/udiwms/inout/ioDepartmentOrder/getOrderListbyCode",
method: "get",
+ params: data
+ });
+}
+
+export function addInfoSkSicker(data) {
+ return axios({
+ url: "/udiwms/inout/ioDepartmentOrder/addInfoSkSicker",
+ method: "post",
data: data
});
}
+
+export function clickToTriggerbyCode(data) {
+ return axios({
+ url: "/udiwms/inout/ioDepartmentOrder/clickToTriggerbyCode",
+ method: "get",
+ params: data
+ });
+}
diff --git a/src/api/thrsys/thrOrder.js b/src/api/thrsys/thrOrder.js
index a2c13a86..9664fc02 100644
--- a/src/api/thrsys/thrOrder.js
+++ b/src/api/thrsys/thrOrder.js
@@ -28,7 +28,7 @@ export function delOrderDetail(query) {
return axios({
url: "/udiwms/thrsys/delOrderDetail",
method: "post",
- data: query
+ data: query1
});
}
diff --git a/src/components/inout/baziPanel.vue b/src/components/inout/baziPanel.vue
index c81ede6f..6921502a 100644
--- a/src/components/inout/baziPanel.vue
+++ b/src/components/inout/baziPanel.vue
@@ -4,22 +4,24 @@
>
-
+
-
+
@@ -61,3 +63,9 @@ export default {
computed: {}
}
+
+
diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue
index f30cfdda..c92b8b4e 100644
--- a/src/views/inout/DialogCreateOrder.vue
+++ b/src/views/inout/DialogCreateOrder.vue
@@ -89,7 +89,7 @@
v-model="orderFormData.invCode"
placeholder="当前仓库"
style="width: 90%"
- :disabled="corpOrderIdDisabled"
+ :disabled="corpOrderIdDisabled || viewTypeKsck"
@change="changeInv"
filterable
>
@@ -679,6 +679,10 @@ export default {
type: Object,
required: true,
},
+ viewTypeKsck: {
+ type: Boolean,
+ required: false,
+ },
viewType: {
//1、新增业务单据页面,2.新增扫码单据页面,3、正常单据处理页面,4.待配货页面,5:有三期验收,6:无三期验收;7.待校验页面
type: Object,
@@ -882,8 +886,16 @@ export default {
getBusTypeByInv() {
let query = {
code: this.orderFormData.invCode,
- editType: 2 //可编辑
+ editType: 2, //可编辑
};
+ if (this.viewTypeKsck){
+ query = {
+ code: this.orderFormData.invCode,
+ editType: 2, //可编辑
+ useDyCount: 2 //可编辑
+ };
+ }
+
findByInvUser(query)
.then((response) => {
this.busTypeOptions = response.data || [];
@@ -1837,6 +1849,11 @@ export default {
}
}
+ if (this.viewTypeKsck) {
+ this.curAction.corpType = 1,
+ this.curAction.genUnit = true
+ this.curAction.inputSick = true
+ }
},
};
diff --git a/src/views/inout/IoDepartmentOrder.vue b/src/views/inout/IoDepartmentOrder.vue
index c94fed3e..210e796a 100644
--- a/src/views/inout/IoDepartmentOrder.vue
+++ b/src/views/inout/IoDepartmentOrder.vue
@@ -26,6 +26,10 @@
>查询
+ 录入患者信息
+
@@ -62,16 +66,114 @@
:sickerAdNum="this.sickerAdNum"
:viewType="2"
:errView="0"
+ :viewTypeKsck=true
>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 提交
+
+
+
+
+
+
+
+