|
|
|
@ -125,7 +125,7 @@
|
|
|
|
|
</el-form> |
|
|
|
|
|
|
|
|
|
<el-tabs v-model="activeName" type="border-card" @tab-click="handleClick"> |
|
|
|
|
<el-tab-pane name='orderTab' label="订单"> |
|
|
|
|
<el-tab-pane name="orderTab" label="订单"> |
|
|
|
|
<el-button class="el-btn-xz" type="primary" link @click="handleAddOrder">新 增</el-button> |
|
|
|
|
<tablecmt |
|
|
|
|
class="tablesc" |
|
|
|
@ -174,7 +174,7 @@
|
|
|
|
|
</tablecmt> |
|
|
|
|
</el-tab-pane> |
|
|
|
|
|
|
|
|
|
<el-tab-pane name='InventoryTab' label="库存品"> |
|
|
|
|
<el-tab-pane name="InventoryTab" label="库存品"> |
|
|
|
|
<el-button class="el-btn-xz" link @click="handleAddInventory">新 增</el-button> |
|
|
|
|
<tablecmt |
|
|
|
|
class="tablesc" |
|
|
|
@ -513,13 +513,13 @@ import { getDictionaryBiz } from '@/api/system/dict';
|
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
|
import { entryNum, updateEntryNum } from '@/api/distribution/distributionParcelNumber'; |
|
|
|
|
import { setNodeHeight, removeZeroWidth } from '@/utils/util.js'; |
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus' |
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'; |
|
|
|
|
import error from '@/error'; |
|
|
|
|
export default { |
|
|
|
|
name: '/distribution/reservation/reservationAddFrom', |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
activeName:'orderTab', |
|
|
|
|
activeName: 'orderTab', |
|
|
|
|
Inventoryloading: true, //库存品加载 |
|
|
|
|
packageQuery: {}, |
|
|
|
|
reservationloading: false, |
|
|
|
@ -2022,7 +2022,7 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
this.init(); |
|
|
|
|
this.Copyfrom= JSON.parse(JSON.stringify(this.form)) |
|
|
|
|
this.Copyfrom = JSON.parse(JSON.stringify(this.form)); |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.getDictionary(); |
|
|
|
|
|
|
|
|
@ -2542,8 +2542,8 @@ export default {
|
|
|
|
|
this.$store.commit('DEL_TAG_CURRENT'); |
|
|
|
|
}, |
|
|
|
|
// 最后提交 |
|
|
|
|
async onSubmit(formEl) { |
|
|
|
|
this.$refs.ruleForm.validate(async valid => { |
|
|
|
|
async onSubmit(formEl) { |
|
|
|
|
this.$refs.ruleForm.validate(async valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
console.log('submit!'); |
|
|
|
|
try { |
|
|
|
@ -2645,72 +2645,76 @@ this.$refs.ruleForm.validate(async valid => {
|
|
|
|
|
// this.form.stockArticleList = this.packageList; |
|
|
|
|
console.log('>>>>>>>>', this.form); |
|
|
|
|
if (this.reservationId) { |
|
|
|
|
// 判断是否都没有选择包件 |
|
|
|
|
const checkInfoValues = this.form.stockArticleList.every(item => !item.packageListInfo || !item.packageListInfo.length); |
|
|
|
|
if(checkInfoValues){ |
|
|
|
|
ElMessageBox.prompt('当前所有订单都没有选择包件是否确认"取消本次计划"?', '请填写取消原因', { |
|
|
|
|
confirmButtonText: '确认', |
|
|
|
|
cancelButtonText: '关闭', |
|
|
|
|
inputPattern: /^\S+$/, |
|
|
|
|
inputErrorMessage: '请填写取消原因', |
|
|
|
|
}) |
|
|
|
|
.then((value) => { |
|
|
|
|
let data={ |
|
|
|
|
cancelReason:value.value, |
|
|
|
|
id:this.$route.query.reservationId |
|
|
|
|
} |
|
|
|
|
this.reservationloading=true |
|
|
|
|
cancelReservation(data).then(res=>{ |
|
|
|
|
console.log(res); |
|
|
|
|
if(res.data.code ==200){ |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}) |
|
|
|
|
this.$router.push('/distribution/reservation/reservation'); |
|
|
|
|
this.$store.commit('DEL_TAG_CURRENT'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}).catch((error)=>{ |
|
|
|
|
this.reservationloading=false |
|
|
|
|
console.log(error); |
|
|
|
|
}) |
|
|
|
|
console.log(data,'要提交的数据'); |
|
|
|
|
}) |
|
|
|
|
.catch(() => { |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
for(let i=0;i< this.form.stockArticleList.length;i++){ |
|
|
|
|
if(!this.form.stockArticleList[i].packageListInfo || !this.form.stockArticleList[i].packageListInfo.length ){ |
|
|
|
|
ElMessageBox.confirm( |
|
|
|
|
`订单自编号:${this.form.stockArticleList[i].orderCode}没有选择包件是否移除!`, |
|
|
|
|
'提示', |
|
|
|
|
{ |
|
|
|
|
confirmButtonText: '确认', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
.then(() => { |
|
|
|
|
this.renderOrderData.splice(i, 1); |
|
|
|
|
this.form.stockArticleList.splice(i,1) |
|
|
|
|
}) |
|
|
|
|
.catch(() => { |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 判断是否都没有选择包件 |
|
|
|
|
const checkInfoValues = this.form.stockArticleList.every( |
|
|
|
|
item => !item.packageListInfo || !item.packageListInfo.length |
|
|
|
|
); |
|
|
|
|
if (checkInfoValues) { |
|
|
|
|
ElMessageBox.prompt( |
|
|
|
|
'当前所有订单都没有选择包件是否确认"取消本次计划"?', |
|
|
|
|
'请填写取消原因', |
|
|
|
|
{ |
|
|
|
|
confirmButtonText: '确认', |
|
|
|
|
cancelButtonText: '关闭', |
|
|
|
|
inputPattern: /^\S+$/, |
|
|
|
|
inputErrorMessage: '请填写取消原因', |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
.then(value => { |
|
|
|
|
let data = { |
|
|
|
|
cancelReason: value.value, |
|
|
|
|
id: this.$route.query.reservationId, |
|
|
|
|
}; |
|
|
|
|
this.reservationloading = true; |
|
|
|
|
cancelReservation(data) |
|
|
|
|
.then(res => { |
|
|
|
|
console.log(res); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
this.$router.push('/distribution/reservation/reservation'); |
|
|
|
|
this.$store.commit('DEL_TAG_CURRENT'); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(error => { |
|
|
|
|
this.reservationloading = false; |
|
|
|
|
console.log(error); |
|
|
|
|
}); |
|
|
|
|
console.log(data, '要提交的数据'); |
|
|
|
|
}) |
|
|
|
|
.catch(() => {}); |
|
|
|
|
} else { |
|
|
|
|
for (let i = 0; i < this.form.stockArticleList.length; i++) { |
|
|
|
|
if ( |
|
|
|
|
!this.form.stockArticleList[i].packageListInfo || |
|
|
|
|
!this.form.stockArticleList[i].packageListInfo.length |
|
|
|
|
) { |
|
|
|
|
ElMessageBox.confirm( |
|
|
|
|
`订单自编号:${this.form.stockArticleList[i].orderCode}没有选择包件是否移除!`, |
|
|
|
|
'提示', |
|
|
|
|
{ |
|
|
|
|
confirmButtonText: '确认', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
.then(() => { |
|
|
|
|
this.renderOrderData.splice(i, 1); |
|
|
|
|
this.form.stockArticleList.splice(i, 1); |
|
|
|
|
}) |
|
|
|
|
.catch(() => {}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 开启提交按钮loading |
|
|
|
|
this.loadingObj.submitBtnLoading = true; |
|
|
|
|
this.reservationloading = true; //开启全屏加载 |
|
|
|
|
this.form.id = this.reservationId; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
// 开启提交按钮loading |
|
|
|
|
this.loadingObj.submitBtnLoading = true; |
|
|
|
|
this.reservationloading = true; //开启全屏加载 |
|
|
|
|
this.form.id = this.reservationId; |
|
|
|
|
|
|
|
|
|
const res = await update(this.form); |
|
|
|
|
const res = await update(this.form); |
|
|
|
|
console.log('res :>> ', res); |
|
|
|
|
if (res.data.code !== 200) return; |
|
|
|
|
this.$message({ |
|
|
|
@ -2718,49 +2722,44 @@ ElMessageBox.prompt('当前所有订单都没有选择包件是否确认"取消
|
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
this.back(); |
|
|
|
|
} else { |
|
|
|
|
// 开启提交按钮loading |
|
|
|
|
this.loadingObj.submitBtnLoading = true; |
|
|
|
|
this.reservationloading = true; //开启全屏加载 |
|
|
|
|
this.form.reservationStatus = '20'; |
|
|
|
|
} else { |
|
|
|
|
// 开启提交按钮loading |
|
|
|
|
this.loadingObj.submitBtnLoading = true; |
|
|
|
|
this.reservationloading = true; //开启全屏加载 |
|
|
|
|
this.form.reservationStatus = '20'; |
|
|
|
|
const res = await autonomouslySave(this.form); |
|
|
|
|
console.log('res :>> ', res); |
|
|
|
|
if (res.data.code !== 200) return; |
|
|
|
|
ElMessageBox.confirm( |
|
|
|
|
'当前预约已完成,是否继续添加预约?', |
|
|
|
|
'提示', |
|
|
|
|
{ |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
.then(() => { |
|
|
|
|
this.form=this.Copyfrom |
|
|
|
|
this.Copyfrom= JSON.parse(JSON.stringify(this.form)) |
|
|
|
|
this.$refs.ruleForm.resetFields(); // 调用重置验证状态的方法 |
|
|
|
|
this.renderOrderData=[]//订单重置 |
|
|
|
|
this.serveType=[];//服务类型重置 |
|
|
|
|
this.renderInventoryData=[]//库存品重置 |
|
|
|
|
this.orderList=[] |
|
|
|
|
this.orderData = [] |
|
|
|
|
this.packageListInfo=[] |
|
|
|
|
this.stockArticleInfo=[] |
|
|
|
|
this.inventoryDat= [] |
|
|
|
|
this.inventoryData=[] |
|
|
|
|
this.inventoryList=[] |
|
|
|
|
delete this.query.marketName |
|
|
|
|
this.marketName='' |
|
|
|
|
this.activeName='orderTab', |
|
|
|
|
console.log(this.orderList,''); |
|
|
|
|
}) |
|
|
|
|
.catch(() => { |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
this.back(); |
|
|
|
|
}) |
|
|
|
|
ElMessageBox.confirm('当前预约已完成,是否继续添加预约?', '提示', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}) |
|
|
|
|
.then(() => { |
|
|
|
|
this.form = this.Copyfrom; |
|
|
|
|
this.Copyfrom = JSON.parse(JSON.stringify(this.form)); |
|
|
|
|
this.$refs.ruleForm.resetFields(); // 调用重置验证状态的方法 |
|
|
|
|
this.renderOrderData = []; //订单重置 |
|
|
|
|
this.serveType = []; //服务类型重置 |
|
|
|
|
this.renderInventoryData = []; //库存品重置 |
|
|
|
|
this.orderList = []; |
|
|
|
|
this.orderData = []; |
|
|
|
|
this.packageListInfo = []; |
|
|
|
|
this.stockArticleInfo = []; |
|
|
|
|
this.inventoryDat = []; |
|
|
|
|
this.inventoryData = []; |
|
|
|
|
this.inventoryList = []; |
|
|
|
|
delete this.query.marketName; |
|
|
|
|
this.marketName = ''; |
|
|
|
|
(this.activeName = 'orderTab'), console.log(this.orderList, ''); |
|
|
|
|
}) |
|
|
|
|
.catch(() => { |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
this.back(); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// this.$message({ |
|
|
|
|
// type: 'success', |
|
|
|
@ -2926,7 +2925,7 @@ console.log(this.orderList,'');
|
|
|
|
|
// 输入值后并搜索 |
|
|
|
|
if (type === 1) { |
|
|
|
|
// 动态设置正则 |
|
|
|
|
const reg = new RegExp(value, 'i'); |
|
|
|
|
const reg = new RegExp('^' + value); |
|
|
|
|
|
|
|
|
|
this.orderQuery[row.prop] = reg; |
|
|
|
|
|
|
|
|
@ -2953,7 +2952,7 @@ console.log(this.orderList,'');
|
|
|
|
|
// 输入值后并搜索 |
|
|
|
|
if (type === 1) { |
|
|
|
|
// 动态设置正则 |
|
|
|
|
const reg = new RegExp(value, 'i'); |
|
|
|
|
const reg = new RegExp('^' + value); |
|
|
|
|
|
|
|
|
|
this.stockQuery[row.prop] = reg; |
|
|
|
|
|
|
|
|
@ -3384,7 +3383,7 @@ console.log(this.orderList,'');
|
|
|
|
|
|
|
|
|
|
if (code !== 200) return; |
|
|
|
|
|
|
|
|
|
console.log('this.orderList',this.orderList) |
|
|
|
|
console.log('this.orderList', this.orderList); |
|
|
|
|
const _chooseArr = [...this.orderList]; |
|
|
|
|
|
|
|
|
|
this.stockArticleInfo = records; |
|
|
|
@ -3441,13 +3440,12 @@ console.log(this.orderList,'');
|
|
|
|
|
this.form.isUrgent = '1'; |
|
|
|
|
// this.form.reservationDate = new Date(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (this.orderIds) { |
|
|
|
|
this.reservationloading=true |
|
|
|
|
if(res.data.code !==200){ |
|
|
|
|
this.reservationloading=false |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
this.reservationloading = true; |
|
|
|
|
if (res.data.code !== 200) { |
|
|
|
|
this.reservationloading = false; |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
getStockArticleList(this.orderIds).then(res => { |
|
|
|
|
console.log(res.data.data); |
|
|
|
|
const data = res.data.data; |
|
|
|
@ -3471,17 +3469,16 @@ console.log(this.orderList,'');
|
|
|
|
|
this.form.deliveryAddress = address; |
|
|
|
|
this.orderData = data; |
|
|
|
|
this.renderOrderData = [...this.orderData]; |
|
|
|
|
this.reservationloading=false |
|
|
|
|
|
|
|
|
|
}) |
|
|
|
|
this.reservationloading = false; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
if (this.reservationId) { |
|
|
|
|
this.reservationloading=true |
|
|
|
|
this.reservationloading = true; |
|
|
|
|
this.inventoryShow = true; |
|
|
|
|
getReservationInfo(this.reservationId).then(res => { |
|
|
|
|
if(res.data.code !==200){ |
|
|
|
|
this.reservationloading=false |
|
|
|
|
return |
|
|
|
|
if (res.data.code !== 200) { |
|
|
|
|
this.reservationloading = false; |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
const reservation = res.data.data; |
|
|
|
|
const stockArticleListInfo = res.data.data.stockArticleList; |
|
|
|
@ -3508,8 +3505,8 @@ console.log(this.orderList,'');
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
this.form = reservation; |
|
|
|
|
this.reservationloading=false |
|
|
|
|
}) |
|
|
|
|
this.reservationloading = false; |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
this.form.deliveryType = '2'; |
|
|
|
|
} |
|
|
|
|