|
|
|
@ -2445,6 +2445,7 @@ const handleComputed = (row: any) => {
|
|
|
|
|
const _trunklineKey = typeArr[row.chargeType]; |
|
|
|
|
const _pickupKey = typeArr[row.pickupType]; |
|
|
|
|
const _dispatchKey = typeArr[row.dispatchType]; |
|
|
|
|
const _warehouseKey = typeArr[row.warehouseManagementType]; |
|
|
|
|
|
|
|
|
|
// 计算干线价格 -- 行 |
|
|
|
|
if (_trunklineKey) |
|
|
|
@ -2464,6 +2465,10 @@ const handleComputed = (row: any) => {
|
|
|
|
|
? computeNumber(row.deliveryPrice, '*', row[_dispatchKey]).result |
|
|
|
|
: 0; |
|
|
|
|
|
|
|
|
|
if (_warehouseKey) |
|
|
|
|
row.subtotalWarehouseManagement = _warehouseKey |
|
|
|
|
? computeNumber(row.warehouseManagementPrice, '*', row[_warehouseKey]).result |
|
|
|
|
: 0; |
|
|
|
|
console.log('row :>> ', row); |
|
|
|
|
|
|
|
|
|
handlePrice(); |
|
|
|
@ -2836,6 +2841,19 @@ const handleDispatchPrice = (dispatch, template) => {
|
|
|
|
|
} else details.query.deliveryFee = _total; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 处理仓库管理费 */ |
|
|
|
|
const handleWarehouseManagement = () => { |
|
|
|
|
let _total = 0; |
|
|
|
|
|
|
|
|
|
for (let i = 0; i < details.goodsList.length; i++) { |
|
|
|
|
const value = details.goodsList[i]; |
|
|
|
|
|
|
|
|
|
_total = computeNumber(_total, '+', value.subtotalWarehouseManagement).result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
details.query.warehouseManagementFee = _total; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 处理模板费用 -- 计算 */ |
|
|
|
|
const handlePrice = () => { |
|
|
|
|
const { dispatch, pickup, template, trunkLine } = details.priceTemplate; |
|
|
|
@ -2846,6 +2864,8 @@ const handlePrice = () => {
|
|
|
|
|
handleTrunkLinePrice(trunkLine, template); |
|
|
|
|
/** 处理配送费 */ |
|
|
|
|
handleDispatchPrice(dispatch, template); |
|
|
|
|
/** 处理仓库管理费 */ |
|
|
|
|
handleWarehouseManagement(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 重置值 */ |
|
|
|
@ -3426,12 +3446,60 @@ const handleAssignmentItemPriceDispatch = (
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 仓储管理价格赋值 */ |
|
|
|
|
const handleAssignmentItemPriceWarehouseManagementPrice = ( |
|
|
|
|
value, |
|
|
|
|
warehouse, |
|
|
|
|
template, |
|
|
|
|
chargeType?: number | undefined |
|
|
|
|
) => { |
|
|
|
|
if (!template || !template.warehouseIsAddFee || !template.warehouseIsManageFee) { |
|
|
|
|
value.warehouseManagementPrice = 0; |
|
|
|
|
value.warehouseManagementType = 1; |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
value.warehouseManagementType = Number(template.warehousePricingType); |
|
|
|
|
|
|
|
|
|
const { additionalCategory } = warehouse; |
|
|
|
|
|
|
|
|
|
if (template.warehouseIsCategorySubjoin) { |
|
|
|
|
// 品类是否存在id |
|
|
|
|
if (!value.goodsId) value.warehouseManagementPrice = 0; |
|
|
|
|
else { |
|
|
|
|
let _item: any = {}; |
|
|
|
|
|
|
|
|
|
if (getObjType(additionalCategory) === 'array') { |
|
|
|
|
for (let j = 0; j < additionalCategory.length; j++) { |
|
|
|
|
const item = additionalCategory[j]; |
|
|
|
|
|
|
|
|
|
if (item.categoryId !== value.goodsId) continue; |
|
|
|
|
_item = item; |
|
|
|
|
|
|
|
|
|
value.warehouseManagementPrice = _item.warehouseManagementPrice; |
|
|
|
|
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 赋值 |
|
|
|
|
value.warehouseManagementPrice = 0; |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
// 不区分品类 -- 暂时默认为按件 |
|
|
|
|
value.warehouseManagementPrice = |
|
|
|
|
getObjType(additionalCategory) === 'array' && additionalCategory.length > 0 |
|
|
|
|
? additionalCategory[0].price || 0 |
|
|
|
|
: 0; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 价格赋值 |
|
|
|
|
* isOnload 是否为初始化价格赋值, 初始化不赋值干线单价以及计算价格 |
|
|
|
|
*/ |
|
|
|
|
const handleAssignmentItemPrice = (value, isOnload = false, chargeType?: number | undefined) => { |
|
|
|
|
// 处理品类费用 |
|
|
|
|
const { pickup, template, trunkLine, dispatch } = details.priceTemplate; |
|
|
|
|
const { pickup, template, trunkLine, dispatch, warehouse } = details.priceTemplate; |
|
|
|
|
|
|
|
|
|
// 干线 |
|
|
|
|
if (!isOnload) { |
|
|
|
@ -3454,6 +3522,9 @@ const handleAssignmentItemPrice = (value, isOnload = false, chargeType?: number
|
|
|
|
|
handleAssignmentItemPriceDispatch(value, dispatch, template, chargeType); |
|
|
|
|
else value.deliveryPrice = 0; |
|
|
|
|
|
|
|
|
|
// 仓库 |
|
|
|
|
handleAssignmentItemPriceWarehouseManagementPrice(value, warehouse, template); |
|
|
|
|
|
|
|
|
|
// 计算每行价格 |
|
|
|
|
if (!isOnload) handleComputed(value); |
|
|
|
|
}; |
|
|
|
|