Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
Project
Project
Details
Activity
Releases
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
youjj
cloud-platform
Commits
26d915ea
Commit
26d915ea
authored
Nov 28, 2019
by
hanfeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
总业绩统计
parent
a01315b4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
ReturnOrderAmount.java
.../java/com/xxfc/platform/order/pojo/ReturnOrderAmount.java
+3
-0
TotalPerformanceBiz.java
...java/com/xxfc/platform/order/biz/TotalPerformanceBiz.java
+1
-2
No files found.
xx-order/xx-order-api/src/main/java/com/xxfc/platform/order/pojo/ReturnOrderAmount.java
View file @
26d915ea
...
...
@@ -53,6 +53,9 @@ public class ReturnOrderAmount implements Serializable {
public
String
getType
()
{
return
orderTypeMap
.
get
(
type
);
}
public
Integer
getTypeInt
()
{
return
this
.
type
;
}
public
String
getTime
()
{
Date
date
=
new
Date
(
this
.
time
);
...
...
xx-order/xx-order-server/src/main/java/com/xxfc/platform/order/biz/TotalPerformanceBiz.java
View file @
26d915ea
...
...
@@ -128,9 +128,8 @@ public class TotalPerformanceBiz {
//判断押金退还是否大于0
if
(
depositAmount
.
compareTo
(
BigDecimal
.
ZERO
)>
0
)
{
ReturnOrderAmount
returnOrderAmountClone
=
ObjectUtil
.
clone
(
returnOrderAmount
);
//判断是违章还是租车
if
(
OrderTypeEnum
.
RENT_VEHICLE
.
equals
(
returnOrderAmount
.
getType
()))
{
if
(
OrderTypeEnum
.
RENT_VEHICLE
.
equals
(
returnOrderAmount
.
getType
Int
()))
{
if
(
AccountTypeEnum
.
OUT_RESIDUE_DEPOSIT
.
getCode
().
equals
(
returnOrderAmount
.
getAccountType
()))
{
returnOrderAmountClone
.
setRefundInstruction
(
"违章押金"
);
returnOrderAmountClone
.
setRefundAmount
(
accountDetailStr
.
getDepositAmount
());
...
...
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