代码备份

20240912_adapter
yewj 6 months ago
parent 4f720babf1
commit 92eb1dc129

@ -30,7 +30,7 @@ VUE_APP_BASE_API = 'http://dm.xmglxp.com:81/UDI_WMS_MC/'
# 平和县医院
# VUE_APP_BASE_API = 'http://192.168.0.43:9150/UDI_WMS_MC/'
# VUE_APP_BASE_API = 'http://dm.xmglxp.com:81/UDI_WMS_MC/'
# 长泰医院
# VUE_APP_BASE_API = 'http://192.168.6.189:9150/UDI_WMS_MC/'

@ -5,7 +5,6 @@
"author": "Glxp",
"license": "MIT",
"scripts": {
"dev": "vue-cli-service serve",
"build:prod": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
"build:test": "vue-cli-service build --mode test",
"preview": "node build/index.js --preview",

@ -1367,7 +1367,7 @@ export default {
},
// billNo
clearBillNo(data) {
if(data){
if (data) {
this.orderFormData.billNo = null;
}
},
@ -1633,19 +1633,19 @@ export default {
// this.upOrderStatus()
},
upOrderStatus(){
upOrderStatus() {
let query = {
billNo : this.orderQuery.billNo
billNo: this.orderQuery.billNo
}
upProcessing(query).then(res => {
if (res.code == 20000){
if (res.code == 20000) {
}else if (res.code == 501){
} else if (res.code == 501) {
this.$message.error("当前单据正在处理中,请重新选择单据")
this.$refs.chooseDraftOrder.getList();
this.chooseDraftOrderVisible = true
//稿
}else {
} else {
return this.$message.error("系统繁忙")
}
})
@ -1669,9 +1669,9 @@ export default {
return;
}
this.saveLoading = true
if (this.splitType == 'return'){
if (this.splitType == 'return') {
tQuery.inoutType = 2
}else {
} else {
tQuery.inoutType = 1
}
saveOrderWeb(tQuery).then((response) => {
@ -2076,16 +2076,16 @@ export default {
if (!isBlank(this.errResult))
this.errVisible = true;
},
getOrder(){
getOrder() {
let query = {
workPlaceCode: this.workplaceId
}
getProcessingOrder(query).then(res => {
if (res.code == 20000){
if (res.data != null){
if (res.code == 20000) {
if (res.data != null) {
this.refreshOrder(res.data)
}
}else {
} else {
this.$message.error("获取错误")
}
})

Loading…
Cancel
Save