Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_ht
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
pseer
gxpt_ht
Commits
e916c699
Commit
e916c699
authored
Aug 23, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改数据统计
parent
5b287dad
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
1 deletions
+49
-1
OrderVo.java
...-system/src/main/java/share/system/domain/vo/OrderVo.java
+3
-0
OrderStatisticsResponse.java
...n/java/share/system/response/OrderStatisticsResponse.java
+2
-0
SOrderServiceImpl.java
...ain/java/share/system/service/impl/SOrderServiceImpl.java
+44
-1
No files found.
share-system/src/main/java/share/system/domain/vo/OrderVo.java
View file @
e916c699
...
...
@@ -94,6 +94,9 @@ public class OrderVo {
private
String
packName
;
//优惠卷名称
private
String
couponName
;
private
String
couponCode
;
private
Integer
platformType
;
private
BigDecimal
couponPayPrice
;
//订单状态
private
Integer
orderType
;
...
...
share-system/src/main/java/share/system/response/OrderStatisticsResponse.java
View file @
e916c699
...
...
@@ -2,6 +2,7 @@ package share.system.response;
import
lombok.Data
;
import
share.system.domain.SOrder
;
import
share.system.domain.vo.OrderVo
;
import
java.math.BigDecimal
;
import
java.util.List
;
...
...
@@ -50,5 +51,6 @@ public class OrderStatisticsResponse {
private
BigDecimal
integralRefundFee
=
BigDecimal
.
ZERO
;
//订单集合
private
List
<
SOrder
>
orderList
;
private
List
<
OrderVo
>
orderVoList
;
}
share-system/src/main/java/share/system/service/impl/SOrderServiceImpl.java
View file @
e916c699
...
...
@@ -2907,6 +2907,7 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme
@Override
public
OrderStatisticsResponse
statistics
(
OrderStatisticsRequest
request
)
{
SConsumer
user
=
FrontTokenComponent
.
getWxSConsumerEntry
();
List
<
OrderVo
>
orderVoList
=
new
ArrayList
<>();
if
(!
user
.
getRoleType
().
equals
(
RoleTypeEnum
.
CLEANER
.
getCode
()))
{
throw
new
RuntimeException
(
"当前用户不是店员"
);
}
...
...
@@ -2924,6 +2925,8 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme
.
eq
(
Recharge:
:
getStatus
,
YesNoEnum
.
yes
.
getIndex
())
);
Map
<
Long
,
SCoupon
>
sCouponMap
=
sCouponService
.
list
().
stream
().
collect
(
Collectors
.
toMap
(
SCoupon:
:
getId
,
Function
.
identity
()));
Map
<
Long
,
SStore
>
sStoreMap
=
storeService
.
list
().
stream
().
collect
(
Collectors
.
toMap
(
SStore:
:
getId
,
Function
.
identity
()));
Map
<
Long
,
SRoom
>
sRoomMap
=
roomService
.
list
().
stream
().
collect
(
Collectors
.
toMap
(
SRoom:
:
getId
,
Function
.
identity
()));
BigDecimal
rechargeAmount
=
rechargeList
.
stream
().
map
(
Recharge:
:
getRechargeAmount
).
reduce
(
BigDecimal
.
ZERO
,
BigDecimal:
:
add
);
OrderStatisticsResponse
statisticsResponse
=
new
OrderStatisticsResponse
();
Map
<
Long
,
SConsumerCoupon
>
map
=
new
HashMap
<>();
...
...
@@ -2940,7 +2943,16 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme
if
(
CollectionUtil
.
isNotEmpty
(
ids
))
{
map
.
putAll
(
consumerCouponService
.
selectByIds
(
ids
).
stream
().
collect
(
Collectors
.
toMap
(
SConsumerCoupon:
:
getId
,
Function
.
identity
())));
}
List
<
OrderVo
>
finalOrderVoList
=
orderVoList
;
orderList
.
stream
().
forEach
(
order
->
{
OrderVo
orderVo
=
new
OrderVo
();
BeanUtils
.
copyProperties
(
order
,
orderVo
);
orderVo
.
setOrderNo
(
order
.
getOrderNo
());
orderVo
.
setPayType
(
order
.
getPayType
());
orderVo
.
setOrderType
(
order
.
getOrderType
());
orderVo
.
setStoreName
(
sStoreMap
.
get
(
order
.
getStoreId
()).
getName
());
orderVo
.
setRoomName
(
sRoomMap
.
get
(
order
.
getRoomId
()).
getName
());
orderVo
.
setCreateTime
(
order
.
getCreateTime
());
if
(
order
.
getStatus
().
equals
(
OrderStatusEnum
.
CANCEL
.
getCode
())
&&
order
.
getRefundStatus
().
equals
(
RefundStatusEnum
.
REFUNDED
.
getCode
()))
{
if
(!
map
.
isEmpty
())
{
if
(
ObjectUtil
.
isNotEmpty
(
order
.
getCouponId
()))
{
...
...
@@ -2948,19 +2960,26 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme
if
(
ObjectUtil
.
isEmpty
(
sConsumerCoupon
))
{
return
;
}
orderVo
.
setCouponCode
(
sConsumerCoupon
.
getCouponCode
());
if
(
sConsumerCoupon
.
getCouponType
().
equals
(
CouponTypeEnum
.
CASH
.
getCode
()))
{
if
(
sConsumerCoupon
.
getPlatformType
().
equals
(
PlatformTypeEnum
.
MEITUAN
.
getCode
()))
{
orderVo
.
setPlatformType
(
PlatformTypeEnum
.
MEITUAN
.
getCode
());
if
(
ObjectUtil
.
isNotEmpty
(
sConsumerCoupon
.
getCouponPayPrice
()))
{
orderVo
.
setCouponPayPrice
(
sConsumerCoupon
.
getCouponPayPrice
());
statisticsResponse
.
setMeituanRefundFee
(
statisticsResponse
.
getMeituanRefundFee
().
add
(
sConsumerCoupon
.
getCouponPayPrice
()));
}
else
{
SCoupon
sCoupon
=
sCouponMap
.
get
(
sConsumerCoupon
.
getCouponId
());
orderVo
.
setCouponPayPrice
(
sCoupon
.
getCouponPayPrice
());
statisticsResponse
.
setMeituanRefundFee
(
statisticsResponse
.
getMeituanRefundFee
().
add
(
sCoupon
.
getCouponPayPrice
()));
}
}
else
if
(
sConsumerCoupon
.
getPlatformType
().
equals
(
PlatformTypeEnum
.
TIKTOK
.
getCode
()))
{
orderVo
.
setPlatformType
(
PlatformTypeEnum
.
TIKTOK
.
getCode
());
if
(
ObjectUtil
.
isNotEmpty
(
sConsumerCoupon
.
getCouponPayPrice
()))
{
orderVo
.
setCouponPayPrice
(
sConsumerCoupon
.
getCouponPayPrice
());
statisticsResponse
.
setDouyinRefundFee
(
statisticsResponse
.
getDouyinRefundFee
().
add
(
sConsumerCoupon
.
getCouponPayPrice
()));
}
else
{
SCoupon
sCoupon
=
sCouponMap
.
get
(
sConsumerCoupon
.
getCouponId
());
orderVo
.
setCouponPayPrice
(
sCoupon
.
getCouponPayPrice
());
statisticsResponse
.
setDouyinRefundFee
(
statisticsResponse
.
getDouyinRefundFee
().
add
(
sCoupon
.
getCouponPayPrice
()));
}
}
...
...
@@ -2975,19 +2994,29 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme
if
(!
map
.
isEmpty
())
{
if
(
ObjectUtil
.
isNotEmpty
(
order
.
getCouponId
()))
{
SConsumerCoupon
sConsumerCoupon
=
map
.
get
(
order
.
getCouponId
());
if
(
ObjectUtil
.
isEmpty
(
sConsumerCoupon
))
{
return
;
}
orderVo
.
setCouponCode
(
sConsumerCoupon
.
getCouponCode
());
if
(
sConsumerCoupon
.
getCouponType
().
equals
(
CouponTypeEnum
.
CASH
.
getCode
()))
{
if
(
sConsumerCoupon
.
getPlatformType
().
equals
(
PlatformTypeEnum
.
MEITUAN
.
getCode
()))
{
orderVo
.
setPlatformType
(
PlatformTypeEnum
.
MEITUAN
.
getCode
());
if
(
ObjectUtil
.
isNotEmpty
(
sConsumerCoupon
.
getCouponPayPrice
()))
{
orderVo
.
setCouponPayPrice
(
sConsumerCoupon
.
getCouponPayPrice
());
statisticsResponse
.
setMeituanFee
(
statisticsResponse
.
getMeituanFee
().
add
(
sConsumerCoupon
.
getCouponPayPrice
()));
}
else
{
SCoupon
sCoupon
=
sCouponMap
.
get
(
sConsumerCoupon
.
getCouponId
());
orderVo
.
setCouponPayPrice
(
sCoupon
.
getCouponPayPrice
());
statisticsResponse
.
setMeituanFee
(
statisticsResponse
.
getMeituanFee
().
add
(
sCoupon
.
getCouponPayPrice
()));
}
}
else
if
(
sConsumerCoupon
.
getPlatformType
().
equals
(
PlatformTypeEnum
.
TIKTOK
.
getCode
()))
{
orderVo
.
setPlatformType
(
PlatformTypeEnum
.
TIKTOK
.
getCode
());
if
(
ObjectUtil
.
isNotEmpty
(
sConsumerCoupon
.
getCouponPayPrice
()))
{
orderVo
.
setCouponPayPrice
(
sConsumerCoupon
.
getCouponPayPrice
());
statisticsResponse
.
setDouyinFee
(
statisticsResponse
.
getDouyinFee
().
add
(
sConsumerCoupon
.
getCouponPayPrice
()));
}
else
{
SCoupon
sCoupon
=
sCouponMap
.
get
(
sConsumerCoupon
.
getCouponId
());
orderVo
.
setCouponPayPrice
(
sCoupon
.
getCouponPayPrice
());
statisticsResponse
.
setDouyinFee
(
statisticsResponse
.
getDouyinFee
().
add
(
sCoupon
.
getCouponPayPrice
()));
}
}
...
...
@@ -2995,6 +3024,7 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme
}
}
}
finalOrderVoList
.
add
(
orderVo
);
});
//用户充值
statisticsResponse
.
setRechargeFee
(
rechargeAmount
);
...
...
@@ -3010,7 +3040,20 @@ public class SOrderServiceImpl extends ServiceImpl<SOrderMapper, SOrder> impleme
statisticsResponse
.
setTotalFee
(
statisticsResponse
.
getGroupFee
().
add
(
statisticsResponse
.
getPlatformFee
()));
//门店交易-门店交易退款
statisticsResponse
.
setActualFee
(
statisticsResponse
.
getStoreFee
().
subtract
(
statisticsResponse
.
getStoreRefundFee
()));
statisticsResponse
.
setOrderList
(
orderList
);
//计算开始时间和结束时间相差多少天
if
(
ObjectUtil
.
isNotEmpty
(
request
.
getStartTime
())
&&
ObjectUtil
.
isNotEmpty
(
request
.
getEndTime
()))
{
long
between
=
DateUtil
.
getTwoDateDays
(
request
.
getStartTime
(),
request
.
getEndTime
());
// ChronoUnit.DAYS.between((Temporal) request.getStartTime(), (Temporal) request.getEndTime());
//大于30天,截取结束时间减30天的订单
if
(
between
>
30
)
{
Date
date
=
DateUtil
.
addDay
(
request
.
getEndTime
(),
-
30
);
//截取orderList创建时间在结束时间和结束时间减30天的数据
// orderList = orderList.stream().filter(order -> order.getCreateTime().after(date)).collect(Collectors.toList());
orderVoList
=
orderVoList
.
stream
().
filter
(
order
->
order
.
getCreateTime
().
after
(
date
)).
collect
(
Collectors
.
toList
());
}
}
statisticsResponse
.
setOrderVoList
(
orderVoList
);
// statisticsResponse.setOrderList(orderList);
return
statisticsResponse
;
}
...
...
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