emis-app/components/buns-post-edit-templates/bpe-cost-tmp.vue

296 lines
9.2 KiB
Vue
Raw Normal View History

2024-01-30 07:40:49 +00:00
<template>
<view class="shet-cont">
2024-06-02 10:16:18 +00:00
<view class="">
<tpx-text-item label="特殊报价">
<template v-slot:right>
<u-switch v-model="modelInfo.blSpecialQuote" activeValue="1" inactiveValue="0" active-color="#B12D29" size="34"></u-switch>
</template>
</tpx-text-item>
</view>
<view class="pt-20">
<tpx-text-item label="敏感物">
<template v-slot:right>
<u-switch v-model="modelInfo.blSpecialGoods" activeValue="1" inactiveValue="0" active-color="#B12D29" size="34"></u-switch>
</template>
</tpx-text-item>
</view>
<view class="jsfm-item nobg" style=";margin-bottom: 0;padding-left: 0;">
2024-01-31 06:45:51 +00:00
<u-row>
<view class="lft1 font-28">计费方式</view>
<view style="flex: 1;">
2024-05-26 15:21:59 +00:00
<u-radio-group v-model="modelInfo.calcFeeType">
2024-04-29 08:13:17 +00:00
<u-radio v-for="(item, index) in dicData.emis_calc_fee_type" :label="item.title"
:name="item.val" activeColor="#B12D29" size="30" labelSize="26"
:custom-style="`margin-right: ${index+1<dicData.emis_calc_fee_type.length?30:0}rpx;`">
2024-01-31 06:45:51 +00:00
</u-radio>
2024-04-29 08:13:17 +00:00
</u-radio-group>
2024-01-30 07:40:49 +00:00
</view>
</u-row>
</view>
2024-04-29 08:13:17 +00:00
2024-04-27 09:59:09 +00:00
<view v-for="(item, index) in modelInfo.feeItems" class="jsfm-item">
2024-06-02 10:16:18 +00:00
<!-- 手动添加的才能删除 -->
<u-row justify="between">
<view >
2024-06-10 17:07:56 +00:00
<text class="font-weight font-30">{{item.feeName}}</text>
2024-06-02 10:16:18 +00:00
</view>
<view v-if="item.blAutoGen == 0" @click="handleDelFee(index)" class="delicon">
<u-icon name="trash" size="32"></u-icon>
</view>
</u-row>
<u-row custom-style="gap: 20rpx;margin-top:10rpx;">
2024-04-27 09:59:09 +00:00
<u-row custom-style="flex: 1">
2024-06-10 17:07:56 +00:00
<text class="font-26 pr-10">首重费</text>
<tpx-input v-model:value="item.initialWeightFee" @change="(val)=> { handleIwFeeChange(item, val) }" _digit="5" :isWhite="true"
2024-06-02 10:16:18 +00:00
:disabled="modelInfo.blSpecialQuote != 1" custom-style="width: 120rpx;height: 46rpx;" suffix="CNY"></tpx-input>
2024-01-31 06:45:51 +00:00
</u-row>
2024-06-02 10:16:18 +00:00
<u-row custom-style="flex: 1">
2024-06-10 17:07:56 +00:00
<text class="font-26 pr-10">续重单价</text>
<tpx-input v-model:value="item.addWeightPrice" @change="(val)=> { handleAwPriceChange(item, val) }" _digit="5" :isWhite="true"
2024-06-02 10:16:18 +00:00
:disabled="modelInfo.blSpecialQuote != 1" custom-style="width: 120rpx;height: 46rpx;" suffix="CNY"></tpx-input>
2024-04-27 05:55:14 +00:00
</u-row>
2024-04-27 09:59:09 +00:00
</u-row>
2024-06-10 17:07:56 +00:00
<u-row style="margin-top:10rpx;" justify="between">
<view>
<text class="">应收:</text> {{item.fee || 0}}
</view>
<u-row custom-style="width:360rpx;">
<text class="font-26 pr-20">实收</text>
<tpx-input v-model:value="item.realFee" @change="(val)=> { handleRlFeeChange(item, val) }" _digit="5" :isWhite="true" custom-style="width: 120rpx;height: 46rpx;"
:disabled="modelInfo.blSpecialQuote != 1" suffix="CNY"></tpx-input>
</u-row>
</u-row>
<!-- <view v-if="item.calcExp" class="mt-10">
2024-06-02 10:16:18 +00:00
<text class="">计算公式:</text> {{item.calcExp}}
2024-06-10 17:07:56 +00:00
</view> -->
<view class="mt-20">
<tpx-input v-model:value="item.remark" :disabled="modelInfo.blSpecialQuote != 1" placeholder="费用描述" isWhite="true"></tpx-input>
2024-06-02 10:16:18 +00:00
</view>
2024-04-27 09:59:09 +00:00
</view>
2024-04-29 08:13:17 +00:00
<tpx-select v-if="feeTypeOptions.length > 0" :list="feeTypeOptions" @onChange="handleAddFee" mode="drop">
2024-04-27 05:55:14 +00:00
<u-row justify="center">
2024-04-29 08:13:17 +00:00
<u-button custom-style="border-radius: 16rpx;height:60rpx;font-size: 30rpx;margin-top: 20rpx;"
:plain="true" type="primary">
2024-04-27 05:55:14 +00:00
<u-icon name="plus" size="30" color="#B12D29"></u-icon>
<text class="pl-10">增加收费项</text>
</u-button>
2024-01-30 07:40:49 +00:00
</u-row>
2024-04-27 09:59:09 +00:00
</tpx-select>
2024-05-06 16:38:24 +00:00
<view class="pt-20">
2024-06-10 17:07:56 +00:00
<u-row custom-style="flex:1;" justify="between">
2024-05-06 16:38:24 +00:00
<text class="font-26 pr-10">总费用</text>
2024-06-10 17:07:56 +00:00
<view style="width: 360rpx;">
2024-05-28 04:32:43 +00:00
<tpx-input v-model:value="modelInfo.freight" :isWhite="true" _digit="5"
2024-06-10 17:07:56 +00:00
:disabled="modelInfo.calcFeeType!=3"
inputAlign="right" custom-style="height: 46rpx;" suffix="CNY"></tpx-input>
2024-05-28 04:32:43 +00:00
</view>
2024-05-06 16:38:24 +00:00
</u-row>
</view>
<view class="pt-20">
2024-06-14 15:43:50 +00:00
<u-textarea v-model="modelInfo.feeRemark" border="surround" height="120" placeholder="费用备注"
2024-05-06 16:38:24 +00:00
maxlength="50" count></u-textarea>
</view>
2024-04-29 08:13:17 +00:00
</view>
2024-06-11 03:25:41 +00:00
2024-06-13 08:06:13 +00:00
<buns-edit-sheet percentHeight="40" :title="costModal.item.feeName" v-model:show="costModal.show" v-model:value="costModal.item" v-slot="tempObject" @onSure="handleCostItemSure" :okCloseModal="false">
2024-06-11 03:25:41 +00:00
<u-row custom-style="gap: 20rpx;margin-top:10rpx;">
<u-row custom-style="flex: 1">
2024-06-13 08:06:13 +00:00
<text class="font-26 label-text">首重费</text>
2024-06-11 03:25:41 +00:00
<tpx-input v-model:value="tempObject.value.initialWeightFee" _digit="5" :isWhite="true"
custom-style="width: 120rpx;height: 46rpx;" suffix="CNY"></tpx-input>
</u-row>
<u-row custom-style="flex: 1">
2024-06-13 08:06:13 +00:00
<text class="font-26 label-text">续重单价</text>
2024-06-11 03:25:41 +00:00
<tpx-input v-model:value="tempObject.value.addWeightPrice" _digit="5" :isWhite="true"
custom-style="width: 120rpx;height: 46rpx;" suffix="CNY"></tpx-input>
</u-row>
</u-row>
<u-row style="margin-top:30rpx;" justify="between">
<u-row custom-style="width:300rpx;">
2024-06-13 08:06:13 +00:00
<text class="label-text">应收</text>
2024-06-11 03:25:41 +00:00
<tpx-input v-model:value="tempObject.value.fee" _digit="5" :isWhite="true" custom-style="width: 120rpx;height: 46rpx;"
suffix="CNY"></tpx-input>
</u-row>
<u-row custom-style="width:300rpx;">
2024-06-13 08:06:13 +00:00
<text :class="`font-26 label-text ${tempObject.value.feeCode == '9999'?'label-text-required':''} `">实收</text>
2024-06-11 03:25:41 +00:00
<tpx-input v-model:value="tempObject.value.realFee" _digit="5" :isWhite="true" custom-style="width: 120rpx;height: 46rpx;"
suffix="CNY"></tpx-input>
</u-row>
</u-row>
<view class="mt-30">
<tpx-input v-model:value="tempObject.value.remark" placeholder="费用描述" isWhite="true"></tpx-input>
</view>
</buns-edit-sheet>
2024-01-30 07:40:49 +00:00
</template>
<script>
2024-04-29 08:13:17 +00:00
import * as apiService from "@/common/api"
2024-01-30 07:40:49 +00:00
export default {
computed: {
2024-04-27 05:55:14 +00:00
modelInfo: {
2024-04-29 08:13:17 +00:00
get() {
2024-01-30 07:40:49 +00:00
return this.value
}
2024-04-27 05:55:14 +00:00
},
2024-04-29 08:13:17 +00:00
feeTypeOptions() {
2024-04-27 09:59:09 +00:00
let list = this.dicData.emis_fee_type || []
2024-05-07 13:44:17 +00:00
let curVals = this.modelInfo?.feeItems?.map?.(t => t.feeCode) || []
2024-04-29 08:13:17 +00:00
list = list.filter(t => curVals.indexOf(t.val) == -1)
2024-04-27 09:59:09 +00:00
return list
},
2024-04-27 05:55:14 +00:00
dicData() {
2024-04-29 08:13:17 +00:00
return this.$store.getters.dicData
2024-05-26 15:21:59 +00:00
},
searchParam() {
let info = this.modelInfo
let param = {
productType: info.productType,
// customerCode: info.customerCode,
customsClear: info.customsClear,
customsEclaration: info.customsEclaration,
calcFeeType: info.calcFeeType,
settlementWeight: info.settlementWeight,
totalVolume: info.totalVolume,
sendSiteCode: this.$store.getters.userInfo.ownerSiteCode,
dispatchUnderlingSiteCode: info.dispatchUnderlingSiteCode,
}
return param
}
},
watch: {
searchParam: {
handler(newVal){
let vals = Object.values(newVal)
// 所有关联入参都有值再 执行自动计算
if(vals.length == vals.filter(v => !!v).length) {
this.calcWaybillFee(newVal);
}
},
deep: true,
2024-01-30 07:40:49 +00:00
}
},
props: {
value: {
default () {
2024-04-29 08:13:17 +00:00
return {}
2024-01-30 07:40:49 +00:00
}
2024-04-29 08:46:07 +00:00
},
2024-01-30 07:40:49 +00:00
},
data() {
2024-06-11 03:25:41 +00:00
return {
costModal: { item: {}, show: false }
}
2024-01-30 07:40:49 +00:00
},
created() {
},
onHide() {
},
unmounted() {
2024-04-29 08:13:17 +00:00
2024-01-30 07:40:49 +00:00
},
methods: {
2024-04-27 09:59:09 +00:00
handleDelFee(index) {
this.modelInfo.feeItems.splice(index, 1)
2024-06-11 05:15:01 +00:00
this.calteFreight()
2024-04-27 09:59:09 +00:00
},
handleAddFee(val) {
2024-06-11 03:25:41 +00:00
this.costModal.show = {}
this.costModal.item = {
2024-06-02 10:16:18 +00:00
blAutoGen: 0, // 手动添加的费用标识
2024-04-27 09:59:09 +00:00
feeCode: val,
2024-04-29 08:13:17 +00:00
feeName: this.dicData.emis_fee_type.filter(t => t.val == val)[0].title
2024-06-11 03:25:41 +00:00
}
2024-04-29 08:13:17 +00:00
},
2024-04-29 08:46:07 +00:00
async calcWaybillFee(params = {}) {
2024-06-12 04:21:56 +00:00
// calcFeeType计算入参特殊处理
params.calcFeeType == 3 && (params.calcFeeType = 1);
2024-05-26 15:21:59 +00:00
let res = await apiService.calcWaybillFee({ custNo: this.modelInfo.custNo, ...params })
2024-05-06 16:38:24 +00:00
this.modelInfo.feeItems = res.data.feeList
this.modelInfo.freight = res.data.totalFee
2024-06-02 10:16:18 +00:00
},
handleRlFeeChange(item, val){
setTimeout(()=> {
this.calteFreight()
}, 500)
},
handleAwPriceChange(item) {
setTimeout(()=> {
this.calteShiRealfee(item)
}, 500)
},
handleIwFeeChange(item){
setTimeout(()=> {
this.calteShiRealfee(item)
}, 500)
},
calteShiRealfee(item){
if(item.blAutoGen == 1 && item.calcExp) {
let { settlementWeight } = this.modelInfo
let { initialWeightFee, addWeightPrice, calcExp } = item
let expr = calcExp;
expr = expr.replace("s", initialWeightFee);
expr = expr.replace("d", addWeightPrice);
expr = expr.replace("w", settlementWeight);
item.realFee = parseFloat(eval(expr)).toFixed(2);
this.calteFreight()
}
},
// 更新总费用
calteFreight(){
let total = 0
this.modelInfo.feeItems.map(t=> {
2024-06-11 05:15:01 +00:00
total += (+(t.realFee || 0))
2024-06-02 10:16:18 +00:00
})
this.modelInfo.freight = total
2024-06-11 03:25:41 +00:00
},
2024-06-13 08:06:13 +00:00
async handleCostItemSure(data){
if(data.feeCode == '9999') {
if(!data.realFee) {
this.showToast("实收不能为空")
return false
}
}
2024-06-11 03:25:41 +00:00
this.modelInfo.feeItems.push({ ...data })
2024-06-13 08:06:13 +00:00
this.costModal.show = false
2024-06-11 03:25:41 +00:00
setTimeout(()=>{
this.calteFreight()
}, 500)
2024-04-27 09:59:09 +00:00
}
2024-01-30 07:40:49 +00:00
}
}
</script>
<style scoped lang="scss">
2024-04-29 08:13:17 +00:00
.shet-cont {}
.jsfm-item {
2024-06-02 10:16:18 +00:00
position: relative;
2024-04-27 09:59:09 +00:00
background-color: #F6F6F6;
padding: 20rpx;
margin-bottom: 20rpx;
2024-01-31 06:45:51 +00:00
border-bottom: 2rpx solid #F6F6F6;
2024-04-29 08:13:17 +00:00
&:last-child {
2024-04-27 09:59:09 +00:00
margin-bottom: 0rpx;
}
2024-04-29 08:13:17 +00:00
.lft1 {
2024-06-02 10:16:18 +00:00
font-weight: 700;
2024-01-31 06:45:51 +00:00
width: 150rpx;
margin-right: 10rpx;
}
2024-04-29 08:13:17 +00:00
.delicon {
2024-01-31 06:45:51 +00:00
padding: 16rpx 0 16rpx 20rpx;
}
2024-01-30 07:40:49 +00:00
}
2024-04-29 08:13:17 +00:00
.nobg {
2024-04-27 09:59:09 +00:00
background-color: transparent;
}
2024-01-30 07:40:49 +00:00
</style>