Commit bf87e336 authored by zhengyi's avatar zhengyi

费用申请补充付款人字典业务逻辑补充

parent e5902c86
...@@ -45,6 +45,14 @@ export function getOrderDetail(orderId) { ...@@ -45,6 +45,14 @@ export function getOrderDetail(orderId) {
}) })
} }
// 获得订单编辑详情
export function getFeeDraweeByFeeType(feeType) {
return request({
url: "/ecw/order/fee/drawee/" + feeType,
method: "get"
})
}
// 获得订单分页 // 获得订单分页
export function getOrderPage(query) { export function getOrderPage(query) {
return request({ return request({
......
...@@ -24,7 +24,8 @@ ...@@ -24,7 +24,8 @@
<div v-for="(item, index) in feeList" :key="item.id"> <div v-for="(item, index) in feeList" :key="item.id">
{{index + 1}}、【<dict-tag :type="DICT_TYPE.FEE_TYPE" :value="item.feeType" />】, {{index + 1}}、【<dict-tag :type="DICT_TYPE.FEE_TYPE" :value="item.feeType" />】,
<dict-tag :value="item.payType" :type="DICT_TYPE.PAYMENT_TYPE" ></dict-tag> <dict-tag :value="item.payType" :type="DICT_TYPE.PAYMENT_TYPE" ></dict-tag>
{{ item.applicationFee }}{{ currencyName(item.applicationFeeCurrency) }} {{$t('金额')}}{{ item.applicationFee }}{{ currencyName(item.applicationFeeCurrency) }}
<dict-tag :value="item.payer" :type="DICT_TYPE.DRAWEE" ></dict-tag>{{$t('付款')}}
{{$t('备注')}}{{ item.remarks || $t('')}} {{$t('备注')}}{{ item.remarks || $t('')}}
</div> </div>
</div> </div>
...@@ -61,6 +62,7 @@ export default { ...@@ -61,6 +62,7 @@ export default {
name: "BatchFeeApplicationDetail", name: "BatchFeeApplicationDetail",
data(){ data(){
return{ return{
DICT_TYPE,
order: null, order: null,
feeList: [], feeList: [],
currencyList:[] currencyList:[]
......
...@@ -123,6 +123,7 @@ ...@@ -123,6 +123,7 @@
<!-- <dict-tag :type="DICT_TYPE.COMMISSION_ CURRENCY_TYPE" :value="FeeDetails.applicationFeeCurrency" />, --> <!-- <dict-tag :type="DICT_TYPE.COMMISSION_ CURRENCY_TYPE" :value="FeeDetails.applicationFeeCurrency" />, -->
{{currencyName(FeeDetails.applicationFeeCurrency)}} {{currencyName(FeeDetails.applicationFeeCurrency)}}
<dict-tag :value="FeeDetails.payType" :type="DICT_TYPE.PAYMENT_TYPE" ></dict-tag> <dict-tag :value="FeeDetails.payType" :type="DICT_TYPE.PAYMENT_TYPE" ></dict-tag>
<dict-tag :value="FeeDetails.payer" :type="DICT_TYPE.DRAWEE" ></dict-tag>{{ $t('付款') }},
【{{FeeDetails.remarks}}】 【{{FeeDetails.remarks}}】
</div> </div>
</div> </div>
......
...@@ -49,6 +49,7 @@ ...@@ -49,6 +49,7 @@
:disabled="!scope.row.editMode && !!scope.row.status" :disabled="!scope.row.editMode && !!scope.row.status"
:type="DICT_TYPE.FEE_TYPE" :type="DICT_TYPE.FEE_TYPE"
v-model="scope.row.feeType" v-model="scope.row.feeType"
@change="updatePayer(scope.row)"
/> />
</template> </template>
</el-table-column> </el-table-column>
...@@ -84,6 +85,16 @@ ...@@ -84,6 +85,16 @@
/> />
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('付款人')">
<template v-slot="{ row }">
<dict-selector
:disabled="!row.editMode && !!row.status"
:type="DICT_TYPE.DRAWEE"
:filter="payerDictFilter"
v-model="row.payer"
/>
</template>
</el-table-column>
<el-table-column :label="$t('备注')"> <el-table-column :label="$t('备注')">
<template v-slot:default="scope"> <template v-slot:default="scope">
<el-input <el-input
...@@ -152,8 +163,7 @@ ...@@ -152,8 +163,7 @@
:disabled="!feeList.length && !editMode" :disabled="!feeList.length && !editMode"
@click="submit" @click="submit"
>{{ $t("提交") }} >{{ $t("提交") }}
</el-button </el-button>
>
<el-button <el-button
type="primary" type="primary"
v-if="processInstanceId" v-if="processInstanceId"
...@@ -190,7 +200,7 @@ import { ...@@ -190,7 +200,7 @@ import {
getFeeApplicationApproveByOrderId, getFeeApplicationApproveByOrderId,
getBatchFeeByProcessId, getBatchFeeByProcessId,
qetBatchFeeByBusinessId, qetBatchFeeByBusinessId,
getBatchFeeByBusinessId, feeApplicationDelete, getBatchFeeByBusinessId, feeApplicationDelete, getFeeDraweeByFeeType,
} from "@/api/ecw/order"; } from "@/api/ecw/order";
import {getDictDatas, DICT_TYPE} from "@/utils/dict"; import {getDictDatas, DICT_TYPE} from "@/utils/dict";
import workFlow from "@/components/WorkFlow"; import workFlow from "@/components/WorkFlow";
...@@ -278,16 +288,53 @@ export default { ...@@ -278,16 +288,53 @@ export default {
this.list.splice(index, 1); this.list.splice(index, 1);
}); });
}, },
// 过滤订单状态筛选字典内容
payerDictFilter(item) {
if (item.value && item.value == 3) {
return false
}
return true
},
// 修改 // 修改
modify(item) { modify(item) {
this.$set(item, "editMode", true); this.$set(item, "editMode", true);
}, },
updatePayer(item) {
console.log("变动的费用记录:", item);
this.$nextTick(() => {
// 根据新费用类型和索引更新payer付款人信息
this.orderDetails.drawee ? (this.orderDetails.drawee != 3 ? this.$set(item, "payer", this.orderDetails.drawee) : this.getDraweePayer(item)) : undefined; // 费用申请付款人
console.log("变动的费用记录:", item);
})
},
getDraweePayer(item) {
let feeType = item.feeType
if (feeType) {
getFeeDraweeByFeeType(feeType).then(res => {
console.log(res.data)
let drawee = res.data
console.log("自定义费用枚举值:", drawee)
if (drawee) {
if (this.orderDetails.customDraweeVOList && this.orderDetails.customDraweeVOList.length > 0) {
let customDrawee = this.orderDetails.customDraweeVOList.find(item => item.name == drawee)
console.log("自定义费用类型值:", customDrawee)
if (customDrawee) {
console.log("返回值:", customDrawee.value)
this.$set(item, "payer", customDrawee.value)
}
}
}
});
}
},
addCost() { addCost() {
this.list.push({ this.list.push({
orderId: this.orderId, orderId: this.orderId,
feeType: undefined, //费用申请类型 feeType: undefined, //费用申请类型
applicationFee: undefined, //金额 applicationFee: undefined, //金额
applicationFeeCurrency: undefined, // 费用申请货币类型 applicationFeeCurrency: undefined, // 费用申请货币类型
payer: this.orderDetails.drawee && this.orderDetails.drawee != 3 ? this.orderDetails.drawee : undefined, // 费用申请付款人
remarks: undefined, remarks: undefined,
receiveFlag: 0, receiveFlag: 0,
applicationAuthor: undefined, applicationAuthor: undefined,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment