Browse Source

干线开单新增价格带出

dev-xx
qb 1 year ago
parent
commit
28c145679a
  1. 46
      src/components/SelectBox/SelectBox.vue
  2. 338
      src/views/distribution/inventory/CreateOrder.vue
  3. 334
      src/views/waybill/CreateZeroOrder.vue

46
src/components/SelectBox/SelectBox.vue

@ -7,9 +7,20 @@
:placeholder="props.placeholder"
@blur="handleBlur"
@change="handleChange"
:clearable="props.clearable !== false"
></el-input>
<div class="selectContainer" v-if="isShowBox">
<div
class="selectContainer"
:style="
props.minWidth
? props.minWidth === true
? 'min-width:400px'
: 'min-width:' + props.minWidth
: ''
"
v-if="isShowBox"
>
<!-- <el-scrollbar>
<p v-for="item in 20" :key="item" class="scrollbar-demo-item">{{ item }}</p>
</el-scrollbar> -->
@ -28,16 +39,7 @@
<script setup lang="ts">
import SelectComponent from '@/components/SelectComponent/SelectComponent.vue';
import {
ref,
onMounted,
defineExpose,
onUnmounted,
defineProps,
defineEmits,
watch,
computed,
} from 'vue';
import { ref, onMounted, defineExpose, defineProps, defineEmits, computed } from 'vue';
import { debounce } from '@/utils/util.js';
const query = ref({ serviceNumber: '' });
const isShowBox = ref(false);
@ -46,13 +48,23 @@ const _bodyNode = ref<any>('');
const className = ref('');
const props = defineProps([
/** 双向绑定的值 */
'modelValue',
/** 输入框占位文本 */
'placeholder',
'className',
/** 失焦事件 */
'blur',
/** 输入事件 */
'input',
/** 改变事件 */
'change',
/** 聚焦事件 */
'focus',
/** 最小宽度 */
'minWidth',
/** 是否清空 : 默认true */
'clearable',
]);
const $emit = defineEmits(['update:modelValue']);
@ -89,17 +101,18 @@ const handleFocus = () => {
};
const handleBlur = () => {
console.log('3 :>> ', 3);
console.log('Blur');
props.blur && props.blur();
};
const handleChange = (value: any) => {
console.log('2 :>> ', 2);
console.log('Change');
props.change && props.change(value);
};
const handleInput = debounce(() => {
props.input && props.input();
isShowBox.value = true;
}, 500);
defineExpose({ handleShow, handleClose });
@ -117,7 +130,8 @@ defineExpose({ handleShow, handleClose });
box-sizing: border-box;
line-height: normal;
top: 120%;
left: 0;
left: 50%;
transform: translateX(-50%);
z-index: 999;
background: #fff;
border-radius: 3px;
@ -150,7 +164,7 @@ defineExpose({ handleShow, handleClose });
0% {
display: none;
opacity: 0;
transform: translateY(-100%);
transform: translate(-50%, -50%);
}
1% {
display: block;
@ -160,7 +174,7 @@ defineExpose({ handleShow, handleClose });
}
100% {
opacity: 1;
transform: translateY(0);
transform: translate(-50%, 0);
}
}

338
src/views/distribution/inventory/CreateOrder.vue

@ -69,6 +69,7 @@
:props="{
checkStrictly: true,
}"
@change="() => handleFindPrice()"
filterable
clearable
>
@ -88,7 +89,12 @@
remote
reserve-keyword
placeholder="目的仓"
@change="destinationWarehouseNameChange"
@change="
val => {
destinationWarehouseNameChange(val);
handleFindPrice();
}
"
:remote-method="remoteMethod"
:loading="details.loadingObj.loading"
>
@ -133,13 +139,18 @@
<div class="flex-c table-row-title">发货方</div>
<div>
<el-row>
<el-form-item label="发货单位:" prop="shipper">
<el-form-item
label="发货单位:"
prop="shipper"
:class="!query.shipperId ? 'is-error' : ''"
>
<SelectBox
:focus="handleCloseSelcet"
:input="() => handleFindClientInfo('shipper', 1)"
v-model="query.shipper"
placeholder="发货单位"
ref="shipper"
:minWidth="true"
>
<el-table
:data="details.shipperOptions"
@ -158,13 +169,14 @@
<el-form-item label="发货人:" prop="shipperName">
<SelectBox
:focus="handleCloseSelcet"
:input="() => handleFindClientInfo('shipper')"
:input="() => handleFindClientInfo('shipperName')"
v-model="query.shipperName"
placeholder="发货人"
ref="shipperName"
:minWidth="true"
>
<el-table
:data="details.shipperOptions"
:data="details.shipperNameOptions"
style="width: 100%"
@row-click="handleChooseShipper"
v-loading="details.loadingObj.consignerLoading"
@ -182,13 +194,14 @@
<el-form-item label="联系电话:" prop="shipperMobile">
<SelectBox
:focus="handleCloseSelcet"
:input="() => handleFindClientInfo('shipper')"
:input="() => handleFindClientInfo('shipperMobile')"
v-model="query.shipperMobile"
placeholder="联系电话"
ref="shipperMobile"
:minWidth="true"
>
<el-table
:data="details.shipperOptions"
:data="details.shipperMobileOptions"
style="width: 100%"
@row-click="handleChooseShipper"
v-loading="details.loadingObj.consignerLoading"
@ -217,18 +230,28 @@
<div class="flex-c table-row-title">收货方</div>
<div>
<el-row>
<el-form-item label="收货单位:" prop="consignee">
<el-form-item
label="收货单位:"
prop="consignee"
:class="!query.consigneeId ? 'is-error' : ''"
>
<SelectBox
:focus="handleCloseSelcet"
:input="() => handleFindClientInfo('consignee', 1)"
v-model="query.consignee"
placeholder="收货"
placeholder="收货单位"
ref="consignee"
:minWidth="true"
>
<el-table
:data="details.consignerOptions"
:data="details.consigneeOptions"
style="width: 100%"
@row-click="handleChooseConsigner"
@row-click="
(column, prop, order) => {
handleChooseConsigner(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"
>
<el-table-column prop="clientName" label="收货单位" width="130" />
@ -242,15 +265,21 @@
<el-form-item label="收货人:" prop="consigneeName">
<SelectBox
:focus="handleCloseSelcet"
:input="() => handleFindClientInfo('consignee')"
:input="() => handleFindClientInfo('consigneeName')"
v-model="query.consigneeName"
placeholder="收货人"
ref="consigneeName"
:minWidth="true"
>
<el-table
:data="details.consignerOptions"
:data="details.consigneeNameOptions"
style="width: 100%"
@row-click="handleChooseConsigner"
@row-click="
(column, prop, order) => {
handleChooseConsigner(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"
>
<el-table-column prop="clientName" label="收货单位" width="130" />
@ -266,15 +295,21 @@
<el-form-item label="联系电话:" prop="consigneeMobile">
<SelectBox
:focus="handleCloseSelcet"
:input="() => handleFindClientInfo('consignee')"
:input="() => handleFindClientInfo('consigneeMobile')"
v-model="query.consigneeMobile"
placeholder="联系电话"
ref="consigneeMobile"
:minWidth="true"
>
<el-table
:data="details.consignerOptions"
:data="details.consigneeMobileOptions"
style="width: 100%"
@row-click="handleChooseConsigner"
@row-click="
(column, prop, order) => {
handleChooseConsigner(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"
>
<el-table-column prop="clientName" label="收货单位" width="130" />
@ -346,6 +381,7 @@
</el-form-item>
</div>
<!-- 货物名称 -->
<el-form-item
label="货物名称:"
label-width="fit-content"
@ -355,7 +391,7 @@
<SelectBox
ref="goodsNameRef"
className="goodsName"
:input="() => debounce(handleFindGoods(item.goodsName, item), 1000)"
:input="() => debounce(handleFindGoods(item.goodsName, item, 1), 1000)"
:focus="handleCloseSelcet"
v-model="item.goodsName"
placeholder="货物名称"
@ -370,6 +406,7 @@
() => {
item.goodsName = val.goodsName;
item.goodsId = val.goodsId;
handleFindPrice(item);
handleCloseSelcet();
}
"
@ -1079,6 +1116,36 @@ const details = reactive<any>({
totalObj: {
/** 总件数 */
totalCount: computed(() => {
let _deliveryFee = 0;
let _warehouseManagementFee = 0;
let _storageFee = 0;
for (let index = 0; index < details.goodsList.length; index++) {
const element = details.goodsList[index];
_deliveryFee = computeNumber(
_deliveryFee,
'+',
computeNumber(element.deliveryFee || 0, '*', element.num || 0).result
).result;
_warehouseManagementFee = computeNumber(
_warehouseManagementFee,
'+',
computeNumber(element.warehouseManagementFee || 0, '*', element.num || 0).result
).result;
_storageFee = computeNumber(
_storageFee,
'+',
computeNumber(element.storageFee || 0, '*', element.num || 0).result
).result;
}
details.query.deliveryFee = _deliveryFee;
details.query.warehouseManagementFee = _warehouseManagementFee;
details.query.storageFee = _storageFee;
return details.goodsList.reduce((curr, item) => {
if (item.num) return curr + item.num;
return curr;
@ -1303,10 +1370,18 @@ const details = reactive<any>({
value: 6,
},
],
/** 收货方 */
consignerOptions: [],
/** 发货方 */
/** 收货方 -- 收货单位 */
consigneeOptions: [],
/** 收货方 -- 收货人 */
consigneeNameOptions: [],
/** 收货方 -- 收货电话 */
consigneeMobileOptions: [],
/** 发货方 -- 收货单位 */
shipperOptions: [],
/** 收货方 -- 收货人 */
shipperNameOptions: [],
/** 收货方 -- 收货电话 */
shipperMobileOptions: [],
/** 必填 */
rules: {
/** 发站仓名称 */
@ -1455,7 +1530,7 @@ const details = reactive<any>({
/** 单价 */
{ name: '运费', key: 'price' },
/** 送货费 */
{ name: '配送费', key: 'deliveryExpense' },
{ name: '配送费', key: 'deliveryFee' },
// { name: '', key: 'pickupFee' },
/** 仓库管理费 */
{ name: '仓库管理费', key: 'warehouseManagementFee' },
@ -1488,7 +1563,6 @@ const goodsNameRef = ref();
//
const totalCost = computed(() => {
// let _num = 0;
const _num = computeNumber(0, '+', details.totalObj.totalFreight || 0)
.next('+', details.query.deliveryFee || 0)
.next('+', details.query.pickupFee || 0)
@ -1622,19 +1696,6 @@ const onLoad = async (idsArr = []) => {
val.chargeType = val.chargeType || 1;
console.log('val :>> ', val);
// val.pr
for (let index = 0; index < val.arrPirce.length; index++) {
const element = val.arrPirce[index];
// if (element.typeName !== '线') continue;
if (element.itemName === '运费')
val.price = isNumber(element.cost) ? Number(element.cost) : 0;
console.log('element :>> ', element);
}
val.goodsListOptions = [];
//
handleComputed(val);
@ -1652,10 +1713,6 @@ const onLoad = async (idsArr = []) => {
details.query.payWay = data.payWayList.find(val => val.dictValue === '到付').dictKey || '2';
}
details.query.transportType = details.query.transportType || '1';
// details.goodsCode = data['totalNum'];
console.log('details.query', details.query);
console.log('info.value :>> ', info.value);
// // instance.proxy.$forceUpdate();
} catch (error) {
console.log('error :>> ', error);
} finally {
@ -1752,6 +1809,38 @@ const initPageInfo = async (idsArr = []) => {
});
}
}
const { shipper, shipperName, shipperMobile, consignee, consigneeName, consigneeMobile } =
details.query;
for (let index = 0; index < details.goodsList.length; index++) {
const element = details.goodsList[index];
const { arrPrice } = element;
if (arrPrice && arrPrice.length > 0) {
//
for (let i = 0; i < details.priceArr.length; i++) {
const value = details.priceArr[i];
element[value.key] = 0;
for (let index = 0; index < arrPrice.length; index++) {
const item = arrPrice[index];
if (item.itemName === value.name)
element[value.key] = isNumber(item.cost) ? Number(item.cost) : 0;
}
}
}
handleFindGoods(element.goodsName, element);
}
if (shipper) handleFindClientInfo('shipper');
if (shipperName) handleFindClientInfo('shipperName');
if (shipperMobile) handleFindClientInfo('shipperMobile');
if (consignee) handleFindClientInfo('consignee');
if (consigneeName) handleFindClientInfo('consigneeName');
if (consigneeMobile) handleFindClientInfo('consigneeMobile');
} catch (error) {
console.log('error :>> ', error);
} finally {
@ -2029,31 +2118,22 @@ const handleFindClientInfo = async (type, isClearId = 0) => {
type === 'consignee' ? (details.query.consigneeId = '') : (details.query.shipperId = '');
}
if (!details.query[type]) return (details[type + 'Options'] = []);
details.loadingObj.consignerLoading = true;
/** 发货人搜索信息 */
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 nameReg = new RegExp('Name');
const MobileReg = new RegExp('Mobile');
const submitData = type === 'consignee' ? consignerQuery : shipperQuery;
const submitData: any = {};
if (nameReg.test(type)) submitData.linkMan = details.query[type];
else if (MobileReg.test(type)) submitData.linkPhone = details.query[type];
else submitData.clientName = details.query[type];
const res = await postOpenOrderFindClientInfo(submitData);
const { code, data } = res.data;
if (code !== 200) return;
if (type === 'consignee') {
details.consignerOptions = data || [];
} else {
details.shipperOptions = data || [];
}
details[type + 'Options'] = data || [];
} catch (error) {
console.log('error :>> ', error);
} finally {
@ -2070,6 +2150,9 @@ const handleChooseShipper = (column, prop, order) => {
details.query.shipperName = column.linkMan;
details.query.shipperMobile = column.linkPhone;
handleFindClientInfo('shipper');
handleFindClientInfo('shipperName');
handleFindClientInfo('shipperMobile');
handleCloseSelcet();
};
@ -2081,6 +2164,10 @@ const handleChooseConsigner = (column, prop, order) => {
details.query.consigneeAddress = column.linkAddress;
details.query.consigneeName = column.linkMan;
details.query.consigneeMobile = column.linkPhone;
handleFindClientInfo('consignee');
handleFindClientInfo('consigneeName');
handleFindClientInfo('consigneeMobile');
handleCloseSelcet();
};
@ -2385,12 +2472,10 @@ const handleRepetition = () => {
};
/** 查询货物 */
const handleFindGoods = async (goodsName, item) => {
console.log('goodsNameRef :>> ', goodsNameRef);
console.log('item :>> ', item);
item.goodsId = '';
const handleFindGoods = async (goodsName, item, isClearId = 0) => {
if (isClearId) item.goodsId = '';
if (!goodsName) return;
if (!goodsName) return (item.goodsListOptions = []);
try {
item.loading = true;
@ -2406,6 +2491,125 @@ const handleFindGoods = async (goodsName, item) => {
}
};
/** 获取价格 */
const handleFindPrice = async (condition?: any) => {
try {
// item.loading = true;
const { destination } = details.query;
if (destination.length <= 1) return;
if (!details.query.consigneeId) return;
if (!details.query.departureWarehouseId) return;
if (!details.query.destinationWarehouseId) return;
const submitData = {
consigneeId: details.query.consigneeId,
departureWarehouseId: details.query.departureWarehouseId,
destinationWarehouseId: details.query.destinationWarehouseId,
destinationCode: '',
goodsIds: [] as any[],
};
console.log(submitData);
// id
if (condition) {
const { goodsId } = condition;
if (!goodsId) return;
submitData.goodsIds = [goodsId];
} else {
const _goodsIdsArr = [];
console.log('details.goodsList', details.goodsList);
// goodsId
for (let index = 0; index < details.goodsList.length; index++) {
const { goodsId } = details.goodsList[index];
if (goodsId) _goodsIdsArr.push(goodsId);
}
console.log('_goodsIdsArr', _goodsIdsArr);
if (_goodsIdsArr.length === 0) return;
submitData.goodsIds = _goodsIdsArr;
}
//
const _findeLocation = details.regionOptione
.find(val => val.value === destination[0])
.children.find(val => val.value === destination[1]);
let _item: any = {};
if (destination.length === 2) {
_item = _findeLocation;
} else {
_item = _findeLocation.children.find(val => val.value === destination[2]);
}
submitData.destinationCode = _item.value;
const res = await postFindArrPrice(submitData);
// const { code, data } = res.data;
const { code, data } = res.data;
console.log('data :>> ', data);
if (code !== 200 || data.length === 0) return;
if (condition) {
//
for (let i = 0; i < details.priceArr.length; i++) {
const value = details.priceArr[i];
condition[value.key] = 0;
for (let index = 0; index < data[0].arrPrice.length; index++) {
const element = data[0].arrPrice[index];
if (element.itemName === value.name)
condition[value.key] = isNumber(element.cost) ? Number(element.cost) : 0;
}
}
console.log('condition :>> ', condition);
handleComputed(condition);
} else {
for (let idx = 0; idx < details.goodsList.length; idx++) {
const val = details.goodsList[idx];
if (!val.goodsId) continue;
let _data = null;
for (let index = 0; index < data.length; index++) {
const element = data[index];
if (element.goodsId === val.goodsId) {
_data = element;
break;
}
}
//
for (let i = 0; i < details.priceArr.length; i++) {
const value = details.priceArr[i];
val[value.key] = 0;
for (let index = 0; index < _data.arrPrice.length; index++) {
const element = _data.arrPrice[index];
if (element.itemName === value.name)
val[value.key] = isNumber(element.cost) ? Number(element.cost) : 0;
}
console.log('val :>> ', val);
}
handleComputed(val);
}
}
} catch (error) {
console.log('error :>> ', error);
} finally {
// item.loading = false;
}
};
watch(
$route,
async () => {
@ -2648,4 +2852,14 @@ $borderColor: #172e60;
background: #f5f7fa;
}
}
.is-error {
:deep(.el-input__wrapper) {
border-color: #f00 !important;
}
:deep(.el-input__inner) {
color: #f00 !important;
}
}
</style>

334
src/views/waybill/CreateZeroOrder.vue

@ -43,6 +43,7 @@
:props="{
checkStrictly: true,
}"
@change="() => handleFindPrice()"
filterable
clearable
>
@ -62,7 +63,12 @@
remote
reserve-keyword
placeholder="目的仓"
@change="destinationWarehouseNameChange"
@change="
val => {
destinationWarehouseNameChange(val);
handleFindPrice();
}
"
:remote-method="remoteMethod"
:loading="details.loadingObj.loading"
>
@ -86,13 +92,18 @@
<div class="flex-c table-row-title">发货方</div>
<div>
<el-row>
<el-form-item label="发货单位:" prop="shipper">
<el-form-item
label="发货单位:"
prop="shipper"
:class="!query.shipperId ? 'is-error' : ''"
>
<SelectBox
:focus="handleCloseSelcet"
:input="() => handleFindClientInfo('shipper', 1)"
v-model="query.shipper"
placeholder="发货单位"
ref="shipper"
:minWidth="true"
>
<el-table
:data="details.shipperOptions"
@ -111,13 +122,14 @@
<el-form-item label="发货人:" prop="shipperName">
<SelectBox
:focus="handleCloseSelcet"
:input="() => handleFindClientInfo('shipper')"
:input="() => handleFindClientInfo('shipperName')"
v-model="query.shipperName"
placeholder="发货人"
ref="shipperName"
:minWidth="true"
>
<el-table
:data="details.shipperOptions"
:data="details.shipperNameOptions"
style="width: 100%"
@row-click="handleChooseShipper"
v-loading="details.loadingObj.consignerLoading"
@ -135,13 +147,14 @@
<el-form-item label="联系电话:" prop="shipperMobile">
<SelectBox
:focus="handleCloseSelcet"
:input="() => handleFindClientInfo('shipper')"
:input="() => handleFindClientInfo('shipperMobile')"
v-model="query.shipperMobile"
placeholder="联系电话"
ref="shipperMobile"
:minWidth="true"
>
<el-table
:data="details.shipperOptions"
:data="details.shipperMobileOptions"
style="width: 100%"
@row-click="handleChooseShipper"
v-loading="details.loadingObj.consignerLoading"
@ -166,18 +179,28 @@
<div class="flex-c table-row-title">收货方</div>
<div>
<el-row>
<el-form-item label="发货单位:" prop="consignee">
<el-form-item
label="收货单位:"
prop="consignee"
:class="!query.consigneeId ? 'is-error' : ''"
>
<SelectBox
:focus="handleCloseSelcet"
:input="() => handleFindClientInfo('consignee', 1)"
v-model="query.consignee"
placeholder="收货"
placeholder="收货单位"
ref="consignee"
:minWidth="true"
>
<el-table
:data="details.consignerOptions"
:data="details.consigneeOptions"
style="width: 100%"
@row-click="handleChooseConsigner"
@row-click="
(column, prop, order) => {
handleChooseConsigner(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"
>
<el-table-column prop="clientName" label="发货单位" width="130" />
@ -191,15 +214,21 @@
<el-form-item label="收货人:" prop="consigneeName">
<SelectBox
:focus="handleCloseSelcet"
:input="() => handleFindClientInfo('consignee')"
:input="() => handleFindClientInfo('consigneeName')"
v-model="query.consigneeName"
placeholder="收货人"
ref="consigneeName"
:minWidth="true"
>
<el-table
:data="details.consignerOptions"
:data="details.consigneeNameOptions"
style="width: 100%"
@row-click="handleChooseConsigner"
@@row-click="
(column, prop, order) => {
handleChooseConsigner(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"
>
<el-table-column prop="clientName" label="发货单位" width="130" />
@ -215,15 +244,21 @@
<el-form-item label="联系电话:" prop="consigneeMobile">
<SelectBox
:focus="handleCloseSelcet"
:input="() => handleFindClientInfo('consignee')"
:input="() => handleFindClientInfo('consigneeMobile')"
v-model="query.consigneeMobile"
placeholder="联系电话"
ref="consigneeMobile"
:minWidth="true"
>
<el-table
:data="details.consignerOptions"
:data="details.consigneeMobileOptions"
style="width: 100%"
@row-click="handleChooseConsigner"
@row-click="
(column, prop, order) => {
handleChooseConsigner(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"
>
<el-table-column prop="clientName" label="发货单位" width="130" />
@ -291,6 +326,7 @@
</el-form-item>
</div>
<!-- 货物名称 -->
<el-form-item
label="货物名称:"
label-width="fit-content"
@ -300,7 +336,7 @@
<SelectBox
ref="goodsNameRef"
className="goodsName"
:input="() => debounce(handleFindGoods(item.goodsName, item), 1000)"
:input="() => debounce(handleFindGoods(item.goodsName, item, 1), 1000)"
:focus="handleCloseSelcet"
v-model="item.goodsName"
placeholder="货物名称"
@ -315,6 +351,7 @@
() => {
item.goodsName = val.goodsName;
item.goodsId = val.goodsId;
handleFindPrice(item);
handleCloseSelcet();
}
"
@ -825,7 +862,7 @@ import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls, computeNumber } from '@/utils/util';
import { downloadXls, computeNumber, debounce } from '@/utils/util';
import { getLazyTreeAll } from '@/api/base/region';
import { ElMessage, ElMessageBox } from 'element-plus';
import type { FormInstance, FormRules } from 'element-plus';
@ -842,6 +879,7 @@ import {
postUpdateWaybillVerify,
postUpdateWaybill,
postFindCategoryInfo,
postFindArrPrice,
} from '@/api/distribution/CreateOrder.js';
import { isNumber, getObjType } from '@/utils/util.js';
import { deepClone } from 'avue-plugin-ueditor/packages/ueditor/src/upload/util';
@ -967,6 +1005,36 @@ const details = reactive<any>({
totalObj: {
/** 总件数 */
totalCount: computed(() => {
let _deliveryFee = 0;
let _warehouseManagementFee = 0;
let _storageFee = 0;
for (let index = 0; index < details.goodsList.length; index++) {
const element = details.goodsList[index];
_deliveryFee = computeNumber(
_deliveryFee,
'+',
computeNumber(element.deliveryFee || 0, '*', element.num || 0).result
).result;
_warehouseManagementFee = computeNumber(
_warehouseManagementFee,
'+',
computeNumber(element.warehouseManagementFee || 0, '*', element.num || 0).result
).result;
_storageFee = computeNumber(
_storageFee,
'+',
computeNumber(element.storageFee || 0, '*', element.num || 0).result
).result;
}
details.query.deliveryFee = _deliveryFee;
details.query.warehouseManagementFee = _warehouseManagementFee;
details.query.storageFee = _storageFee;
return details.goodsList.reduce((curr, item) => {
if (item.num) return curr + item.num;
return curr;
@ -1193,10 +1261,18 @@ const details = reactive<any>({
value: 6,
},
],
/** 收货方 */
consignerOptions: [],
/** 发货方 */
/** 收货方 -- 收货单位 */
consigneeOptions: [],
/** 收货方 -- 收货人 */
consigneeNameOptions: [],
/** 收货方 -- 收货电话 */
consigneeMobileOptions: [],
/** 发货方 -- 收货单位 */
shipperOptions: [],
/** 收货方 -- 收货人 */
shipperNameOptions: [],
/** 收货方 -- 收货电话 */
shipperMobileOptions: [],
/** 必填 */
rules: {
/** 发站仓名称 */
@ -1347,6 +1423,19 @@ const details = reactive<any>({
deepCloneGoodsList: [],
/** 提交数据 */
submitData: {},
priceArr: [
/** 单价 */
{ name: '运费', key: 'price' },
/** 送货费 */
{ name: '配送费', key: 'deliveryFee' },
// { name: '', key: 'pickupFee' },
/** 仓库管理费 */
{ name: '仓库管理费', key: 'warehouseManagementFee' },
/** 仓储费 */
{ name: '仓库存储费', key: 'storageFee' },
/** 装卸费 */
// { name: '', key: 'storageFee' },
],
});
const { query, data, drawerShow, loadingObj } = toRefs(details);
@ -1529,6 +1618,35 @@ const initPageInfo = async () => {
});
}
}
for (let index = 0; index < details.goodsList.length; index++) {
const element = details.goodsList[index];
const { arrPrice } = element;
if (arrPrice && arrPrice.length > 0) {
//
for (let i = 0; i < details.priceArr.length; i++) {
const value = details.priceArr[i];
element[value.key] = 0;
for (let index = 0; index < arrPrice.length; index++) {
const item = arrPrice[index];
if (item.itemName === value.name)
element[value.key] = isNumber(item.cost) ? Number(item.cost) : 0;
}
}
}
handleFindGoods(element.goodsName, element);
}
if (shipper) handleFindClientInfo('shipper');
if (shipperName) handleFindClientInfo('shipperName');
if (shipperMobile) handleFindClientInfo('shipperMobile');
if (consignee) handleFindClientInfo('consignee');
if (consigneeName) handleFindClientInfo('consigneeName');
if (consigneeMobile) handleFindClientInfo('consigneeMobile');
} catch (error) {
console.log('error :>> ', error);
} finally {
@ -1670,12 +1788,10 @@ const destinationWarehouseNameChange = val => {
};
/** 查询货物 */
const handleFindGoods = async (goodsName, item) => {
console.log('goodsNameRef :>> ', goodsNameRef);
console.log('item :>> ', item);
item.goodsId = '';
const handleFindGoods = async (goodsName, item, isClearId = 0) => {
if (isClearId) item.goodsId = '';
if (!goodsName) return;
if (!goodsName) return (item.goodsListOptions = []);
try {
item.loading = true;
@ -1694,8 +1810,6 @@ const handleFindGoods = async (goodsName, item) => {
/** 计算行合计 */
const handleComputed = (row: any) => {
details.query.goodsCode = '-' + details.totalObj.totalCount;
console.log('details.totalObj.totalCount :>> ', details.totalObj.totalCount);
if (!row.price) return;
if (row.chargeType === 1) row.subtotalFreight = computeNumber(row.num, '*', row.price).result;
else if (row.chargeType === 2)
row.subtotalFreight = computeNumber(row.volume, '*', row.price).result;
@ -1711,31 +1825,22 @@ const handleFindClientInfo = async (type, isClearId = 0) => {
type === 'consignee' ? (details.query.consigneeId = '') : (details.query.shipperId = '');
}
if (!details.query[type]) return (details[type + 'Options'] = []);
details.loadingObj.consignerLoading = true;
/** 发货人搜索信息 */
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 nameReg = new RegExp('Name');
const MobileReg = new RegExp('Mobile');
const submitData = type === 'consignee' ? consignerQuery : shipperQuery;
const submitData: any = {};
if (nameReg.test(type)) submitData.linkMan = details.query[type];
else if (MobileReg.test(type)) submitData.linkPhone = details.query[type];
else submitData.clientName = details.query[type];
const res = await postOpenOrderFindClientInfo(submitData);
const { code, data } = res.data;
if (code !== 200) return;
if (type === 'consignee') {
details.consignerOptions = data || [];
} else {
details.shipperOptions = data || [];
}
details[type + 'Options'] = data || [];
} catch (error) {
console.log('error :>> ', error);
} finally {
@ -1751,6 +1856,10 @@ const handleChooseShipper = (column, prop, order) => {
details.query.shipperAddress = column.linkAddress;
details.query.shipperName = column.linkMan;
details.query.shipperMobile = column.linkPhone;
handleFindClientInfo('shipper');
handleFindClientInfo('shipperName');
handleFindClientInfo('shipperMobile');
handleCloseSelcet();
};
@ -1762,6 +1871,10 @@ const handleChooseConsigner = (column, prop, order) => {
details.query.consigneeAddress = column.linkAddress;
details.query.consigneeName = column.linkMan;
details.query.consigneeMobile = column.linkPhone;
handleFindClientInfo('consignee');
handleFindClientInfo('consigneeName');
handleFindClientInfo('consigneeMobile');
handleCloseSelcet();
};
@ -2026,6 +2139,125 @@ const handleRepetition = () => {
resetForm(ruleFormRef.value);
};
/** 获取价格 */
const handleFindPrice = async (condition?: any) => {
try {
// item.loading = true;
const { destination } = details.query;
if (destination.length <= 1) return;
if (!details.query.consigneeId) return;
if (!details.query.departureWarehouseId) return;
if (!details.query.destinationWarehouseId) return;
const submitData = {
consigneeId: details.query.consigneeId,
departureWarehouseId: details.query.departureWarehouseId,
destinationWarehouseId: details.query.destinationWarehouseId,
destinationCode: '',
goodsIds: [] as any[],
};
console.log(submitData);
// id
if (condition) {
const { goodsId } = condition;
if (!goodsId) return;
submitData.goodsIds = [goodsId];
} else {
const _goodsIdsArr = [];
console.log('details.goodsList', details.goodsList);
// goodsId
for (let index = 0; index < details.goodsList.length; index++) {
const { goodsId } = details.goodsList[index];
if (goodsId) _goodsIdsArr.push(goodsId);
}
console.log('_goodsIdsArr', _goodsIdsArr);
if (_goodsIdsArr.length === 0) return;
submitData.goodsIds = _goodsIdsArr;
}
//
const _findeLocation = details.regionOptione
.find(val => val.value === destination[0])
.children.find(val => val.value === destination[1]);
let _item: any = {};
if (destination.length === 2) {
_item = _findeLocation;
} else {
_item = _findeLocation.children.find(val => val.value === destination[2]);
}
submitData.destinationCode = _item.value;
const res = await postFindArrPrice(submitData);
// const { code, data } = res.data;
const { code, data } = res.data;
console.log('data :>> ', data);
if (code !== 200 || data.length === 0) return;
if (condition) {
//
for (let i = 0; i < details.priceArr.length; i++) {
const value = details.priceArr[i];
condition[value.key] = 0;
for (let index = 0; index < data[0].arrPrice.length; index++) {
const element = data[0].arrPrice[index];
if (element.itemName === value.name)
condition[value.key] = isNumber(element.cost) ? Number(element.cost) : 0;
}
}
console.log('condition :>> ', condition);
handleComputed(condition);
} else {
for (let idx = 0; idx < details.goodsList.length; idx++) {
const val = details.goodsList[idx];
if (!val.goodsId) continue;
let _data = null;
for (let index = 0; index < data.length; index++) {
const element = data[index];
if (element.goodsId === val.goodsId) {
_data = element;
break;
}
}
//
for (let i = 0; i < details.priceArr.length; i++) {
const value = details.priceArr[i];
val[value.key] = 0;
for (let index = 0; index < _data.arrPrice.length; index++) {
const element = _data.arrPrice[index];
if (element.itemName === value.name)
val[value.key] = isNumber(element.cost) ? Number(element.cost) : 0;
}
console.log('val :>> ', val);
}
handleComputed(val);
}
}
} catch (error) {
console.log('error :>> ', error);
} finally {
// item.loading = false;
}
};
watch(
() => $route.query,
() => {
@ -2268,4 +2500,14 @@ $borderColor: #172e60;
background: #f5f7fa;
}
}
.is-error {
:deep(.el-input__wrapper) {
border-color: #f00 !important;
}
:deep(.el-input__inner) {
color: #f00 !important;
}
}
</style>

Loading…
Cancel
Save