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
eed64855
Commit
eed64855
authored
Sep 29, 2019
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
转账审批详情修改:原价改成销售价
parent
cc5f9c9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
TransferAccountsApprovalController.java
...ce/web/controller/TransferAccountsApprovalController.java
+6
-3
No files found.
gic-platform-finance-web/src/main/java/com/gic/finance/web/controller/TransferAccountsApprovalController.java
View file @
eed64855
...
...
@@ -129,7 +129,8 @@ public class TransferAccountsApprovalController {
ServiceInfoVO
serviceInfoVO
=
new
ServiceInfoVO
();
serviceInfoVO
.
setServeName
(
itemDTO
.
getServeName
());
serviceInfoVO
.
setSkuInfo
(
itemDTO
.
getSkuInfo
());
serviceInfoVO
.
setTotalAmount
(
itemDTO
.
getTotalAmount
());
//销售价
serviceInfoVO
.
setTotalAmount
(
itemDTO
.
getSaleAmount
());
serviceInfoVO
.
setServeInfo
(
itemDTO
.
getServeInfo
());
serviceInfoVO
.
setApplicationId
(
itemDTO
.
getApplicationId
());
serviceInfoVOList
.
add
(
serviceInfoVO
);
...
...
@@ -138,7 +139,8 @@ public class TransferAccountsApprovalController {
LicenseVO
licenseVO
=
new
LicenseVO
();
licenseVO
.
setLicenseUnit
(
itemDTO
.
getLicenseUnit
());
licenseVO
.
setServeName
(
itemDTO
.
getServeName
());
licenseVO
.
setTotalAmount
(
itemDTO
.
getTotalAmount
());
//销售价
licenseVO
.
setTotalAmount
(
itemDTO
.
getSaleAmount
());
licenseVO
.
setServeQuantity
(
itemDTO
.
getServeQuantity
());
licenseVO
.
setServeInfo
(
itemDTO
.
getServeInfo
());
licenseVO
.
setApplicationId
(
itemDTO
.
getApplicationId
());
...
...
@@ -149,7 +151,8 @@ public class TransferAccountsApprovalController {
expandPackageVO
.
setImageUrl
(
itemDTO
.
getImageUrl
());
expandPackageVO
.
setServeName
(
itemDTO
.
getServeName
());
expandPackageVO
.
setServeQuantity
(
itemDTO
.
getServeQuantity
());
expandPackageVO
.
setTotalAmount
(
itemDTO
.
getTotalAmount
());
//销售价
expandPackageVO
.
setTotalAmount
(
itemDTO
.
getSaleAmount
());
expandPackageVO
.
setServeInfo
(
itemDTO
.
getServeInfo
());
expandPackageVOList
.
add
(
expandPackageVO
);
}
...
...
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