Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-platform
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
黄庭坚
jinfa-platform
Commits
139dfbc3
Commit
139dfbc3
authored
Dec 29, 2020
by
XieZhiXiong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 添加退款对应弹窗内容显示
parent
77608542
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
138 additions
and
43 deletions
+138
-43
index.tsx
...ges/afterService/components/RefundModal/Balance/index.tsx
+3
-0
index.tsx
...ages/afterService/components/RefundModal/Credit/index.tsx
+68
-20
index.tsx
...terService/components/RefundModal/UploadVoucher/index.tsx
+14
-13
index.tsx
src/pages/afterService/components/RefundModal/index.tsx
+19
-6
index.tsx
src/pages/afterService/components/ReturnDetailInfo/index.tsx
+30
-4
index.tsx
...Service/returnApplication/components/DetailInfo/index.tsx
+2
-0
index.tsx
...afterService/returnManage/components/DetailInfo/index.tsx
+2
-0
No files found.
src/pages/afterService/components/RefundModal/Balance/index.tsx
View file @
139dfbc3
...
...
@@ -41,6 +41,9 @@ const Balance: React.FC<BalanceProps> = ({
const
[
loading
,
setLoading
]
=
useState
(
false
);
const
getPayAssetAccountGetUserBalance
=
()
=>
{
if
(
!
purchaserId
||
!
purchaserRoleId
)
{
return
;
}
setLoading
(
false
);
PublicApi
.
getPayAssetAccountGetChildUserBalance
({
childMemberId
:
`
${
purchaserId
}
`
,
...
...
src/pages/afterService/components/RefundModal/Credit/index.tsx
View file @
139dfbc3
import
React
,
{
useState
}
from
'react'
;
import
{
Descriptions
,
Space
,
Button
}
from
'antd'
;
import
React
,
{
useState
,
useEffect
}
from
'react'
;
import
{
Descriptions
,
Space
,
Button
,
Spin
}
from
'antd'
;
import
{
PublicApi
}
from
'@/services/api'
;
interface
bankAccount
{
id
:
number
,
name
:
string
,
bankAccount
:
string
,
bankDeposit
:
string
,
memberId
:
number
,
interface
Credit
{
quota
:
number
,
useQuota
:
number
,
canUseQuota
:
number
,
isUsable
:
number
,
};
interface
BalanceProps
{
...
...
@@ -26,6 +26,22 @@ interface BalanceProps {
* 弹窗提交 loading
*/
submitLoading
:
boolean
;
/**
* 采购商id
*/
purchaserId
:
number
,
/**
* 采购商角色id
*/
purchaserRoleId
:
number
,
/**
* 供应商id
*/
supplierId
:
number
,
/**
* 供应商角色id
*/
supplierRoleId
:
number
,
};
const
Credit
:
React
.
FC
<
BalanceProps
>
=
({
...
...
@@ -33,23 +49,55 @@ const Credit: React.FC<BalanceProps> = ({
handleConfirm
,
value
,
submitLoading
,
purchaserId
,
purchaserRoleId
,
supplierId
,
supplierRoleId
,
})
=>
{
const
[
bankAccount
,
setBankAccount
]
=
useState
<
bankAccount
>
({
id
:
0
,
name
:
''
,
bankAccount
:
''
,
bankDeposit
:
''
,
memberId
:
0
,
const
[
credit
,
setCredit
]
=
useState
<
Credit
>
({
quota
:
0
,
useQuota
:
0
,
canUseQuota
:
0
,
isUsable
:
0
,
});
const
[
loading
,
setLoading
]
=
useState
(
false
);
const
getMemberCredit
=
()
=>
{
if
(
!
purchaserId
||
!
purchaserRoleId
||
!
supplierId
||
!
supplierRoleId
)
{
return
;
}
setLoading
(
true
);
PublicApi
.
getPayCreditGetMemberCredit
({
memberId
:
`
${
purchaserId
}
`
,
roleId
:
`
${
purchaserRoleId
}
`
,
parentMemberId
:
`
${
supplierId
}
`
,
parentMemberRoleId
:
`
${
supplierRoleId
}
`
,
}).
then
(
res
=>
{
if
(
res
.
code
===
1000
)
{
setCredit
(
res
.
data
);
}
}).
finally
(()
=>
{
setLoading
(
false
);
});
};
useEffect
(()
=>
{
getMemberCredit
();
},
[]);
return
(
<
>
<
Spin
spinning=
{
loading
}
>
<
Descriptions
title=
"授信额度信息"
column=
{
1
}
>
<
Descriptions
.
Item
label=
"总授信额度"
>
¥
500000.00
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"已用授信额度"
>
¥
500000.00
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"可用授信额度"
>
¥
500000.00
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"总授信额度"
>
¥
{
credit
.
quota
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"已用授信额度"
>
¥
{
credit
.
useQuota
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"可用授信额度"
>
¥
{
credit
.
canUseQuota
}
</
Descriptions
.
Item
>
<
Descriptions
.
Item
label=
"当前退款金额"
>
<
span
style=
{
{
color
:
'#EF6260'
}
}
>
¥
6000.00
</
span
>
<
span
style=
{
{
color
:
'#EF6260'
}
}
>
¥
{
value
.
refundAmount
}
</
span
>
</
Descriptions
.
Item
>
</
Descriptions
>
...
...
@@ -67,7 +115,7 @@ const Credit: React.FC<BalanceProps> = ({
</
Button
>
</
Space
>
</
div
>
</
>
</
Spin
>
)
};
...
...
src/pages/afterService/components/RefundModal/UploadVoucher/index.tsx
View file @
139dfbc3
...
...
@@ -7,10 +7,11 @@ import { uploadVoucherModalSchema } from './schema';
const
uploadVoucherFormActions
=
createFormActions
();
interface
b
ankAccount
{
interface
B
ankAccount
{
name
:
string
,
bankAccount
:
string
,
bankDeposit
:
string
,
id
:
number
,
};
interface
UploadVoucherProps
{
...
...
@@ -48,22 +49,23 @@ const UploadVoucher: React.FC<UploadVoucherProps> = ({
purchaserId
,
purchaserRoleId
,
})
=>
{
const
[
bankAccount
,
setBankAccount
]
=
useState
<
b
ankAccount
>
({
const
[
bankAccount
,
setBankAccount
]
=
useState
<
B
ankAccount
>
({
name
:
''
,
bankAccount
:
''
,
bankDeposit
:
''
,
id
:
0
,
});
const
[
loading
,
setLoading
]
=
useState
(
false
);
// 获取对公账户信息
const
getSettleAccounts
CorporateAccountConfig
=
(
memberId
:
number
,
memberRoleId
:
number
)
=>
{
if
(
!
memberId
||
!
memb
erRoleId
)
{
const
getSettleAccounts
GetMemberAccountConfig
=
(
)
=>
{
if
(
!
purchaserId
||
!
purchas
erRoleId
)
{
return
;
}
setLoading
(
true
);
PublicApi
.
getSettleAccounts
Corporate
AccountConfig
({
memberId
:
`
${
memb
erId
}
`
,
memberRoleId
:
`
${
memb
erRoleId
}
`
,
PublicApi
.
getSettleAccounts
GetMember
AccountConfig
({
memberId
:
`
${
purchas
erId
}
`
,
roleId
:
`
${
purchas
erRoleId
}
`
,
}).
then
(
res
=>
{
if
(
res
.
code
===
1000
)
{
setBankAccount
(
res
.
data
);
...
...
@@ -74,11 +76,10 @@ const UploadVoucher: React.FC<UploadVoucherProps> = ({
};
useEffect
(()
=>
{
getSettleAccounts
CorporateAccountConfig
(
purchaserId
,
purchaserRoleId
);
getSettleAccounts
GetMemberAccountConfig
(
);
},
[]);
const
beforeUploadVoucher
=
file
=>
{
console
.
log
(
file
.
size
)
if
(
file
.
size
/
1024
>
200
)
{
message
.
warning
(
'图片大小超过200K'
);
return
Promise
.
reject
();
...
...
@@ -86,17 +87,17 @@ const UploadVoucher: React.FC<UploadVoucherProps> = ({
};
const
handleUploadVoucherSubmit
=
values
=>
{
const
{
fileList
=
[]
}
=
values
;
const
{
fileList
=
[]
,
id
,
...
rest
}
=
values
;
if
(
handleConfirm
)
{
if
(
!
bankAccount
||
!
bankAccount
.
name
)
{
if
(
!
bankAccount
||
!
bankAccount
.
id
)
{
message
.
error
(
'没有收款账户相关信息,无法退款'
);
return
;
}
handleConfirm
({
...
value
,
payProve
:
{
...
values
,
...
rest
,
fileList
:
fileList
.
map
(
item
=>
item
.
status
===
'done'
&&
({
name
:
item
.
name
,
proveUrl
:
item
.
data
.
url
,
...
...
@@ -110,7 +111,7 @@ const UploadVoucher: React.FC<UploadVoucherProps> = ({
<
Spin
spinning=
{
loading
}
>
<
NiceForm
previewPlaceholder=
""
initialValues
=
{
bankAccount
}
value
=
{
bankAccount
}
effects=
{
(
$
,
{
setFieldState
})
=>
{
}
}
...
...
src/pages/afterService/components/RefundModal/index.tsx
View file @
139dfbc3
...
...
@@ -41,6 +41,13 @@ const RefundModal: React.FC<RefundModalProps> = ({
value
,
submitLoading
,
})
=>
{
const
{
purchaserId
,
purchaserRoleId
,
supplierId
,
supplierRoleId
,
...
rest
}
=
value
;
const
tempMap
=
{
uploadVoucher
:
{
...
...
@@ -49,9 +56,9 @@ const RefundModal: React.FC<RefundModalProps> = ({
render
:
()
=>
(
<
Suspense
fallback=
{
null
}
>
<
UploadVoucher
value=
{
value
}
purchaserId=
{
value
.
purchaserId
}
purchaserRoleId=
{
value
.
purchaserRoleId
}
value=
{
rest
}
purchaserId=
{
purchaserId
}
purchaserRoleId=
{
purchaserRoleId
}
handleConfirm=
{
handleConfirm
}
handleModalVisible=
{
handleModalVisible
}
submitLoading=
{
submitLoading
}
...
...
@@ -65,7 +72,9 @@ const RefundModal: React.FC<RefundModalProps> = ({
render
:
()
=>
(
<
Suspense
fallback=
{
null
}
>
<
Balance
value=
{
value
}
value=
{
rest
}
purchaserId=
{
purchaserId
}
purchaserRoleId=
{
purchaserRoleId
}
handleConfirm=
{
handleConfirm
}
handleModalVisible=
{
handleModalVisible
}
submitLoading=
{
submitLoading
}
...
...
@@ -79,7 +88,11 @@ const RefundModal: React.FC<RefundModalProps> = ({
render
:
()
=>
(
<
Suspense
fallback=
{
null
}
>
<
Credit
value=
{
value
}
value=
{
rest
}
purchaserId=
{
purchaserId
}
purchaserRoleId=
{
purchaserRoleId
}
supplierId=
{
supplierId
}
supplierRoleId=
{
supplierRoleId
}
handleConfirm=
{
handleConfirm
}
handleModalVisible=
{
handleModalVisible
}
submitLoading=
{
submitLoading
}
...
...
@@ -93,7 +106,7 @@ const RefundModal: React.FC<RefundModalProps> = ({
render
:
()
=>
(
<
Suspense
fallback=
{
null
}
>
<
COD
value=
{
value
}
value=
{
rest
}
handleConfirm=
{
handleConfirm
}
handleModalVisible=
{
handleModalVisible
}
submitLoading=
{
submitLoading
}
...
...
src/pages/afterService/components/ReturnDetailInfo/index.tsx
View file @
139dfbc3
...
...
@@ -2,7 +2,7 @@
* @Author: XieZhiXiong
* @Date: 2020-11-05 18:02:18
* @LastEditors: XieZhiXiong
* @LastEditTime: 2020-12-2
8 13:53:00
* @LastEditTime: 2020-12-2
9 11:00:22
* @Description: 退款明细
*/
import
React
,
{
useState
}
from
'react'
;
...
...
@@ -66,6 +66,14 @@ interface ReturnDetailInfoProps {
* 采购商角色id
*/
purchaserRoleId
:
number
,
/**
* 供应商id
*/
supplierId
:
number
,
/**
* 供应商角色id
*/
supplierRoleId
:
number
,
};
const
ReturnDetailInfo
:
React
.
FC
<
ReturnDetailInfoProps
>
=
({
...
...
@@ -76,6 +84,8 @@ const ReturnDetailInfo: React.FC<ReturnDetailInfoProps> = ({
innerStatus
,
purchaserId
,
purchaserRoleId
,
supplierId
,
supplierRoleId
,
})
=>
{
const
[
visibleResult
,
setVisibleResult
]
=
useState
(
false
);
const
[
notReceivedLoading
,
setNotReceivedLoading
]
=
useState
(
false
);
...
...
@@ -159,21 +169,37 @@ const ReturnDetailInfo: React.FC<ReturnDetailInfoProps> = ({
case
PAY_CHANNEL_BALANCE
:
{
setModalName
(
'balance'
);
setRefundModalVisible
(
true
);
setRefundModalValue
({
id
,
refundAmount
:
amount
});
setRefundModalValue
({
id
,
refundAmount
:
amount
,
purchaserId
,
purchaserRoleId
,
});
break
;
};
// 线下支付
case
PAY_CHANNEL_OFFLINE
:
{
setModalName
(
'uploadVoucher'
);
setRefundModalVisible
(
true
);
setRefundModalValue
({
id
,
purchaserId
,
purchaserRoleId
});
setRefundModalValue
({
id
,
purchaserId
,
purchaserRoleId
,
});
break
;
};
// 授信支付
case
PAY_CHANNEL_CREDIT
:
{
setModalName
(
'credit'
);
setRefundModalVisible
(
true
);
setRefundModalValue
({
id
,
refundAmount
:
amount
});
setRefundModalValue
({
id
,
refundAmount
:
amount
,
purchaserId
,
purchaserRoleId
,
supplierId
,
supplierRoleId
,
});
break
;
};
// 货到付款
...
...
src/pages/afterService/returnApplication/components/DetailInfo/index.tsx
View file @
139dfbc3
...
...
@@ -418,6 +418,8 @@ const DetailInfo: React.FC<DetailInfoProps> = ({
innerStatus=
{
detailInfo
?.
innerStatus
}
purchaserId=
{
detailInfo
?.
memberId
}
purchaserRoleId=
{
detailInfo
?.
roleId
}
supplierId=
{
detailInfo
?.
parentMemberId
}
supplierRoleId=
{
detailInfo
?.
parentMemberRoleId
}
isPurchaser
/>
</
Suspense
>
...
...
src/pages/afterService/returnManage/components/DetailInfo/index.tsx
View file @
139dfbc3
...
...
@@ -465,6 +465,8 @@ const DetailInfo: React.FC<DetailInfoProps> = ({
innerStatus=
{
detailInfo
?.
innerStatus
}
purchaserId=
{
detailInfo
?.
memberId
}
purchaserRoleId=
{
detailInfo
?.
roleId
}
supplierId=
{
detailInfo
?.
parentMemberId
}
supplierRoleId=
{
detailInfo
?.
parentMemberRoleId
}
/>
</
Suspense
>
</
Col
>
...
...
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