|
|
|
@ -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("获取错误")
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|