Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
bf87e336
Commit
bf87e336
authored
Nov 26, 2024
by
zhengyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
费用申请补充付款人字典业务逻辑补充
parent
e5902c86
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
62 additions
and
4 deletions
+62
-4
order.js
src/api/ecw/order.js
+8
-0
BatchFeeApplication.vue
src/views/ecw/order/components/BatchFeeApplication.vue
+3
-1
warehouseDetails.vue
src/views/ecw/order/components/warehouseDetails.vue
+1
-0
feeApplication.vue
src/views/ecw/order/feeApplication.vue
+50
-3
No files found.
src/api/ecw/order.js
View file @
bf87e336
...
...
@@ -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
)
{
return
request
({
...
...
src/views/ecw/order/components/BatchFeeApplication.vue
View file @
bf87e336
...
...
@@ -24,7 +24,8 @@
<div
v-for=
"(item, index) in feeList"
:key=
"item.id"
>
{{
index
+
1
}}
、【
<dict-tag
:type=
"DICT_TYPE.FEE_TYPE"
:value=
"item.feeType"
/>
】,
<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
(
'
无
'
)
}}
</div>
</div>
...
...
@@ -61,6 +62,7 @@ export default {
name
:
"
BatchFeeApplicationDetail
"
,
data
(){
return
{
DICT_TYPE
,
order
:
null
,
feeList
:
[],
currencyList
:[]
...
...
src/views/ecw/order/components/warehouseDetails.vue
View file @
bf87e336
...
...
@@ -123,6 +123,7 @@
<!-- <dict-tag :type="DICT_TYPE.COMMISSION_ CURRENCY_TYPE" :value="FeeDetails.applicationFeeCurrency" />, -->
{{currencyName(FeeDetails.applicationFeeCurrency)}}
<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}}】
</div>
</div>
...
...
src/views/ecw/order/feeApplication.vue
View file @
bf87e336
...
...
@@ -49,6 +49,7 @@
:disabled=
"!scope.row.editMode && !!scope.row.status"
:type=
"DICT_TYPE.FEE_TYPE"
v-model=
"scope.row.feeType"
@
change=
"updatePayer(scope.row)"
/>
</
template
>
</el-table-column>
...
...
@@ -84,6 +85,16 @@
/>
</
template
>
</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('备注')"
>
<
template
v-slot:default=
"scope"
>
<el-input
...
...
@@ -152,8 +163,7 @@
:disabled=
"!feeList.length && !editMode"
@
click=
"submit"
>
{{ $t("提交") }}
</el-button
>
</el-button>
<el-button
type=
"primary"
v-if=
"processInstanceId"
...
...
@@ -190,7 +200,7 @@ import {
getFeeApplicationApproveByOrderId
,
getBatchFeeByProcessId
,
qetBatchFeeByBusinessId
,
getBatchFeeByBusinessId
,
feeApplicationDelete
,
getBatchFeeByBusinessId
,
feeApplicationDelete
,
getFeeDraweeByFeeType
,
}
from
"
@/api/ecw/order
"
;
import
{
getDictDatas
,
DICT_TYPE
}
from
"
@/utils/dict
"
;
import
workFlow
from
"
@/components/WorkFlow
"
;
...
...
@@ -278,16 +288,53 @@ export default {
this
.
list
.
splice
(
index
,
1
);
});
},
// 过滤订单状态筛选字典内容
payerDictFilter
(
item
)
{
if
(
item
.
value
&&
item
.
value
==
3
)
{
return
false
}
return
true
},
// 修改
modify
(
item
)
{
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
()
{
this
.
list
.
push
({
orderId
:
this
.
orderId
,
feeType
:
undefined
,
//费用申请类型
applicationFee
:
undefined
,
//金额
applicationFeeCurrency
:
undefined
,
// 费用申请货币类型
payer
:
this
.
orderDetails
.
drawee
&&
this
.
orderDetails
.
drawee
!=
3
?
this
.
orderDetails
.
drawee
:
undefined
,
// 费用申请付款人
remarks
:
undefined
,
receiveFlag
:
0
,
applicationAuthor
:
undefined
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment