|
|
|
@ -130,7 +130,7 @@
|
|
|
|
|
<el-row> |
|
|
|
|
<el-form-item label="发货单位:" prop="shipper"> |
|
|
|
|
<SelectBox |
|
|
|
|
:input="handleFindClientInfo(query.shipper, 'shipper')" |
|
|
|
|
:input="handleFindClientInfo('shipper')" |
|
|
|
|
v-model="query.shipper" |
|
|
|
|
placeholder="发货单位" |
|
|
|
|
ref="shipper" |
|
|
|
@ -151,7 +151,7 @@
|
|
|
|
|
|
|
|
|
|
<el-form-item label="发货人:" prop="shipperName"> |
|
|
|
|
<SelectBox |
|
|
|
|
:input="handleFindClientInfo(query.shipper, 'shipper')" |
|
|
|
|
:input="handleFindClientInfo('shipper')" |
|
|
|
|
v-model="query.shipperName" |
|
|
|
|
placeholder="发货人" |
|
|
|
|
ref="shipperName" |
|
|
|
@ -174,7 +174,7 @@
|
|
|
|
|
<el-row> |
|
|
|
|
<el-form-item label="联系电话:" prop="shipperMobile"> |
|
|
|
|
<SelectBox |
|
|
|
|
:input="handleFindClientInfo(query.shipper, 'shipper')" |
|
|
|
|
:input="handleFindClientInfo('shipper')" |
|
|
|
|
v-model="query.shipperMobile" |
|
|
|
|
placeholder="联系电话" |
|
|
|
|
ref="shipperMobile" |
|
|
|
@ -207,7 +207,7 @@
|
|
|
|
|
<el-row> |
|
|
|
|
<el-form-item label="发货单位:" prop="consignee"> |
|
|
|
|
<SelectBox |
|
|
|
|
:input="handleFindClientInfo(query.consignee, 'consignee')" |
|
|
|
|
:input="handleFindClientInfo('consignee')" |
|
|
|
|
v-model="query.consignee" |
|
|
|
|
placeholder="收货人" |
|
|
|
|
ref="consignee" |
|
|
|
@ -228,7 +228,7 @@
|
|
|
|
|
|
|
|
|
|
<el-form-item label="收货人:" prop="consigneeName"> |
|
|
|
|
<SelectBox |
|
|
|
|
:input="handleFindClientInfo(query.consignee, 'consignee')" |
|
|
|
|
:input="handleFindClientInfo('consignee')" |
|
|
|
|
v-model="query.consigneeName" |
|
|
|
|
placeholder="收货人" |
|
|
|
|
ref="consigneeName" |
|
|
|
@ -251,7 +251,7 @@
|
|
|
|
|
<el-row> |
|
|
|
|
<el-form-item label="联系电话:" prop="consigneeMobile"> |
|
|
|
|
<SelectBox |
|
|
|
|
:input="handleFindClientInfo(query.consignee, 'consignee')" |
|
|
|
|
:input="handleFindClientInfo('consignee')" |
|
|
|
|
v-model="query.consigneeMobile" |
|
|
|
|
placeholder="联系电话" |
|
|
|
|
ref="consigneeMobile" |
|
|
|
@ -810,6 +810,8 @@ import {
|
|
|
|
|
postOpenOrderOpenWaybill, |
|
|
|
|
getOpenOrderAdvanceFindWarehouseList, |
|
|
|
|
postFindWaybillDetail, |
|
|
|
|
postUpdateWaybill, |
|
|
|
|
postUpdateWaybillVerify, |
|
|
|
|
} from '@/api/distribution/CreateOrder.js'; |
|
|
|
|
|
|
|
|
|
// 获取vue实例 |
|
|
|
@ -1286,8 +1288,8 @@ const details = reactive<any>({
|
|
|
|
|
listNode: '', |
|
|
|
|
// 页面请求的问题 |
|
|
|
|
form: {}, |
|
|
|
|
/** 修改 -- goodsList里的id, 区别:新增 / 删除 */ |
|
|
|
|
goodsListIds: [], |
|
|
|
|
/** 修改 -- 深拷贝goodsList, 区别:新增 / 删除 / 修改 */ |
|
|
|
|
deepCloneGoodsList: [], |
|
|
|
|
/** 提交数据 */ |
|
|
|
|
submitData: {}, |
|
|
|
|
}); |
|
|
|
@ -1423,7 +1425,7 @@ const initPageInfo = async () => {
|
|
|
|
|
else { |
|
|
|
|
console.log('111 :>> ', 111); |
|
|
|
|
info.value.maxNum = 0; |
|
|
|
|
details.goodsListIds = []; |
|
|
|
|
details.deepCloneGoodsList = []; |
|
|
|
|
details.goodsList = data.warehouseWaybill.detailList.map(val => { |
|
|
|
|
val.num = Number(val.num); |
|
|
|
|
val.volume = Number(val.volume); |
|
|
|
@ -1431,7 +1433,6 @@ const initPageInfo = async () => {
|
|
|
|
|
val.price = Number(val.price); |
|
|
|
|
val.subtotalFreight = Number(val.subtotalFreight); |
|
|
|
|
|
|
|
|
|
details.goodsListIds.push(val.id); |
|
|
|
|
val.goodsName = val.productName; |
|
|
|
|
|
|
|
|
|
// 计算运费小计 |
|
|
|
@ -1440,9 +1441,10 @@ const initPageInfo = async () => {
|
|
|
|
|
// 计算件数最大值 |
|
|
|
|
info.value.maxNum += val.num; |
|
|
|
|
console.log('val :>> ', val); |
|
|
|
|
details.deepCloneGoodsList.push({ ...val }); |
|
|
|
|
return val; |
|
|
|
|
}); |
|
|
|
|
console.log('details.goodsListIds :>> ', details.goodsListIds); |
|
|
|
|
console.log('details.deepCloneGoodsList :>> ', details.deepCloneGoodsList); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
@ -1682,24 +1684,40 @@ const handleComputed = (row: any) => {
|
|
|
|
|
|
|
|
|
|
let _ant = null; |
|
|
|
|
/** 查询客户信息 */ |
|
|
|
|
const handleFindClientInfo = (value, type) => { |
|
|
|
|
const handleFindClientInfo = type => { |
|
|
|
|
if (_ant) clearTimeout(_ant); |
|
|
|
|
_ant = setTimeout(async () => { |
|
|
|
|
if (value) { |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.consignerLoading = true; |
|
|
|
|
const res = await postOpenOrderFindClientInfo({ clientName: value }); |
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
if (type === 'consignee') { |
|
|
|
|
details.consignerOptions = data || []; |
|
|
|
|
} else { |
|
|
|
|
details.shipperOptions = data || []; |
|
|
|
|
} |
|
|
|
|
} catch (error) { |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.consignerLoading = false; |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.consignerLoading = true; |
|
|
|
|
|
|
|
|
|
console.log('details.query :>> ', details.query); |
|
|
|
|
|
|
|
|
|
/** 发货人搜索信息 */ |
|
|
|
|
let shipperQuery = { |
|
|
|
|
clientName: details.query.shipper, |
|
|
|
|
linkMan: details.query.shipperName, |
|
|
|
|
linkPhone: details.query.shipperMobile, |
|
|
|
|
}; |
|
|
|
|
/** 寄货人搜索信息 */ |
|
|
|
|
let consignerQuery = { |
|
|
|
|
clientName: details.query.consignee, |
|
|
|
|
linkMan: details.query.consigneeName, |
|
|
|
|
linkPhone: details.query.consigneeMobile, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const submitData = type === 'consignee' ? consignerQuery : shipperQuery; |
|
|
|
|
|
|
|
|
|
const res = await postOpenOrderFindClientInfo(submitData); |
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
if (type === 'consignee') { |
|
|
|
|
details.consignerOptions = data || []; |
|
|
|
|
} else { |
|
|
|
|
details.shipperOptions = data || []; |
|
|
|
|
} |
|
|
|
|
} catch (error) { |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.consignerLoading = false; |
|
|
|
|
} |
|
|
|
|
clearTimeout(_ant); |
|
|
|
|
}, 1000); |
|
|
|
@ -1824,6 +1842,8 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
|
|
|
|
|
advanceIds: info.value.advanceIds, |
|
|
|
|
...details.totalObj, |
|
|
|
|
huilaiPay: 1, |
|
|
|
|
addList: [], |
|
|
|
|
removeList: [], |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const { destination } = submitData; |
|
|
|
@ -1845,7 +1865,7 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
|
|
|
|
|
|
|
|
|
|
let numFlag = false; |
|
|
|
|
|
|
|
|
|
for (const iterator of submitData.goodsList) { |
|
|
|
|
for (const iterator of details.goodsList) { |
|
|
|
|
if (iterator.subtotalFreight <= 0 || !iterator.subtotalFreight) { |
|
|
|
|
numFlag = true; |
|
|
|
|
break; |
|
|
|
@ -1876,15 +1896,37 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
|
|
|
|
|
|
|
|
|
|
res = await postOpenOrderOpenWaybill(submitData); |
|
|
|
|
} else { |
|
|
|
|
for (let iterator of submitData.goodsList) { |
|
|
|
|
// 查看每一项是否存在Id |
|
|
|
|
submitData.waybillId = details.pageInfo.id; |
|
|
|
|
|
|
|
|
|
const oldGoodsList = [...details.deepCloneGoodsList]; |
|
|
|
|
|
|
|
|
|
for (let iterator of details.goodsList) { |
|
|
|
|
// 查看每一项是否存在Id updateType: 1新增; 2修改 |
|
|
|
|
if (iterator.id) { |
|
|
|
|
// 存在则证明为老数据 |
|
|
|
|
|
|
|
|
|
// 根据存在的数据, 筛选被删除的数据 |
|
|
|
|
const _item = oldGoodsList.splice( |
|
|
|
|
oldGoodsList.findIndex(val => val.id === iterator.id), |
|
|
|
|
1 |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
// 检测是否被修改 |
|
|
|
|
let _flag = false; |
|
|
|
|
|
|
|
|
|
for (const key in iterator) { |
|
|
|
|
_flag = iterator[key] !== _item[key]; |
|
|
|
|
// 检测到不一致则退出循环 |
|
|
|
|
if (_flag) break; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (_flag) submitData.addList.push({ ...iterator, updateType: 2 }); |
|
|
|
|
} else { |
|
|
|
|
submitData.addList.push({ ...iterator, updateType: 1 }); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
submitData.addList = submitData.goodsList; |
|
|
|
|
submitData.removeList = []; |
|
|
|
|
submitData.removeList = oldGoodsList; |
|
|
|
|
|
|
|
|
|
delete submitData.goodsList; |
|
|
|
|
|
|
|
|
@ -1895,6 +1937,7 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
|
|
|
|
|
|
|
|
|
|
// 记录提交参数 |
|
|
|
|
details.submitData = submitData; |
|
|
|
|
res = await postUpdateWaybill(submitData); |
|
|
|
|
} |
|
|
|
|
const { code, msg } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|