diff --git a/.env.production b/.env.production
index 5ced92c6..68025fb2 100644
--- a/.env.production
+++ b/.env.production
@@ -21,7 +21,7 @@ ENV = 'production'
# 平潭正式
-# VUE_APP_BASE_API = 'http://55.55.0.62:9150/UDI_WMS_MC/'
+VUE_APP_BASE_API = 'http://55.55.0.62:9150/UDI_WMS_MC/'
# 漳州中医院
# VUE_APP_BASE_API = 'http://192.168.240.119:9150/UDI_WMS_MC/'
@@ -65,7 +65,7 @@ ENV = 'production'
# 南靖
-VUE_APP_BASE_API = 'http://192.168.10.225:9150/UDI_WMS_MC/'
+# VUE_APP_BASE_API = 'http://192.168.10.225:9150/UDI_WMS_MC/'
# 测试NIGINX
# VUE_APP_BASE_API = 'https://test.udims.com/UDI_WMS_MC/'
diff --git a/src/api/inout/order.js b/src/api/inout/order.js
index d0ba8c0e..f1f3d792 100644
--- a/src/api/inout/order.js
+++ b/src/api/inout/order.js
@@ -514,6 +514,16 @@ export function deleteInvByCode(query) {
});
}
+export function deleteAllInvByCode(query) {
+ return axios({
+ url: "/udiwms/inout/code/finish/deleteAll",
+ method: "post",
+ data: query
+ });
+}
+
+
+
export function rollbackOrder(params) {
return axios({
url: "/udiwms/inout/order/received/rollback",
diff --git a/src/views/inout/IoEditOrderCodeDetail.vue b/src/views/inout/IoEditOrderCodeDetail.vue
index f4f62c05..855bd417 100644
--- a/src/views/inout/IoEditOrderCodeDetail.vue
+++ b/src/views/inout/IoEditOrderCodeDetail.vue
@@ -25,6 +25,12 @@
+ 删除
+
import {
+ deleteAllInvByCode,
deleteInvByCode, updateOrderInfo
} from "../../api/inout/order";
import {getCodeListForEdit} from "@/api/inout/code";
@@ -242,6 +249,28 @@ export default {
.catch(() => {
});
},
+
+ deleteAllDialog(row) {
+ this.$confirm("是否确定删除条码?", "提示", {
+ confirmButtonText: "确定",
+ cancelButtonText: "取消",
+ type: "warning",
+ })
+ .then(() => {
+ deleteAllInvByCode(row).then((res) => {
+ if (res.code === 20000) {
+ this.$message.success("操作成功");
+ this.getList();
+ } else {
+ this.$message.error(res.message);
+ }
+ }).catch((error) => {
+ this.$message.error(error.message);
+ });
+ })
+ .catch(() => {
+ });
+ },
},
filters: {
statusFilterType(status) {