|
|
|
@ -1977,16 +1977,38 @@ const handleComputed = (row: any) => {
|
|
|
|
|
handleSpecialBrandPrice(row, trunkLine, template); |
|
|
|
|
|
|
|
|
|
details.query.goodsCode = '-' + details.totalObj.totalCount; |
|
|
|
|
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; |
|
|
|
|
else if (row.chargeType === 3) |
|
|
|
|
row.subtotalFreight = computeNumber(row.weight, '*', row.price).result; |
|
|
|
|
|
|
|
|
|
row.totalPickupPrice = computeNumber(row.num, '*', row.pickupPrice || 0).result; |
|
|
|
|
const typeArr = { 1: 'num', 2: 'volume', 3: 'weight' }; |
|
|
|
|
|
|
|
|
|
const _trunklineKey = typeArr[row.chargeType]; |
|
|
|
|
const _dispatchKey = typeArr[row.dispatchType]; |
|
|
|
|
|
|
|
|
|
// 计算干线价格 -- 行 |
|
|
|
|
if (_trunklineKey) |
|
|
|
|
row.subtotalFreight = _trunklineKey |
|
|
|
|
? computeNumber(row.price, '*', row[_trunklineKey]).result |
|
|
|
|
: 0; |
|
|
|
|
|
|
|
|
|
console.log('_dispatchKey :>> ', _dispatchKey); |
|
|
|
|
console.log('_trunklineKey :>> ', _trunklineKey); |
|
|
|
|
|
|
|
|
|
console.log('row :>> ', row); |
|
|
|
|
|
|
|
|
|
// 计算配送价格 -- 行 |
|
|
|
|
if (_dispatchKey) |
|
|
|
|
row.subtotalDispatch = _dispatchKey |
|
|
|
|
? computeNumber(row.dispatchPrice, '*', row[_dispatchKey]).result |
|
|
|
|
: 0; |
|
|
|
|
|
|
|
|
|
// 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; |
|
|
|
|
// else if (row.chargeType === 3) |
|
|
|
|
// row.subtotalFreight = computeNumber(row.weight, '*', row.price).result; |
|
|
|
|
|
|
|
|
|
// 计算提货价格 -- 行 |
|
|
|
|
row.totalPickupPrice = computeNumber(row.num, '*', row.pickupPrice || 0).result; |
|
|
|
|
|
|
|
|
|
handlePrice(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
@ -2187,35 +2209,37 @@ const handleTrunkLinePrice = (trunkLine, template) => {
|
|
|
|
|
if (value.subtotalFreight) _total += computeNumber(_total, '+', value.subtotalFreight).result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
console.log('trunkLine :>> ', trunkLine); |
|
|
|
|
|
|
|
|
|
// 是否存在最低计费 |
|
|
|
|
if ((trunkLine || template) && template.trunklineIsMinCost) { |
|
|
|
|
if (trunkLine && template && template.trunklineIsMinCost) { |
|
|
|
|
switch (Number(template.trunklineMinCostType)) { |
|
|
|
|
// 价格 |
|
|
|
|
case 1: |
|
|
|
|
details.query.totalFreight = template.minCost > _total ? template.minCost : _total; |
|
|
|
|
details.query.totalFreight = trunkLine.minCost > _total ? trunkLine.minCost : _total; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
// 件 |
|
|
|
|
case 2: |
|
|
|
|
details.query.totalFreight = |
|
|
|
|
template.minCost > details.totalObj.totalCount |
|
|
|
|
? _total + (template.additionalCost || 0) |
|
|
|
|
trunkLine.minCost > details.totalObj.totalCount |
|
|
|
|
? _total + (trunkLine.additionalCost || 0) |
|
|
|
|
: _total; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
// 方 |
|
|
|
|
case 3: |
|
|
|
|
details.query.totalFreight = |
|
|
|
|
template.minCost > details.totalObj.totalVolume |
|
|
|
|
? _total + (template.additionalCost || 0) |
|
|
|
|
trunkLine.minCost > details.totalObj.totalVolume |
|
|
|
|
? _total + (trunkLine.additionalCost || 0) |
|
|
|
|
: _total; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
// 重量 |
|
|
|
|
case 4: |
|
|
|
|
details.query.totalFreight = |
|
|
|
|
template.minCost > details.totalObj.totalFreight |
|
|
|
|
? _total + (template.additionalCost || 0) |
|
|
|
|
trunkLine.minCost > details.totalObj.totalFreight |
|
|
|
|
? _total + (trunkLine.additionalCost || 0) |
|
|
|
|
: _total; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
@ -2230,6 +2254,53 @@ const handleTrunkLinePrice = (trunkLine, template) => {
|
|
|
|
|
const handleDispatchPrice = (dispatch, template) => { |
|
|
|
|
// 是否存在模板和维护价格 |
|
|
|
|
if (!dispatch || !template) return; |
|
|
|
|
|
|
|
|
|
console.log('dispatch :>> ', dispatch); |
|
|
|
|
|
|
|
|
|
// 非整车 |
|
|
|
|
let _total = 0; |
|
|
|
|
|
|
|
|
|
for (let i = 0; i < details.goodsList.length; i++) { |
|
|
|
|
const value = details.goodsList[i]; |
|
|
|
|
if (value.subtotalDispatch) _total += computeNumber(_total, '+', value.subtotalDispatch).result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 是否存在最低计费 |
|
|
|
|
if ((dispatch || template) && template.trunklineIsMinCost) { |
|
|
|
|
switch (Number(template.dispatchMinCostType)) { |
|
|
|
|
// 价格 |
|
|
|
|
case 1: |
|
|
|
|
details.query.deliveryFee = dispatch.minCost > _total ? dispatch.minCost : _total; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
// 件 |
|
|
|
|
case 2: |
|
|
|
|
details.query.deliveryFee = |
|
|
|
|
dispatch.minCost > details.totalObj.totalCount |
|
|
|
|
? _total + (dispatch.additionalCost || 0) |
|
|
|
|
: _total; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
// 方 |
|
|
|
|
case 3: |
|
|
|
|
details.query.deliveryFee = |
|
|
|
|
dispatch.minCost > details.totalObj.totalVolume |
|
|
|
|
? _total + (dispatch.additionalCost || 0) |
|
|
|
|
: _total; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
// 重量 |
|
|
|
|
case 4: |
|
|
|
|
details.query.deliveryFee = |
|
|
|
|
dispatch.minCost > details.totalObj.deliveryFee |
|
|
|
|
? _total + (dispatch.additionalCost || 0) |
|
|
|
|
: _total; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
default: |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} else details.query.deliveryFee = _total; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 处理模板费用 */ |
|
|
|
@ -2576,7 +2647,7 @@ const handleAssignmentItemPriceTrunkline = (value, trunkLine, template, chargeTy
|
|
|
|
|
|
|
|
|
|
const _priceArr = _arr[chargeType]; |
|
|
|
|
|
|
|
|
|
let _item; |
|
|
|
|
let _item: any = {}; |
|
|
|
|
|
|
|
|
|
if (getObjType(_priceArr) === 'array' && !_item.chargeType) { |
|
|
|
|
for (let j = 0; j < _priceArr.length; j++) { |
|
|
|
@ -2707,14 +2778,44 @@ const handleSpecialBrandPrice = (value, trunkLine, template) => {
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 配送价格赋值 */ |
|
|
|
|
const handleAssignmentItemPriceDispatch = (value, dispatch, template) => { |
|
|
|
|
const handleAssignmentItemPriceDispatch = ( |
|
|
|
|
value, |
|
|
|
|
dispatch, |
|
|
|
|
template, |
|
|
|
|
chargeType?: number | undefined |
|
|
|
|
) => { |
|
|
|
|
const { pieceCategory, cubeCategory, weightCategory } = dispatch; |
|
|
|
|
|
|
|
|
|
// 是否区分品类 |
|
|
|
|
if (template.dispatchIsByCategory) { |
|
|
|
|
// 品类是否存在id |
|
|
|
|
if (!value.goodsId) value.dispatchPrice = 0; |
|
|
|
|
else { |
|
|
|
|
else if (getObjType(chargeType) === 'number') { |
|
|
|
|
const _arr = { |
|
|
|
|
1: pieceCategory, |
|
|
|
|
2: cubeCategory, |
|
|
|
|
3: weightCategory, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const _priceArr = _arr[chargeType]; |
|
|
|
|
|
|
|
|
|
let _item: any = {}; |
|
|
|
|
|
|
|
|
|
if (getObjType(_priceArr) === 'array' && !_item.chargeType) { |
|
|
|
|
for (let j = 0; j < _priceArr.length; j++) { |
|
|
|
|
const item = _priceArr[j]; |
|
|
|
|
|
|
|
|
|
if (item.categoryId !== value.goodsId) continue; |
|
|
|
|
_item = item; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
console.log('_item :>> ', _item); |
|
|
|
|
|
|
|
|
|
value.dispatchPrice = _item ? _item.price || 0 : 0; |
|
|
|
|
value.dispatchType = chargeType; |
|
|
|
|
} else { |
|
|
|
|
let _item: any = {}; |
|
|
|
|
// 件 |
|
|
|
|
if (getObjType(pieceCategory) === 'array') { |
|
|
|
@ -2724,7 +2825,7 @@ const handleAssignmentItemPriceDispatch = (value, dispatch, template) => {
|
|
|
|
|
if (item.categoryId !== value.goodsId) continue; |
|
|
|
|
_item = item; |
|
|
|
|
|
|
|
|
|
// _item.chargeType = 1; |
|
|
|
|
_item.chargeType = 1; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -2737,7 +2838,7 @@ const handleAssignmentItemPriceDispatch = (value, dispatch, template) => {
|
|
|
|
|
if (item.categoryId !== value.goodsId) continue; |
|
|
|
|
_item = item; |
|
|
|
|
|
|
|
|
|
// _item.chargeType = 2; |
|
|
|
|
_item.chargeType = 2; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -2750,15 +2851,17 @@ const handleAssignmentItemPriceDispatch = (value, dispatch, template) => {
|
|
|
|
|
if (item.categoryId !== value.goodsId) continue; |
|
|
|
|
_item = item; |
|
|
|
|
|
|
|
|
|
// _item.chargeType = 3; |
|
|
|
|
_item.chargeType = 3; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!_item) value.dispatchPrice = 0; |
|
|
|
|
else { |
|
|
|
|
// value.chargeType = _item.chargeType; |
|
|
|
|
value.dispatchPrice = _item.price; |
|
|
|
|
if (!_item) { |
|
|
|
|
value.dispatchType = 1; |
|
|
|
|
value.dispatchPrice = 0; |
|
|
|
|
} else { |
|
|
|
|
value.dispatchType = _item.chargeType; |
|
|
|
|
value.dispatchPrice = _item.price || 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
console.log('_item', _item); |
|
|
|
@ -2793,6 +2896,8 @@ const handleAssignmentItemPriceDispatch = (value, dispatch, template) => {
|
|
|
|
|
default: |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
value.dispatchType = value.chargeType; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
@ -2847,7 +2952,8 @@ const handleAssignmentItemPrice = (value, isOnload = false, chargeType?: number
|
|
|
|
|
} else value.pickupPrice = 0; |
|
|
|
|
|
|
|
|
|
// 配送 |
|
|
|
|
if (dispatch && template) handleAssignmentItemPriceDispatch(value, dispatch, template); |
|
|
|
|
if (dispatch && template) |
|
|
|
|
handleAssignmentItemPriceDispatch(value, dispatch, template, chargeType); |
|
|
|
|
else value.dispatchPrice = 0; |
|
|
|
|
|
|
|
|
|
console.log('value :>> ', value); |
|
|
|
|