|
|
|
@ -388,7 +388,7 @@
|
|
|
|
|
() => { |
|
|
|
|
details.query.pickupFee = 0; |
|
|
|
|
if (!details.query.isPickUp) return; |
|
|
|
|
handlePrice(); |
|
|
|
|
handlePrice(false, 'pickup'); |
|
|
|
|
} |
|
|
|
|
" |
|
|
|
|
v-model="query.isPickUp" |
|
|
|
@ -407,7 +407,7 @@
|
|
|
|
|
@change=" |
|
|
|
|
() => { |
|
|
|
|
details.query.pickupFee = 0; |
|
|
|
|
handlePrice(); |
|
|
|
|
handlePrice(false, 'pickup'); |
|
|
|
|
} |
|
|
|
|
" |
|
|
|
|
> |
|
|
|
@ -427,7 +427,7 @@
|
|
|
|
|
@change=" |
|
|
|
|
() => { |
|
|
|
|
details.query.pickupFee = 0; |
|
|
|
|
handlePrice(); |
|
|
|
|
handlePrice(false, 'pickup'); |
|
|
|
|
} |
|
|
|
|
" |
|
|
|
|
> |
|
|
|
@ -451,7 +451,7 @@
|
|
|
|
|
@change=" |
|
|
|
|
() => { |
|
|
|
|
details.query.totalFreight = 0; |
|
|
|
|
handlePrice(); |
|
|
|
|
handlePrice(false, 'trunkline'); |
|
|
|
|
} |
|
|
|
|
" |
|
|
|
|
:disabled="isDisabled" |
|
|
|
@ -472,7 +472,7 @@
|
|
|
|
|
@change=" |
|
|
|
|
() => { |
|
|
|
|
details.query.totalFreight = 0; |
|
|
|
|
handlePrice(); |
|
|
|
|
handlePrice(false, 'trunkline'); |
|
|
|
|
} |
|
|
|
|
" |
|
|
|
|
> |
|
|
|
@ -578,7 +578,7 @@
|
|
|
|
|
:precision="0" |
|
|
|
|
:step="1" |
|
|
|
|
:value-on-clear="0" |
|
|
|
|
@change="handleComputed(item)" |
|
|
|
|
@change="() => handleComputed(item)" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
@ -591,7 +591,7 @@
|
|
|
|
|
:precision="4" |
|
|
|
|
:step="0.1" |
|
|
|
|
:value-on-clear="0" |
|
|
|
|
@change="handleComputed(item)" |
|
|
|
|
@change="() => handleComputed(item)" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
@ -604,7 +604,7 @@
|
|
|
|
|
:precision="3" |
|
|
|
|
:step="0.1" |
|
|
|
|
:value-on-clear="0" |
|
|
|
|
@change="handleComputed(item)" |
|
|
|
|
@change="() => handleComputed(item)" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
@ -617,7 +617,7 @@
|
|
|
|
|
:precision="2" |
|
|
|
|
:step="0.1" |
|
|
|
|
:value-on-clear="0" |
|
|
|
|
@change="handleComputed(item)" |
|
|
|
|
@change="() => handleComputed(item, true)" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
@ -2431,8 +2431,11 @@ const destinationWarehouseNameChange = val => {
|
|
|
|
|
details.query.queryDestinationWarehouseName = details.query.destinationWarehouseName; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 计算行合计 */ |
|
|
|
|
const handleComputed = (row: any) => { |
|
|
|
|
/** 计算行合计 |
|
|
|
|
* row -- 行数据 |
|
|
|
|
* onlyComputedTrunline -- 是否只计算干线的价格 |
|
|
|
|
*/ |
|
|
|
|
const handleComputed = (row: any, onlyComputedTrunline = false) => { |
|
|
|
|
const { template, trunkLine } = details.priceTemplate; |
|
|
|
|
|
|
|
|
|
if (Boolean(isDisabled.value && template && trunkLine)) |
|
|
|
@ -2453,25 +2456,27 @@ const handleComputed = (row: any) => {
|
|
|
|
|
? computeNumber(row.price, '*', row[_trunklineKey]).result |
|
|
|
|
: 0; |
|
|
|
|
|
|
|
|
|
// 计算提货价格 -- 行 |
|
|
|
|
if (_pickupKey) |
|
|
|
|
row.subtotalPickup = _pickupKey |
|
|
|
|
? computeNumber(row.deliveryPrice, '*', row[_pickupKey]).result |
|
|
|
|
: 0; |
|
|
|
|
if (onlyComputedTrunline) { |
|
|
|
|
// 计算提货价格 -- 行 |
|
|
|
|
if (_pickupKey) |
|
|
|
|
row.subtotalPickup = _pickupKey |
|
|
|
|
? computeNumber(row.pickupPrice || 0, '*', row[_pickupKey]).result |
|
|
|
|
: 0; |
|
|
|
|
|
|
|
|
|
// 计算配送价格 -- 行 |
|
|
|
|
if (_dispatchKey) |
|
|
|
|
row.subtotalDispatch = _dispatchKey |
|
|
|
|
? computeNumber(row.deliveryPrice, '*', row[_dispatchKey]).result |
|
|
|
|
: 0; |
|
|
|
|
// 计算配送价格 -- 行 |
|
|
|
|
if (_dispatchKey) |
|
|
|
|
row.subtotalDispatch = _dispatchKey |
|
|
|
|
? computeNumber(row.deliveryPrice || 0, '*', row[_dispatchKey]).result |
|
|
|
|
: 0; |
|
|
|
|
|
|
|
|
|
if (_warehouseKey) |
|
|
|
|
row.subtotalWarehouseManagement = _warehouseKey |
|
|
|
|
? computeNumber(row.warehouseManagementPrice, '*', row[_warehouseKey]).result |
|
|
|
|
: 0; |
|
|
|
|
console.log('row :>> ', row); |
|
|
|
|
if (_warehouseKey) |
|
|
|
|
row.subtotalWarehouseManagement = _warehouseKey |
|
|
|
|
? computeNumber(row.warehouseManagementPrice || 0, '*', row[_warehouseKey]).result |
|
|
|
|
: 0; |
|
|
|
|
console.log('row :>> ', row); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
handlePrice(); |
|
|
|
|
handlePrice(!onlyComputedTrunline, 'trunkline'); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 查询客户信息 */ |
|
|
|
@ -2848,24 +2853,27 @@ const handleWarehouseManagement = () => {
|
|
|
|
|
for (let i = 0; i < details.goodsList.length; i++) { |
|
|
|
|
const value = details.goodsList[i]; |
|
|
|
|
|
|
|
|
|
_total = computeNumber(_total, '+', value.subtotalWarehouseManagement).result; |
|
|
|
|
_total = computeNumber(_total, '+', value.subtotalWarehouseManagement || 0).result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
details.query.warehouseManagementFee = _total; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 处理模板费用 -- 计算 */ |
|
|
|
|
const handlePrice = () => { |
|
|
|
|
const handlePrice = (isAll = false, type) => { |
|
|
|
|
const { dispatch, pickup, template, trunkLine } = details.priceTemplate; |
|
|
|
|
|
|
|
|
|
console.log('type :>> ', type); |
|
|
|
|
console.log('isAll :>> ', isAll); |
|
|
|
|
|
|
|
|
|
/** 处理提货费用 */ |
|
|
|
|
handlePickUpPrice(pickup, template); |
|
|
|
|
(isAll || type === 'pickup') && handlePickUpPrice(pickup, template); |
|
|
|
|
/** 处理干线费用 */ |
|
|
|
|
handleTrunkLinePrice(trunkLine, template); |
|
|
|
|
(isAll || type === 'trunkline') && handleTrunkLinePrice(trunkLine, template); |
|
|
|
|
/** 处理配送费 */ |
|
|
|
|
handleDispatchPrice(dispatch, template); |
|
|
|
|
(isAll || type === 'dispatch') && handleDispatchPrice(dispatch, template); |
|
|
|
|
/** 处理仓库管理费 */ |
|
|
|
|
handleWarehouseManagement(); |
|
|
|
|
(isAll || type === 'warehouseMangement') && handleWarehouseManagement(); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 重置值 */ |
|
|
|
|