|
|
|
@ -403,6 +403,7 @@
|
|
|
|
|
<div class="flex-c-c title">干 线</div> |
|
|
|
|
|
|
|
|
|
<el-form-item label="是否整车:" label-width="fit-content" prop="num" class="flex1"> |
|
|
|
|
<!-- 金牌不存在整车一口价费用 --> |
|
|
|
|
<el-radio-group |
|
|
|
|
v-model="query.trunklineCompleteOrNot" |
|
|
|
|
class="flex-a" |
|
|
|
@ -412,6 +413,7 @@
|
|
|
|
|
handlePrice(); |
|
|
|
|
} |
|
|
|
|
" |
|
|
|
|
:disabled="isDisabled" |
|
|
|
|
> |
|
|
|
|
<el-radio :label="1">是</el-radio> |
|
|
|
|
<el-radio :label="0">否</el-radio> |
|
|
|
@ -483,6 +485,7 @@
|
|
|
|
|
v-model="item.chargeType" |
|
|
|
|
@change="handleComputed(item)" |
|
|
|
|
style="display: flex" |
|
|
|
|
:disabled="isDisabled" |
|
|
|
|
> |
|
|
|
|
<el-radio :label="1">件</el-radio> |
|
|
|
|
<el-radio :label="2">方</el-radio> |
|
|
|
@ -1226,40 +1229,14 @@ 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; |
|
|
|
|
} |
|
|
|
|
let _totalNum = 0; |
|
|
|
|
|
|
|
|
|
details.query.deliveryFee = _deliveryFee; |
|
|
|
|
details.query.warehouseManagementFee = _warehouseManagementFee; |
|
|
|
|
details.query.storageFee = _storageFee; |
|
|
|
|
for (let i = 0; i < details.goodsList.length; i++) { |
|
|
|
|
const value = details.goodsList[i]; |
|
|
|
|
if (value.num) _totalNum += value.num; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return details.goodsList.reduce((curr, item) => { |
|
|
|
|
if (item.num) return curr + item.num; |
|
|
|
|
return curr; |
|
|
|
|
}, 0); |
|
|
|
|
return _totalNum; |
|
|
|
|
}), |
|
|
|
|
/** 总重量 */ |
|
|
|
|
totalWeghit: computed(() => { |
|
|
|
@ -1539,6 +1516,25 @@ const details = reactive<any>({
|
|
|
|
|
changeData: [], |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
/** 是否禁用 */ |
|
|
|
|
const isDisabled = computed(() => { |
|
|
|
|
if (getObjType(details.priceTemplate) !== 'object') return false; |
|
|
|
|
|
|
|
|
|
const { template } = details.priceTemplate; |
|
|
|
|
|
|
|
|
|
if (getObjType(template) !== 'object') return false; |
|
|
|
|
|
|
|
|
|
// 是否干线特殊配置 |
|
|
|
|
const { trunklineIsPeculiarSetup } = template; |
|
|
|
|
|
|
|
|
|
const blackArr = ['金牌']; |
|
|
|
|
|
|
|
|
|
const _flag = blackArr.includes(details.query.brand); |
|
|
|
|
|
|
|
|
|
if (_flag && trunklineIsPeculiarSetup) return true; |
|
|
|
|
else return false; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const { query, data, drawerShow, loadingObj } = toRefs(details); |
|
|
|
|
|
|
|
|
|
// 深拷贝基础数据 |
|
|
|
@ -2493,15 +2489,106 @@ const handleTranslation = (province, city, region) => {
|
|
|
|
|
return name; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 价格赋值 |
|
|
|
|
* isOnload 是否为初始化价格赋值, 初始化不赋值干线单价以及计算价格 |
|
|
|
|
*/ |
|
|
|
|
const handleAssignmentItemPrice = (value, isOnload = false) => { |
|
|
|
|
// 处理品类费用 |
|
|
|
|
const { pickup, template, trunkLine } = details.priceTemplate; |
|
|
|
|
/** 干线价格赋值 */ |
|
|
|
|
const handleAssignmentItemPriceTrunkline = (value, trunkLine, template) => { |
|
|
|
|
const { pieceCategory, cubeCategory, weightCategory } = trunkLine; |
|
|
|
|
|
|
|
|
|
// 是否区分品类 |
|
|
|
|
if (template.trunklineIsByCategory) { |
|
|
|
|
// 品类是否存在id |
|
|
|
|
if (!value.goodsId) value.price = 0; |
|
|
|
|
else { |
|
|
|
|
let _item: any = {}; |
|
|
|
|
// 件 |
|
|
|
|
if (getObjType(pieceCategory) === 'array') { |
|
|
|
|
for (let j = 0; j < pieceCategory.length; j++) { |
|
|
|
|
const item = pieceCategory[j]; |
|
|
|
|
|
|
|
|
|
if (item.categoryId !== value.goodsId) continue; |
|
|
|
|
_item = item; |
|
|
|
|
|
|
|
|
|
_item.chargeType = 1; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 方 |
|
|
|
|
if (getObjType(cubeCategory) === 'array' && !_item.chargeType) { |
|
|
|
|
for (let j = 0; j < cubeCategory.length; j++) { |
|
|
|
|
const item = cubeCategory[j]; |
|
|
|
|
|
|
|
|
|
if (item.categoryId !== value.goodsId) continue; |
|
|
|
|
_item = item; |
|
|
|
|
|
|
|
|
|
_item.chargeType = 2; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 重量 |
|
|
|
|
if (getObjType(weightCategory) === 'array' && !_item.chargeType) { |
|
|
|
|
for (let j = 0; j < weightCategory.length; j++) { |
|
|
|
|
const item = weightCategory[j]; |
|
|
|
|
|
|
|
|
|
if (item.categoryId !== value.goodsId) continue; |
|
|
|
|
_item = item; |
|
|
|
|
|
|
|
|
|
_item.chargeType = 3; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!_item.chargeType) value.price = 0; |
|
|
|
|
else { |
|
|
|
|
value.chargeType = _item.chargeType; |
|
|
|
|
value.price = _item.price; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
// 不区分品类 |
|
|
|
|
switch (value.chargeType) { |
|
|
|
|
// 件 |
|
|
|
|
case 1: |
|
|
|
|
value.price = |
|
|
|
|
getObjType(pieceCategory) === 'array' && pieceCategory.length > 0 |
|
|
|
|
? pieceCategory[0].price || 0 |
|
|
|
|
: 0; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
// 方 |
|
|
|
|
case 2: |
|
|
|
|
value.price = |
|
|
|
|
getObjType(cubeCategory) === 'array' && cubeCategory.length > 0 |
|
|
|
|
? cubeCategory[0].price || 0 |
|
|
|
|
: 0; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
// 公斤 |
|
|
|
|
case 3: |
|
|
|
|
value.price = |
|
|
|
|
getObjType(weightCategory) === 'array' && weightCategory.length > 0 |
|
|
|
|
? weightCategory[0].price || 0 |
|
|
|
|
: 0; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
default: |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 金牌 -- 干线特殊处理 */ |
|
|
|
|
const handleSpecialBrandPrice = (value, trunkLine, template) => { |
|
|
|
|
// 总件数小于15件 && 总方数小于0.8 && 总方数 / 总件数小于0.11 则按件计费, 否则以按方计费 |
|
|
|
|
const { totalCount, totalVolume } = details.totalObj; |
|
|
|
|
|
|
|
|
|
if (totalCount < 15 && totalVolume < 0.8) { |
|
|
|
|
value.chargeType = 1; |
|
|
|
|
|
|
|
|
|
value.price = 5; |
|
|
|
|
} else { |
|
|
|
|
value.chargeType = 2; |
|
|
|
|
|
|
|
|
|
// 干线 |
|
|
|
|
if (trunkLine && template && !isOnload) { |
|
|
|
|
const { pieceCategory, cubeCategory, weightCategory } = trunkLine; |
|
|
|
|
|
|
|
|
|
// 是否区分品类 |
|
|
|
@ -2510,82 +2597,45 @@ const handleAssignmentItemPrice = (value, isOnload = false) => {
|
|
|
|
|
if (!value.goodsId) value.price = 0; |
|
|
|
|
else { |
|
|
|
|
let _item: any = {}; |
|
|
|
|
// 件 |
|
|
|
|
if (getObjType(pieceCategory) === 'array') { |
|
|
|
|
for (let j = 0; j < pieceCategory.length; j++) { |
|
|
|
|
const item = pieceCategory[j]; |
|
|
|
|
|
|
|
|
|
if (item.categoryId !== value.goodsId) continue; |
|
|
|
|
_item = item; |
|
|
|
|
|
|
|
|
|
_item.chargeType = 1; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 方 |
|
|
|
|
if (getObjType(cubeCategory) === 'array' && !_item.chargeType) { |
|
|
|
|
if (getObjType(cubeCategory) === 'array') { |
|
|
|
|
for (let j = 0; j < cubeCategory.length; j++) { |
|
|
|
|
const item = cubeCategory[j]; |
|
|
|
|
|
|
|
|
|
if (item.categoryId !== value.goodsId) continue; |
|
|
|
|
_item = item; |
|
|
|
|
|
|
|
|
|
_item.chargeType = 2; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 重量 |
|
|
|
|
if (getObjType(weightCategory) === 'array' && !_item.chargeType) { |
|
|
|
|
for (let j = 0; j < weightCategory.length; j++) { |
|
|
|
|
const item = weightCategory[j]; |
|
|
|
|
|
|
|
|
|
if (item.categoryId !== value.goodsId) continue; |
|
|
|
|
_item = item; |
|
|
|
|
|
|
|
|
|
_item.chargeType = 3; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!_item.chargeType) value.price = 0; |
|
|
|
|
else { |
|
|
|
|
value.chargeType = _item.chargeType; |
|
|
|
|
value.price = _item.price; |
|
|
|
|
} |
|
|
|
|
value.price = _item.price || 0; |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
// 不区分品类 |
|
|
|
|
switch (value.chargeType) { |
|
|
|
|
// 件 |
|
|
|
|
case 1: |
|
|
|
|
value.price = |
|
|
|
|
getObjType(pieceCategory) === 'array' && pieceCategory.length > 0 |
|
|
|
|
? pieceCategory[0].price || 0 |
|
|
|
|
: 0; |
|
|
|
|
break; |
|
|
|
|
value.price = |
|
|
|
|
getObjType(cubeCategory) === 'array' && cubeCategory.length > 0 |
|
|
|
|
? cubeCategory[0].price || 0 |
|
|
|
|
: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 方 |
|
|
|
|
case 2: |
|
|
|
|
value.price = |
|
|
|
|
getObjType(cubeCategory) === 'array' && cubeCategory.length > 0 |
|
|
|
|
? cubeCategory[0].price || 0 |
|
|
|
|
: 0; |
|
|
|
|
break; |
|
|
|
|
console.log('value :>> ', value); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 公斤 |
|
|
|
|
case 3: |
|
|
|
|
value.price = |
|
|
|
|
getObjType(weightCategory) === 'array' && weightCategory.length > 0 |
|
|
|
|
? weightCategory[0].price || 0 |
|
|
|
|
: 0; |
|
|
|
|
break; |
|
|
|
|
/** 价格赋值 |
|
|
|
|
* isOnload 是否为初始化价格赋值, 初始化不赋值干线单价以及计算价格 |
|
|
|
|
*/ |
|
|
|
|
const handleAssignmentItemPrice = (value, isOnload = false) => { |
|
|
|
|
// 处理品类费用 |
|
|
|
|
const { pickup, template, trunkLine } = details.priceTemplate; |
|
|
|
|
|
|
|
|
|
// 干线 |
|
|
|
|
if (trunkLine && template && !isOnload) { |
|
|
|
|
// 如果品牌为金牌, 切模板选择为特殊计费则特殊处理 |
|
|
|
|
if (details.query.brand === '金牌') handleSpecialBrandPrice(value, trunkLine, template); |
|
|
|
|
else handleAssignmentItemPriceTrunkline(value, trunkLine, template); |
|
|
|
|
|
|
|
|
|
default: |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 是否为区分品类 |
|
|
|
|
} else value.price = 0; |
|
|
|
|
|
|
|
|
@ -2740,7 +2790,7 @@ watch(
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
$borderColor: #172e60; |
|
|
|
|
$borderColor: var(--el-color-primary); |
|
|
|
|
$borderType: 1px solid $borderColor; |
|
|
|
|
|
|
|
|
|
.table_form { |
|
|
|
|