|
|
|
@ -1169,7 +1169,7 @@ const details = reactive<any>({
|
|
|
|
|
{ |
|
|
|
|
required: true, |
|
|
|
|
message: '请填写或选择到站地', |
|
|
|
|
trigger: 'change', |
|
|
|
|
trigger: ['change', 'blur'], |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
/** 目的站名称 */ |
|
|
|
@ -1177,7 +1177,7 @@ const details = reactive<any>({
|
|
|
|
|
{ |
|
|
|
|
required: true, |
|
|
|
|
message: '请选择目的仓', |
|
|
|
|
trigger: 'blur', |
|
|
|
|
trigger: ['blur', 'change'], |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
/** 发货单位 */ |
|
|
|
@ -1217,7 +1217,7 @@ const details = reactive<any>({
|
|
|
|
|
{ |
|
|
|
|
required: true, |
|
|
|
|
message: '请选择或输入收货人', |
|
|
|
|
trigger: 'blur', |
|
|
|
|
trigger: ['change', 'blur'], |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
/** 收货人电话 */ |
|
|
|
@ -1225,7 +1225,7 @@ const details = reactive<any>({
|
|
|
|
|
{ |
|
|
|
|
required: true, |
|
|
|
|
message: '请选择或输入收货人电话', |
|
|
|
|
trigger: 'blur', |
|
|
|
|
trigger: ['change', 'blur'], |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
/** 付款方式 */ |
|
|
|
@ -1233,7 +1233,7 @@ const details = reactive<any>({
|
|
|
|
|
{ |
|
|
|
|
required: true, |
|
|
|
|
message: '请选择付款方式', |
|
|
|
|
trigger: 'change', |
|
|
|
|
trigger: ['change', 'blur'], |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
/** 送货方式 */ |
|
|
|
@ -1241,7 +1241,7 @@ const details = reactive<any>({
|
|
|
|
|
{ |
|
|
|
|
required: true, |
|
|
|
|
message: '请选择送货方式', |
|
|
|
|
trigger: 'change', |
|
|
|
|
trigger: ['change', 'blur'], |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
/** 紧急度 */ |
|
|
|
@ -1249,7 +1249,7 @@ const details = reactive<any>({
|
|
|
|
|
{ |
|
|
|
|
required: true, |
|
|
|
|
message: '请选择紧急度', |
|
|
|
|
trigger: 'change', |
|
|
|
|
trigger: ['change', 'blur'], |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
@ -1286,12 +1286,17 @@ const details = reactive<any>({
|
|
|
|
|
listNode: '', |
|
|
|
|
// 页面请求的问题 |
|
|
|
|
form: {}, |
|
|
|
|
/** 修改 -- goodsList里的id, 区别:新增 / 删除 */ |
|
|
|
|
goodsListIds: [], |
|
|
|
|
/** 提交数据 */ |
|
|
|
|
submitData: {}, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const info = ref<any>({}); |
|
|
|
|
|
|
|
|
|
const { query, data, drawerShow, page, loadingObj } = toRefs(details); |
|
|
|
|
|
|
|
|
|
// 组件实例 |
|
|
|
|
const consignee = ref(); |
|
|
|
|
const consigneeName = ref(); |
|
|
|
|
const consigneeMobile = ref(); |
|
|
|
@ -1348,21 +1353,27 @@ const onLoad = async (idsArr = []) => {
|
|
|
|
|
for (let key in data) { |
|
|
|
|
if (data[key]) details.query[key] = data[key]; |
|
|
|
|
} |
|
|
|
|
info.value.maxNum = 0; |
|
|
|
|
|
|
|
|
|
details.goodsList = data.goodsList.map(val => { |
|
|
|
|
for (let valKey in val) { |
|
|
|
|
console.log('val[valKey] :>> ', val[valKey]); |
|
|
|
|
const _item = Number(val[valKey]); |
|
|
|
|
// 判断是否为数字并将字符串的数字转为数字 |
|
|
|
|
if (isNumer(_item)) { |
|
|
|
|
val[valKey] = _item; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
val.chargeType = val.chargeType || 1; |
|
|
|
|
|
|
|
|
|
// 计算运费小计 |
|
|
|
|
handleComputed(val); |
|
|
|
|
|
|
|
|
|
// 计算件数最大值 |
|
|
|
|
info.value.maxNum = 0; |
|
|
|
|
info.value.maxNum += val.num; |
|
|
|
|
|
|
|
|
|
// val.subtotalFreight = |
|
|
|
|
console.log('val :>> ', val); |
|
|
|
|
return val; |
|
|
|
|
}); |
|
|
|
@ -1410,29 +1421,32 @@ const initPageInfo = async () => {
|
|
|
|
|
}, |
|
|
|
|
]; |
|
|
|
|
else { |
|
|
|
|
console.log('111 :>> ', 111); |
|
|
|
|
info.value.maxNum = 0; |
|
|
|
|
details.goodsListIds = []; |
|
|
|
|
details.goodsList = data.warehouseWaybill.detailList.map(val => { |
|
|
|
|
for (let valKey in val) { |
|
|
|
|
const _item = Number(val[valKey]); |
|
|
|
|
// 判断是否为数字并将字符串的数字转为数字 |
|
|
|
|
if (isNumer(_item)) { |
|
|
|
|
val[valKey] = _item; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
val.num = Number(val.num); |
|
|
|
|
val.volume = Number(val.volume); |
|
|
|
|
val.weight = Number(val.weight); |
|
|
|
|
val.price = Number(val.price); |
|
|
|
|
val.subtotalFreight = Number(val.subtotalFreight); |
|
|
|
|
|
|
|
|
|
details.goodsListIds.push(val.id); |
|
|
|
|
val.goodsName = val.productName; |
|
|
|
|
|
|
|
|
|
// 计算运费小计 |
|
|
|
|
handleComputed(val); |
|
|
|
|
if (!val.subtotalFreight) handleComputed(val); |
|
|
|
|
|
|
|
|
|
// 计算件数最大值 |
|
|
|
|
info.value.maxNum = 0; |
|
|
|
|
info.value.maxNum += val.num; |
|
|
|
|
console.log('val :>> ', val); |
|
|
|
|
return val; |
|
|
|
|
}); |
|
|
|
|
console.log('details.goodsListIds :>> ', details.goodsListIds); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// initPageInfo(); |
|
|
|
|
|
|
|
|
|
/** 新增货物 */ |
|
|
|
|
const handleAdd = () => { |
|
|
|
|
if (info.value.maxNum <= details.totalObj.totalCount) { |
|
|
|
@ -1716,7 +1730,8 @@ const handleChooseConsigner = (column, prop, order) => {
|
|
|
|
|
/** 返回上一个页面 */ |
|
|
|
|
function back() { |
|
|
|
|
useStores.commit('DEL_TAG_CURRENT'); |
|
|
|
|
$router.back('-1'); |
|
|
|
|
if (details.pageInfo.backPath) return $router.push(details.pageInfo.backPath); |
|
|
|
|
$router.back(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** 重置数据 */ |
|
|
|
@ -1745,6 +1760,40 @@ const handleRefresh = () => {
|
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 检测支付金额 */ |
|
|
|
|
const handleDetectionPayWay = () => { |
|
|
|
|
const minNum = 0; |
|
|
|
|
const payType = Number(details.query.payWay); |
|
|
|
|
let content = ''; |
|
|
|
|
|
|
|
|
|
switch (payType) { |
|
|
|
|
// 现付 |
|
|
|
|
case 1: |
|
|
|
|
if (Number(details.query.xianPay) <= minNum) content = '请输入大于0的现付金额'; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
// 到付 |
|
|
|
|
case 2: |
|
|
|
|
if (Number(details.query.daoPay) <= minNum) content = '请输入大于0的到付金额'; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
// 月结 |
|
|
|
|
case 3: |
|
|
|
|
if (Number(details.query.yuePay) <= minNum) content = '请输入大于0的月结金额'; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
// 回付 |
|
|
|
|
case 4: |
|
|
|
|
if (Number(details.query.huiPay) <= minNum) content = '请输入大于0的回付金额'; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
default: |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return content; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 提交 */ |
|
|
|
|
const handleSubmit = (formEl: FormInstance | undefined) => { |
|
|
|
|
if (!formEl) return; |
|
|
|
@ -1794,19 +1843,62 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
|
|
|
|
|
).label; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
submitData.addList = submitData.goodsList; |
|
|
|
|
submitData.removeList = []; |
|
|
|
|
let numFlag = false; |
|
|
|
|
|
|
|
|
|
for (const iterator of submitData.goodsList) { |
|
|
|
|
if (iterator.subtotalFreight <= 0 || !iterator.subtotalFreight) { |
|
|
|
|
numFlag = true; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
delete submitData.goodsList; |
|
|
|
|
if (numFlag) return ElMessage.warning('小计费用存在异常'); |
|
|
|
|
|
|
|
|
|
const _content = handleDetectionPayWay(); |
|
|
|
|
if (_content) return ElMessage.warning(_content); |
|
|
|
|
submitData.goodsName = submitData.waybillDetailList.map(val => val.goodsName).join(','); |
|
|
|
|
submitData.waybillType = 1; |
|
|
|
|
if (typeof submitData.receipt === 'object') |
|
|
|
|
submitData.receipt = submitData.receipt.join(','); |
|
|
|
|
console.log('submitData :>> ', submitData); |
|
|
|
|
const res = await postOpenOrderOpenWaybill(submitData); |
|
|
|
|
const { code } = res.data; |
|
|
|
|
|
|
|
|
|
let res: any = {}; |
|
|
|
|
// 新增提交 |
|
|
|
|
if (details.pageInfo.type !== 'edit') { |
|
|
|
|
submitData.addList = submitData.goodsList; |
|
|
|
|
submitData.removeList = []; |
|
|
|
|
|
|
|
|
|
delete submitData.goodsList; |
|
|
|
|
|
|
|
|
|
submitData.waybillType = 1; |
|
|
|
|
if (typeof submitData.receipt === 'object') |
|
|
|
|
submitData.receipt = submitData.receipt.join(','); |
|
|
|
|
console.log('submitData :>> ', submitData); |
|
|
|
|
|
|
|
|
|
// 记录提交参数 |
|
|
|
|
details.submitData = submitData; |
|
|
|
|
|
|
|
|
|
res = await postOpenOrderOpenWaybill(submitData); |
|
|
|
|
} else { |
|
|
|
|
for (let iterator of submitData.goodsList) { |
|
|
|
|
// 查看每一项是否存在Id |
|
|
|
|
if (iterator.id) { |
|
|
|
|
// 存在则证明为老数据 |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
submitData.addList = submitData.goodsList; |
|
|
|
|
submitData.removeList = []; |
|
|
|
|
|
|
|
|
|
delete submitData.goodsList; |
|
|
|
|
|
|
|
|
|
submitData.waybillType = 1; |
|
|
|
|
if (typeof submitData.receipt === 'object') |
|
|
|
|
submitData.receipt = submitData.receipt.join(','); |
|
|
|
|
console.log('submitData :>> ', submitData); |
|
|
|
|
|
|
|
|
|
// 记录提交参数 |
|
|
|
|
details.submitData = submitData; |
|
|
|
|
} |
|
|
|
|
const { code, msg } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
if (msg) ElMessage.success(msg); |
|
|
|
|
back(); |
|
|
|
|
console.log('res :>> ', res); |
|
|
|
|
} catch (error) { |
|
|
|
|