Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-finance
Overview
Overview
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
base_platform_enterprise
gic-platform-finance
Commits
4815d6d8
Commit
4815d6d8
authored
Dec 04, 2019
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
扩容审批详情修改
parent
7f0be348
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
55 additions
and
0 deletions
+55
-0
TransferAccountsApprovalController.java
...ce/web/controller/TransferAccountsApprovalController.java
+4
-0
ExpandPackageVO.java
...src/main/java/com/gic/finance/web/vo/ExpandPackageVO.java
+13
-0
LicenseVO.java
...e-web/src/main/java/com/gic/finance/web/vo/LicenseVO.java
+13
-0
ServiceInfoVO.java
...b/src/main/java/com/gic/finance/web/vo/ServiceInfoVO.java
+13
-0
TransferApprovalServiceVO.java
...ava/com/gic/finance/web/vo/TransferApprovalServiceVO.java
+12
-0
No files found.
gic-platform-finance-web/src/main/java/com/gic/finance/web/controller/TransferAccountsApprovalController.java
View file @
4815d6d8
...
...
@@ -112,6 +112,7 @@ public class TransferAccountsApprovalController {
vo
.
setRelationOrderType
(
orderDTO
.
getOrderType
());
vo
.
setOperType
(
orderDTO
.
getOperType
());
vo
.
setOperName
(
orderDTO
.
getOperName
());
vo
.
setPayDetail
(
orderDTO
.
getPayDetail
());
String
couponName
=
orderDTO
.
getCouponName
();
if
(!
StringUtils
.
isBlank
(
couponName
))
{
ServiceDiscountVO
discountVO
=
new
ServiceDiscountVO
();
...
...
@@ -133,6 +134,7 @@ public class TransferAccountsApprovalController {
serviceInfoVO
.
setTotalAmount
(
itemDTO
.
getSaleAmount
());
serviceInfoVO
.
setServeInfo
(
itemDTO
.
getServeInfo
());
serviceInfoVO
.
setApplicationId
(
itemDTO
.
getApplicationId
());
serviceInfoVO
.
setPayDetail
(
itemDTO
.
getPayDetail
());
serviceInfoVOList
.
add
(
serviceInfoVO
);
}
else
if
(
itemDTO
.
getServeType
()
==
2
)
{
//license
...
...
@@ -144,6 +146,7 @@ public class TransferAccountsApprovalController {
licenseVO
.
setServeQuantity
(
itemDTO
.
getServeQuantity
());
licenseVO
.
setServeInfo
(
itemDTO
.
getServeInfo
());
licenseVO
.
setApplicationId
(
itemDTO
.
getApplicationId
());
licenseVO
.
setPayDetail
(
itemDTO
.
getPayDetail
());
licenseVOList
.
add
(
licenseVO
);
}
else
if
(
itemDTO
.
getServeType
()
==
3
)
{
//拓展包
...
...
@@ -153,6 +156,7 @@ public class TransferAccountsApprovalController {
expandPackageVO
.
setServeQuantity
(
itemDTO
.
getServeQuantity
());
//销售价
expandPackageVO
.
setTotalAmount
(
itemDTO
.
getSaleAmount
());
expandPackageVO
.
setPayDetail
(
itemDTO
.
getPayDetail
());
expandPackageVO
.
setServeInfo
(
itemDTO
.
getServeInfo
());
expandPackageVOList
.
add
(
expandPackageVO
);
}
...
...
gic-platform-finance-web/src/main/java/com/gic/finance/web/vo/ExpandPackageVO.java
View file @
4815d6d8
...
...
@@ -37,6 +37,11 @@ public class ExpandPackageVO implements Serializable{
*/
private
String
serveInfo
;
/**
* 支付详情json{100:现金 ,101:xxx}
*/
private
String
payDetail
;
public
String
getServeName
()
{
return
serveName
;
...
...
@@ -77,4 +82,12 @@ public class ExpandPackageVO implements Serializable{
public
void
setServeInfo
(
String
serveInfo
)
{
this
.
serveInfo
=
serveInfo
;
}
public
String
getPayDetail
()
{
return
payDetail
;
}
public
void
setPayDetail
(
String
payDetail
)
{
this
.
payDetail
=
payDetail
;
}
}
gic-platform-finance-web/src/main/java/com/gic/finance/web/vo/LicenseVO.java
View file @
4815d6d8
...
...
@@ -39,6 +39,11 @@ public class LicenseVO implements Serializable{
*/
private
Long
applicationId
;
/**
* 支付详情json{100:现金 ,101:xxx}
*/
private
String
payDetail
;
public
String
getServeInfo
()
{
return
serveInfo
;
}
...
...
@@ -86,4 +91,12 @@ public class LicenseVO implements Serializable{
public
void
setApplicationId
(
Long
applicationId
)
{
this
.
applicationId
=
applicationId
;
}
public
String
getPayDetail
()
{
return
payDetail
;
}
public
void
setPayDetail
(
String
payDetail
)
{
this
.
payDetail
=
payDetail
;
}
}
gic-platform-finance-web/src/main/java/com/gic/finance/web/vo/ServiceInfoVO.java
View file @
4815d6d8
...
...
@@ -43,6 +43,11 @@ public class ServiceInfoVO implements Serializable{
private
BigDecimal
totalAmount
;
/**
* 支付详情json{100:现金 ,101:xxx}
*/
private
String
payDetail
;
/**
* 应用id
*/
private
Long
applicationId
;
...
...
@@ -106,4 +111,12 @@ public class ServiceInfoVO implements Serializable{
public
void
setLicenseVOList
(
List
<
LicenseVO
>
licenseVOList
)
{
this
.
licenseVOList
=
licenseVOList
;
}
public
String
getPayDetail
()
{
return
payDetail
;
}
public
void
setPayDetail
(
String
payDetail
)
{
this
.
payDetail
=
payDetail
;
}
}
gic-platform-finance-web/src/main/java/com/gic/finance/web/vo/TransferApprovalServiceVO.java
View file @
4815d6d8
...
...
@@ -105,6 +105,10 @@ public class TransferApprovalServiceVO implements Serializable{
*/
private
Double
totalCountFee
;
/**
* 支付详情json{100:现金 ,101:xxx}
*/
private
String
payDetail
;
/**
* 订单创建时间
*/
private
Date
orderCreateTime
;
...
...
@@ -435,4 +439,12 @@ public class TransferApprovalServiceVO implements Serializable{
public
void
setOrderNumber
(
String
orderNumber
)
{
this
.
orderNumber
=
orderNumber
;
}
public
String
getPayDetail
()
{
return
payDetail
;
}
public
void
setPayDetail
(
String
payDetail
)
{
this
.
payDetail
=
payDetail
;
}
}
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