diff --git a/.env.production b/.env.production
index 2087eabd..39028584 100644
--- a/.env.production
+++ b/.env.production
@@ -16,7 +16,7 @@ ENV = 'production'
# VUE_APP_BASE_API = 'http://192.168.0.127:9150/UDI_WMS_MC/'
# VUE_APP_BASE_API = 'http://192.168.0.127:9160/UDI_WMS_MC/'
# VUE_APP_BASE_API = 'http://192.168.0.127:9170/UDI_WMS_MC/'
-# VUE_APP_BASE_API = 'http://dm.xmglxp.com:8082/UDI_WMS_MC/'
+VUE_APP_BASE_API = 'http://dm.xmglxp.com:8082/UDI_WMS_MC/'
# VUE_APP_BASE_API = 'http://192.168.8.58:9150/UDI_WMS_MC/'
@@ -37,7 +37,7 @@ ENV = 'production'
# VUE_APP_BASE_API = 'http://127.0.0.1:9150/UDI_WMS_MC/'
# 长泰医院
-VUE_APP_BASE_API = 'http://192.168.6.189:9150/UDI_WMS_MC/'
+# VUE_APP_BASE_API = 'http://192.168.6.189:9150/UDI_WMS_MC/'
# 三明大田医院
# VUE_APP_BASE_API = 'http://172.20.124.4:9150/UDI_WMS_MC/'
diff --git a/src/api/basic/sicker/skPersonApi.js b/src/api/basic/sicker/skPersonApi.js
index 8c87e2da..61933626 100644
--- a/src/api/basic/sicker/skPersonApi.js
+++ b/src/api/basic/sicker/skPersonApi.js
@@ -38,6 +38,15 @@ export function skPrescribeDi(query) {
});
}
+export function skPrescribeCheck(query) {
+ return axios({
+ url: "/udiwms/basic/sk/prescribe/check",
+ method: "get",
+ params: query
+ });
+}
+
+
/**
* 下载并查询处方信息
diff --git a/src/api/dev/deviceInfoApi.js b/src/api/dev/deviceInfoApi.js
index e004d2d1..7d6bdf2e 100644
--- a/src/api/dev/deviceInfoApi.js
+++ b/src/api/dev/deviceInfoApi.js
@@ -79,7 +79,7 @@ export function genDeviceQR(deviceCode) {
export function printDevLabel(query) {
return axios({
- url: "/udiwms/inv/deptDevice/printOrder",
+ url: "/udiwms/inv/deptDev/label/print",
method: "post",
data: query,
headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'},
diff --git a/src/views/dev/deviceChangeOrder.vue b/src/views/dev/deviceChangeOrder.vue
index 1eb3d83b..55d54759 100644
--- a/src/views/dev/deviceChangeOrder.vue
+++ b/src/views/dev/deviceChangeOrder.vue
@@ -256,7 +256,7 @@
- <
+
{{scope.row.expireDate}}
diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue
index dde90c4f..c9412faf 100644
--- a/src/views/inout/DialogCreateOrder.vue
+++ b/src/views/inout/DialogCreateOrder.vue
@@ -455,7 +455,7 @@
:refreshPanel="refreshCodesPanel"
:sickerAdNum="orderFormData.sickerAdNum"
:viewType="viewType"
- v-if="viewSickVisible"
+ v-if="isSickerAlive"
>
@@ -718,6 +718,7 @@ export default {
isCheckResultAlive: true,
isBizDetailAlive: true,
isCodeDetailAlive: true,
+ isSickerAlive: true,
editCodeVisible: false,
actionEnable: false,
editOriginCodeVisible: false,
@@ -1155,7 +1156,7 @@ export default {
}
}
if (this.curAction.corpType === 1 && this.curAction.genUnit) {
- if (this.$isBlank(this.orderFormData.fromCorp)) {
+ if (this.$isBlank(this.orderFormData.fromCorp) && this.$isBlank(this.orderFormData.sickerAdNum)) {
this.$message.warning("请选择往来单位!");
return;
}
@@ -1347,12 +1348,14 @@ export default {
this.isCodeAlive = false;
this.isBizDetailAlive = false;
this.isCodeDetailAlive = false;
+ this.isSickerAlive = false;
this.$nextTick(() => {
//重新加载组件
this.isCodeAlive = true;
this.isBizDetailAlive = true;
this.isCodeDetailAlive = true;
+ this.isSickerAlive = true;
});
diff --git a/src/views/inout/PanelSkPrescribeDi.vue b/src/views/inout/PanelSkPrescribeDi.vue
index 11f807bd..a9331a15 100644
--- a/src/views/inout/PanelSkPrescribeDi.vue
+++ b/src/views/inout/PanelSkPrescribeDi.vue
@@ -32,19 +32,27 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
详情
@@ -56,7 +64,7 @@