|
@@ -113,56 +113,55 @@ public class OrderLogic {
|
|
|
String exchangeCode, String orderStatus, String startCreateTime, String endCreateTime, String startPayTime,
|
|
|
String endPayTime, String websitId,
|
|
|
Integer pageNum, Integer pageSize,
|
|
|
- String isNegative,String abnormalDispatch,String workerOrderNo,String goodsId
|
|
|
+ String isNegative, String abnormalDispatch, String workerOrderNo, String goodsId
|
|
|
) {
|
|
|
AdminUserCom adminUser = commonLogic.getAdminUser(request);
|
|
|
|
|
|
//派工异常订单
|
|
|
- if(StringUtils.isNotEmpty(abnormalDispatch) && abnormalDispatch.trim().equals("true")){
|
|
|
- return abnormalDispatchOrder( adminUser, userId, orderId, productName, userName, phone,
|
|
|
- exchangeCode, orderStatus, startCreateTime, endCreateTime, startPayTime,
|
|
|
- endPayTime, websitId, pageNum, pageSize,
|
|
|
+ if (StringUtils.isNotEmpty(abnormalDispatch) && abnormalDispatch.trim().equals("true")) {
|
|
|
+ return abnormalDispatchOrder(adminUser, userId, orderId, productName, userName, phone,
|
|
|
+ exchangeCode, orderStatus, startCreateTime, endCreateTime, startPayTime,
|
|
|
+ endPayTime, websitId, pageNum, pageSize,
|
|
|
isNegative, abnormalDispatch);
|
|
|
}
|
|
|
|
|
|
List<String> orderIds = new ArrayList<>();
|
|
|
- if(StringUtils.isNotEmpty(workerOrderNo)) {
|
|
|
+ if (StringUtils.isNotEmpty(workerOrderNo)) {
|
|
|
List<OrderRequest> orderRequests = orderRequestService.lambdaQuery().eq(OrderRequest::getWorkerOrderNo, workerOrderNo).list();
|
|
|
orderIds = orderRequests.stream().map(OrderRequest::getOrderId).collect(Collectors.toList());
|
|
|
}
|
|
|
|
|
|
IPage page = orderInfoService.lambdaQuery()
|
|
|
- .in(CollectionUtils.isNotEmpty(adminUser.getAdminCompanyIds()),OrderInfo::getCompanyWechatId,adminUser.getAdminCompanyIds())
|
|
|
- ////.//in(CollectionUtils.isNotEmpty(adminUser.getAdminWebsitIds()),OrderInfo::getWebsitId,adminUser.getAdminWebsitIds())
|
|
|
+ .in(CollectionUtils.isNotEmpty(adminUser.getAdminCompanyIds()), OrderInfo::getCompanyWechatId, adminUser.getAdminCompanyIds())
|
|
|
+ .in(CollectionUtils.isNotEmpty(adminUser.getAdminWebsitIds()), OrderInfo::getWebsitId, adminUser.getAdminWebsitIds())
|
|
|
.eq(StringUtils.isNotEmpty(userId), OrderInfo::getUserId, userId)
|
|
|
- .eq(StringUtils.isNotEmpty(goodsId),OrderInfo::getPromotionPackageGoodsId,goodsId)
|
|
|
- .like(StringUtils.isNotEmpty(exchangeCode),OrderInfo::getExchangeCode,exchangeCode)
|
|
|
+ .eq(StringUtils.isNotEmpty(goodsId), OrderInfo::getPromotionPackageGoodsId, goodsId)
|
|
|
+ .like(StringUtils.isNotEmpty(exchangeCode), OrderInfo::getExchangeCode, exchangeCode)
|
|
|
.like(StringUtils.isNotEmpty(orderId), OrderInfo::getOrderId, orderId)
|
|
|
.like(StringUtils.isNotEmpty(productName), OrderInfo::getOrderTitle, productName)
|
|
|
- .in(CollectionUtils.isNotEmpty(orderIds),OrderInfo::getOrderId,orderIds)
|
|
|
- .eq(StringUtils.isNotEmpty(websitId),OrderInfo::getWebsitId,websitId)
|
|
|
- .and(StringUtils.isNotEmpty(userName), v -> v.like(OrderInfo::getUserName,userName).or().like(OrderInfo::getReceUserName,userName))
|
|
|
- .and(StringUtils.isNotEmpty(phone), v -> v.like(OrderInfo::getPhone, phone).or().like(OrderInfo::getRecePhone,phone).or().like(OrderInfo::getWorkerPhone,phone))
|
|
|
- // .in(!(adminWebsitBean.getType() && org.apache.commons.lang3.StringUtils.isEmpty(websitId)), OrderInfo::getWebsitNumber, websitNoList)
|
|
|
+ .in(CollectionUtils.isNotEmpty(orderIds), OrderInfo::getOrderId, orderIds)
|
|
|
+ .eq(StringUtils.isNotEmpty(websitId), OrderInfo::getWebsitId, websitId)
|
|
|
+ .and(StringUtils.isNotEmpty(userName), v -> v.like(OrderInfo::getUserName, userName).or().like(OrderInfo::getReceUserName, userName))
|
|
|
+ .and(StringUtils.isNotEmpty(phone), v -> v.like(OrderInfo::getPhone, phone).or().like(OrderInfo::getRecePhone, phone).or().like(OrderInfo::getWorkerPhone, phone))
|
|
|
.eq(StringUtils.isNotEmpty(orderStatus), OrderInfo::getOrderStatus, orderStatus)
|
|
|
.between(StringUtils.isNotEmpty(startCreateTime) && StringUtils.isNotEmpty(endCreateTime), OrderInfo::getCreateTime, startCreateTime, endCreateTime + " 23:59:59")
|
|
|
.between(StringUtils.isNotEmpty(startPayTime) && StringUtils.isNotEmpty(endPayTime), OrderInfo::getPayTime, startPayTime, endPayTime + " 23:59:59")
|
|
|
- .and(StringUtils.isNotEmpty(isNegative)&&isNegative.trim().equals("2"),
|
|
|
- v -> v.gt(OrderInfo::getCommentExpress,2).gt(OrderInfo::getCommentService,2).gt(OrderInfo::getCommentGoods,2))
|
|
|
- .and(StringUtils.isNotEmpty(isNegative)&&isNegative.trim().equals("1"),v -> v
|
|
|
- .gt(OrderInfo::getCommentExpress,0)
|
|
|
- .gt(OrderInfo::getCommentService,0)
|
|
|
- .gt(OrderInfo::getCommentGoods,0)
|
|
|
+ .and(StringUtils.isNotEmpty(isNegative) && isNegative.trim().equals("2"),
|
|
|
+ v -> v.gt(OrderInfo::getCommentExpress, 2).gt(OrderInfo::getCommentService, 2).gt(OrderInfo::getCommentGoods, 2))
|
|
|
+ .and(StringUtils.isNotEmpty(isNegative) && isNegative.trim().equals("1"), v -> v
|
|
|
+ .gt(OrderInfo::getCommentExpress, 0)
|
|
|
+ .gt(OrderInfo::getCommentService, 0)
|
|
|
+ .gt(OrderInfo::getCommentGoods, 0)
|
|
|
.and(vv -> vv
|
|
|
- .lt(OrderInfo::getCommentExpress,3)
|
|
|
- .or().lt(OrderInfo::getCommentService,3)
|
|
|
- .or().lt(OrderInfo::getCommentGoods,3)
|
|
|
+ .lt(OrderInfo::getCommentExpress, 3)
|
|
|
+ .or().lt(OrderInfo::getCommentService, 3)
|
|
|
+ .or().lt(OrderInfo::getCommentGoods, 3)
|
|
|
)
|
|
|
)
|
|
|
- .and(StringUtils.isNotEmpty(isNegative)&&isNegative.trim().equals("0"),
|
|
|
- v -> v.eq(OrderInfo::getCommentExpress,0).eq(OrderInfo::getCommentService,0).eq(OrderInfo::getCommentGoods,0))
|
|
|
- .and(StringUtils.isNotEmpty(isNegative)&&isNegative.trim().equals("3"),
|
|
|
- v -> v.gt(OrderInfo::getCommentExpress,0).gt(OrderInfo::getCommentService,0).gt(OrderInfo::getCommentGoods,0))
|
|
|
+ .and(StringUtils.isNotEmpty(isNegative) && isNegative.trim().equals("0"),
|
|
|
+ v -> v.eq(OrderInfo::getCommentExpress, 0).eq(OrderInfo::getCommentService, 0).eq(OrderInfo::getCommentGoods, 0))
|
|
|
+ .and(StringUtils.isNotEmpty(isNegative) && isNegative.trim().equals("3"),
|
|
|
+ v -> v.gt(OrderInfo::getCommentExpress, 0).gt(OrderInfo::getCommentService, 0).gt(OrderInfo::getCommentGoods, 0))
|
|
|
.orderByDesc(OrderInfo::getCreateTime)
|
|
|
.page(new Page<>(pageNum, pageSize));
|
|
|
|
|
@@ -175,7 +174,7 @@ public class OrderLogic {
|
|
|
List<OrderDetail> orderDetails = orderDetailService.lambdaQuery().eq(OrderDetail::getOrderId, orderInfo.getOrderId()).list();
|
|
|
OrderRefund orderRefund = orderRefundService.lambdaQuery()
|
|
|
.eq(OrderRefund::getOrderId, orderInfo.getOrderId())
|
|
|
- .ne(OrderRefund::getRemark,"").last("limit 1").one();
|
|
|
+ .ne(OrderRefund::getRemark, "").last("limit 1").one();
|
|
|
|
|
|
Integer count = orderRequestService.lambdaQuery().eq(OrderRequest::getOrderId, orderInfo.getOrderId()).count();
|
|
|
orderDetailBean.setToWorkOrder(count > 0);
|
|
@@ -189,20 +188,19 @@ public class OrderLogic {
|
|
|
|
|
|
//派工异常订单
|
|
|
public IPage<OrderDetailBean> abnormalDispatchOrder(AdminUserCom adminUserCom, String userId, String orderId, String productName, String userName, String phone,
|
|
|
- String exchangeCode, String orderStatus, String startCreateTime, String endCreateTime, String startPayTime,
|
|
|
- String endPayTime, String websitId,
|
|
|
- Integer pageNum, Integer pageSize,
|
|
|
- String isNegative,String abnormalDispatch){
|
|
|
-
|
|
|
+ String exchangeCode, String orderStatus, String startCreateTime, String endCreateTime, String startPayTime,
|
|
|
+ String endPayTime, String websitId,
|
|
|
+ Integer pageNum, Integer pageSize,
|
|
|
+ String isNegative, String abnormalDispatch) {
|
|
|
|
|
|
|
|
|
IPage<OrderInfo> orderInfoIPage = orderMapper.abnormalDispatchOrder(new Page<>(pageNum, pageSize), userId, orderId, productName, userName, phone,
|
|
|
exchangeCode, orderStatus, startCreateTime, endCreateTime, startPayTime,
|
|
|
endPayTime, websitId,
|
|
|
- isNegative, abnormalDispatch,adminUserCom.getAdminCompanyIds(),adminUserCom.getAdminWebsitIds());
|
|
|
+ isNegative, abnormalDispatch, adminUserCom.getAdminCompanyIds(), adminUserCom.getAdminWebsitIds());
|
|
|
|
|
|
- IPage<OrderDetailBean> orderDetailBeanIPage=new Page<>();
|
|
|
- BeanUtils.copyProperties(orderInfoIPage,orderDetailBeanIPage);
|
|
|
+ IPage<OrderDetailBean> orderDetailBeanIPage = new Page<>();
|
|
|
+ BeanUtils.copyProperties(orderInfoIPage, orderDetailBeanIPage);
|
|
|
|
|
|
List<OrderDetailBean> list = new ArrayList<>();
|
|
|
for (OrderInfo orderInfo : orderInfoIPage.getRecords()) {
|
|
@@ -224,7 +222,7 @@ public class OrderLogic {
|
|
|
return orderDetailBeanIPage;
|
|
|
}
|
|
|
|
|
|
- public List<OrderDetailBean> list(HttpServletRequest request,String userId, String orderId, String productName, String userName, String phone, String orderStatus,
|
|
|
+ public List<OrderDetailBean> list(HttpServletRequest request, String userId, String orderId, String productName, String userName, String phone, String orderStatus,
|
|
|
String startCreateTime, String endCreateTime, String startPayTime, String endPayTime, String websitId) {
|
|
|
|
|
|
List<OrderInfo> orderList = orderInfoService.lambdaQuery()
|
|
@@ -264,11 +262,11 @@ public class OrderLogic {
|
|
|
/**
|
|
|
* 修改物流单号
|
|
|
*/
|
|
|
- public void updateExpress(String orderId,String logisticsNo,String companyCode) throws RemoteServiceException {
|
|
|
+ public void updateExpress(String orderId, String logisticsNo, String companyCode) throws RemoteServiceException {
|
|
|
//查询物流公司
|
|
|
String company = expressLogic.expressCompanyName(companyCode);
|
|
|
OrderInfo orderInfo = orderInfoService.getById(orderId);
|
|
|
- if(!orderInfo.getOrderStatus().equals(OrderStatusEnum.YFH.toString())){
|
|
|
+ if (!orderInfo.getOrderStatus().equals(OrderStatusEnum.YFH.toString())) {
|
|
|
throw new RemoteServiceException("非已发货订单不可修改物流单号");
|
|
|
}
|
|
|
orderInfo.setCompanyCode(companyCode);
|
|
@@ -276,15 +274,15 @@ public class OrderLogic {
|
|
|
orderInfo.setLogisticsNo(logisticsNo);
|
|
|
orderInfo.updateById();
|
|
|
//订阅快递
|
|
|
- expressLogic.subscribeExpress(logisticsNo,null,orderInfo.getRecePhone());
|
|
|
+ expressLogic.subscribeExpress(logisticsNo, null, orderInfo.getRecePhone());
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 查看物流
|
|
|
*/
|
|
|
- public List<ExpressInfo> queryExpressInfo(String logisticsNo){
|
|
|
+ public List<ExpressInfo> queryExpressInfo(String logisticsNo) {
|
|
|
List<ExpressInfo> list = expressInfoService.lambdaQuery().eq(ExpressInfo::getLogisticsNo, logisticsNo).list();
|
|
|
- if (CollectionUtils.isNotEmpty(list)){
|
|
|
+ if (CollectionUtils.isNotEmpty(list)) {
|
|
|
return list;
|
|
|
}
|
|
|
return null;
|
|
@@ -381,16 +379,16 @@ public class OrderLogic {
|
|
|
.set(OrderInfo::getOrderStatus, OrderStatusEnum.CLOSE.toString())
|
|
|
.set(OrderInfo::getRefundFlag, RefundFlagEnum.ALL.toString())
|
|
|
.update();
|
|
|
- if(StringUtils.isNotEmpty(userCouponId)){
|
|
|
+ if (StringUtils.isNotEmpty(userCouponId)) {
|
|
|
UserCoupon userCoupon = userCouponService.getById(orderInfo.getUserCouponId());
|
|
|
if (userCoupon.getSelfUse() != null && userCoupon.getSelfUse()) {
|
|
|
//todo sql处理,数量加一,删除指定记录
|
|
|
//coustomUserCouponMapper.increaseLeftTimes(userCoupon.getTransferor());
|
|
|
userCouponService.removeById(userCouponId);
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
userCouponService.lambdaUpdate()
|
|
|
- .eq(UserCoupon::getId,userCouponId)
|
|
|
- .set(UserCoupon::getStatus,false)
|
|
|
+ .eq(UserCoupon::getId, userCouponId)
|
|
|
+ .set(UserCoupon::getStatus, false)
|
|
|
.update();
|
|
|
}
|
|
|
}
|
|
@@ -402,7 +400,7 @@ public class OrderLogic {
|
|
|
.update();
|
|
|
}
|
|
|
log.info("【退款开始:】重置flag={}的结算金额,需要减掉的金额{},国补金额{}", flag, totalShareAmount.doubleValue(), orderInfo.getCouponMerchantContribute().doubleValue());
|
|
|
- orderShareLogic.reloadAmount(orderId, totalShareAmount,flag);
|
|
|
+ orderShareLogic.reloadAmount(orderId, totalShareAmount, flag);
|
|
|
log.info("【退款开始:】退款金额{}", refundAmount);
|
|
|
if (!orderInfo.getPayType().equals("云闪付")) {
|
|
|
wechatLogic.refund(orderId, orderId + StringUtil.getUUID(), orderInfo.getPayAmount().doubleValue()
|
|
@@ -436,7 +434,7 @@ public class OrderLogic {
|
|
|
if (refundAmount.compareTo(new BigDecimal("0.00")) < 1) {
|
|
|
throw new RemoteServiceException("金额错误");
|
|
|
}
|
|
|
- if(StringUtils.isEmpty(remark)){
|
|
|
+ if (StringUtils.isEmpty(remark)) {
|
|
|
throw new RemoteServiceException("请填写理赔原因");
|
|
|
}
|
|
|
AdminUser adminUser = adminUserService.getById(adminUserId);
|
|
@@ -493,16 +491,16 @@ public class OrderLogic {
|
|
|
.set(OrderInfo::getUserCouponId, "")
|
|
|
.set(OrderInfo::getRefundFlag, RefundFlagEnum.ALL.toString())
|
|
|
.update();
|
|
|
- if(org.apache.commons.lang3.StringUtils.isNotEmpty(userCouponId)){
|
|
|
+ if (org.apache.commons.lang3.StringUtils.isNotEmpty(userCouponId)) {
|
|
|
UserCoupon userCoupon = userCouponService.getById(orderInfo.getUserCouponId());
|
|
|
if (userCoupon.getSelfUse() != null && userCoupon.getSelfUse()) {
|
|
|
//todo sql处理,数量加一,删除指定记录
|
|
|
coustomUserCouponMapper.increaseLeftTimes(userCoupon.getTransferor());
|
|
|
userCouponService.removeById(userCouponId);
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
userCouponService.lambdaUpdate()
|
|
|
- .eq(UserCoupon::getId,userCouponId)
|
|
|
- .set(UserCoupon::getStatus,false)
|
|
|
+ .eq(UserCoupon::getId, userCouponId)
|
|
|
+ .set(UserCoupon::getStatus, false)
|
|
|
.update();
|
|
|
}
|
|
|
}
|
|
@@ -514,12 +512,12 @@ public class OrderLogic {
|
|
|
}
|
|
|
|
|
|
//1=非团购商品 2=团购商品
|
|
|
- if(totalShareAmount.doubleValue() > 0) {
|
|
|
+ if (totalShareAmount.doubleValue() > 0) {
|
|
|
int flag = StringUtils.isNotEmpty(orderDetail.getPromotionGroupId()) ? 2 : 1;
|
|
|
- log.info("【退款开始:】重置结算,order_id={},flag={}金额,需要减掉的金额{}", orderInfo.getOrderId(),flag, totalShareAmount.doubleValue());
|
|
|
+ log.info("【退款开始:】重置结算,order_id={},flag={}金额,需要减掉的金额{}", orderInfo.getOrderId(), flag, totalShareAmount.doubleValue());
|
|
|
orderShareLogic.reloadAmount(orderId, totalShareAmount, flag);
|
|
|
}
|
|
|
- log.info("【退款开始:】退款金额{},order_id={}", refundAmount,orderInfo.getOrderId());
|
|
|
+ log.info("【退款开始:】退款金额{},order_id={}", refundAmount, orderInfo.getOrderId());
|
|
|
if (!orderInfo.getPayType().equals("云闪付")) {
|
|
|
wechatLogic.refund(orderId, orderId + StringUtil.getUUID(), orderInfo.getPayAmount().doubleValue()
|
|
|
, refundAmount.doubleValue(), orderInfo.getCompanyWechatId());
|
|
@@ -584,7 +582,7 @@ public class OrderLogic {
|
|
|
OrderInfo orderInfo = orderInfoService.getById(orderId);
|
|
|
final AdminCompanyWechat companyWechat = adminCompanyWechatService.getById(orderInfo.getCompanyWechatId());
|
|
|
User user = userLogic.getById(orderInfo.getUserId());
|
|
|
- if(!orderInfo.getOrderStatus().equals(OrderStatusEnum.DFH.toString())){
|
|
|
+ if (!orderInfo.getOrderStatus().equals(OrderStatusEnum.DFH.toString())) {
|
|
|
throw new RemoteServiceException("非待发货订单不可发货");
|
|
|
}
|
|
|
//发货商
|
|
@@ -605,7 +603,7 @@ public class OrderLogic {
|
|
|
orderShareLogic.updateOrderStatus(orderId, OrderStatusEnum.YFH.toString());
|
|
|
|
|
|
//订阅物流
|
|
|
- expressLogic.subscribeExpress(logisticsNo, companyCode,orderInfo.getRecePhone());
|
|
|
+ expressLogic.subscribeExpress(logisticsNo, companyCode, orderInfo.getRecePhone());
|
|
|
//发货通知
|
|
|
if (user != null) {
|
|
|
msgSubscriptLogic.sendFhNotice(user.getUserId(), user.getOpenId(), orderInfo.getOrderId(), orderInfo.getPayAmount()
|
|
@@ -643,7 +641,7 @@ public class OrderLogic {
|
|
|
throw new RemoteServiceException("请勿重复操作发货,请稍后再试");
|
|
|
}
|
|
|
updateDeliverItem(adminUser, deliverGoodsBean);
|
|
|
- }finally {
|
|
|
+ } finally {
|
|
|
obtain.unlock();
|
|
|
}
|
|
|
}
|
|
@@ -652,7 +650,7 @@ public class OrderLogic {
|
|
|
|
|
|
private String preCheck(AdminUserCom adminUser, List<DeliverGoodsBean> deliverGoodsBeanList) {
|
|
|
String loginCompanyWechatId = adminUser.getLoginCompanyWechatId();
|
|
|
- if(StringUtils.isEmpty(loginCompanyWechatId)){
|
|
|
+ if (StringUtils.isEmpty(loginCompanyWechatId)) {
|
|
|
throw new RemoteServiceException("无效微信企业id");
|
|
|
}
|
|
|
|
|
@@ -724,7 +722,7 @@ public class OrderLogic {
|
|
|
|
|
|
orderShareLogic.updateOrderStatus(orderId, OrderStatusEnum.YFH.toString());
|
|
|
|
|
|
- expressLogic.subscribeExpress(deliverGoodsBean.getLogisticsNo(), company.getCode(),orderInfo.getRecePhone());
|
|
|
+ expressLogic.subscribeExpress(deliverGoodsBean.getLogisticsNo(), company.getCode(), orderInfo.getRecePhone());
|
|
|
if (orderInfo != null) {
|
|
|
User user = userLogic.getById(orderInfo.getUserId());
|
|
|
if (user != null) {
|
|
@@ -735,9 +733,6 @@ public class OrderLogic {
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
private String getStringValue(Cell cell) {
|
|
|
if (cell == null) {
|
|
|
return null;
|
|
@@ -780,9 +775,9 @@ public class OrderLogic {
|
|
|
}
|
|
|
orderDetailBean.setRefundAble(refundFlag);
|
|
|
//团长信息
|
|
|
- if(StringUtils.isNotEmpty(orderInfo.getPromotionGroupUserId())){
|
|
|
+ if (StringUtils.isNotEmpty(orderInfo.getPromotionGroupUserId())) {
|
|
|
User user = userService.getById(orderInfo.getPromotionGroupUserId());
|
|
|
- if(user != null){
|
|
|
+ if (user != null) {
|
|
|
orderDetailBean.setPromotionGroupUserName(user.getNickName());
|
|
|
orderDetailBean.setPromotionGroupMobile(user.getMobile());
|
|
|
}
|
|
@@ -797,8 +792,8 @@ public class OrderLogic {
|
|
|
/**
|
|
|
* 是否显示评价
|
|
|
*/
|
|
|
- public void updateShowComment(String orderId,Boolean isShow){
|
|
|
- commentTagLogic.updateShow(orderId,isShow);
|
|
|
+ public void updateShowComment(String orderId, Boolean isShow) {
|
|
|
+ commentTagLogic.updateShow(orderId, isShow);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -816,13 +811,12 @@ public class OrderLogic {
|
|
|
/**
|
|
|
* 查询订单详情
|
|
|
*/
|
|
|
- public List<OrderDetail> queryOrderDetails(String orderId){
|
|
|
+ public List<OrderDetail> queryOrderDetails(String orderId) {
|
|
|
List<OrderDetail> list = orderDetailService.lambdaQuery().in(OrderDetail::getOrderId, orderId).list();
|
|
|
return list;
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* 导出excel
|
|
|
*
|
|
@@ -831,10 +825,10 @@ public class OrderLogic {
|
|
|
*/
|
|
|
public void export(HttpServletRequest request, HttpServletResponse response, String userId, String orderId, String productName, String userName, String phone, String orderStatus,
|
|
|
String startCreateTime, String endCreateTime, String startPayTime, String endPayTime, String websitId) throws Exception {
|
|
|
- List<OrderDetailBean> list = list(request,userId, orderId, productName, userName, phone, orderStatus, startCreateTime, endCreateTime, startPayTime, endPayTime, websitId);
|
|
|
+ List<OrderDetailBean> list = list(request, userId, orderId, productName, userName, phone, orderStatus, startCreateTime, endCreateTime, startPayTime, endPayTime, websitId);
|
|
|
// OrderDetailBean
|
|
|
String[] titles = {"订单号", "商品名称", "规格型号", "数量", "单位", "销售单价", "优惠后单价", "实际收款", "收货人姓名",
|
|
|
- "手机号", "收货地址","订单状态", "售后状态", "退款金额(小项)", "退款数量(小项)", "备注", "下单时间", "买家昵称", "购买渠道", "买家备注", "卖家备注", "网点", "业务员/网点","分佣金额","团长名称","团长手机号"};
|
|
|
+ "手机号", "收货地址", "订单状态", "售后状态", "退款金额(小项)", "退款数量(小项)", "备注", "下单时间", "买家昵称", "购买渠道", "买家备注", "卖家备注", "网点", "业务员/网点", "分佣金额", "团长名称", "团长手机号"};
|
|
|
ExcelData excelData = new ExcelData();
|
|
|
List<List<Object>> rows = new ArrayList<>();
|
|
|
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
@@ -843,7 +837,7 @@ public class OrderLogic {
|
|
|
User user = null;
|
|
|
//查询团长
|
|
|
String promotionGroupUserId = orderDetailBean.getPromotionGroupUserId();
|
|
|
- if(StringUtils.isNotEmpty(promotionGroupUserId)){
|
|
|
+ if (StringUtils.isNotEmpty(promotionGroupUserId)) {
|
|
|
user = userService.getById(promotionGroupUserId);
|
|
|
}
|
|
|
|
|
@@ -861,7 +855,7 @@ public class OrderLogic {
|
|
|
row.add(orderDetailBean.getReceUserName());
|
|
|
row.add(orderDetailBean.getRecePhone());
|
|
|
row.add(trimStr(orderDetailBean.getProvince(), orderDetailBean.getCity(),
|
|
|
- orderDetailBean.getArea(), orderDetailBean.getStreet(), orderDetailBean.getReceAddress(),orderDetailBean.getHouseNo()));
|
|
|
+ orderDetailBean.getArea(), orderDetailBean.getStreet(), orderDetailBean.getReceAddress(), orderDetailBean.getHouseNo()));
|
|
|
String orderStatusName = Enum.valueOf(OrderStatusEnum.class, orderDetailBean.getOrderStatus().trim().toUpperCase()).getName();
|
|
|
if (orderDetailBean.getOrderStatus().equals(OrderStatusEnum.REFUND.toString())) {
|
|
|
if (org.apache.commons.lang3.StringUtils.isNotEmpty(orderDetailBean.getLogisticsNo())) {
|
|
@@ -870,7 +864,7 @@ public class OrderLogic {
|
|
|
orderStatusName = OrderStatusEnum.DFH.getName();
|
|
|
}
|
|
|
}
|
|
|
- if(orderDetailBean.getRefundFlag().equals(RefundFlagEnum.ALL.toString())){
|
|
|
+ if (orderDetailBean.getRefundFlag().equals(RefundFlagEnum.ALL.toString())) {
|
|
|
orderStatusName = OrderStatusEnum.CLOSE.getName();
|
|
|
}
|
|
|
row.add(orderStatusName);
|
|
@@ -881,7 +875,7 @@ public class OrderLogic {
|
|
|
if (orderDetail.getRefundNum() == 0) {
|
|
|
refundFlag = RefundFlagEnum.COMMONLY.getName();
|
|
|
} else {
|
|
|
- refundFlag = orderDetail.getNum() - orderDetail.getRefundNum() > 0?
|
|
|
+ refundFlag = orderDetail.getNum() - orderDetail.getRefundNum() > 0 ?
|
|
|
RefundFlagEnum.PARTLY.getName() : RefundFlagEnum.ALL.getName();
|
|
|
if (orderDetailBean.getRefundFlag().equals(RefundFlagEnum.ING.toString())) {
|
|
|
refundFlag = RefundFlagEnum.ING.getName();
|
|
@@ -904,10 +898,10 @@ public class OrderLogic {
|
|
|
row.add(trimStr(orderDetailBean.getWorkerName(), "\r\n", orderDetailBean.getWebsitName()));
|
|
|
row.add(orderDetail.getShareAmount());
|
|
|
row.add(orderDetailBean.getPromotionGroupUserId());
|
|
|
- if(user != null) {
|
|
|
+ if (user != null) {
|
|
|
row.add(user.getNickName());
|
|
|
row.add(user.getMobile());
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
row.add("");
|
|
|
row.add("");
|
|
|
}
|
|
@@ -925,7 +919,6 @@ public class OrderLogic {
|
|
|
|
|
|
/**
|
|
|
* 导出excel
|
|
|
- *
|
|
|
*/
|
|
|
public void export2(HttpServletRequest request, HttpServletResponse response,
|
|
|
String userId, String orderId, String productName, String userName,
|
|
@@ -1020,15 +1013,14 @@ public class OrderLogic {
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
@Transactional
|
|
|
public void overOrder(SubscribePushParamResp subscribePushParamResp) throws Exception {
|
|
|
if ("3".equals(subscribePushParamResp.getLastResult().getState())) {
|
|
|
OrderInfo orderInfo = orderInfoService.lambdaQuery()
|
|
|
- .eq(OrderInfo::getLogisticsNo,subscribePushParamResp.getLastResult().getNu())
|
|
|
- .eq(OrderInfo::getCompanyCode,subscribePushParamResp.getLastResult().getCom())
|
|
|
+ .eq(OrderInfo::getLogisticsNo, subscribePushParamResp.getLastResult().getNu())
|
|
|
+ .eq(OrderInfo::getCompanyCode, subscribePushParamResp.getLastResult().getCom())
|
|
|
.one();
|
|
|
- if(orderInfo == null || !orderInfo.getOrderStatus().equals(OrderStatusEnum.YFH.toString())){
|
|
|
+ if (orderInfo == null || !orderInfo.getOrderStatus().equals(OrderStatusEnum.YFH.toString())) {
|
|
|
return;
|
|
|
}
|
|
|
final AdminCompanyWechat companyWechat = adminCompanyWechatService.getById(orderInfo.getCompanyWechatId());
|
|
@@ -1046,7 +1038,7 @@ public class OrderLogic {
|
|
|
}
|
|
|
|
|
|
//生成工单到工单系统
|
|
|
- public void orderToPhp(OrderInfo orderInfo,String workOrderTypeEnum) throws Exception {
|
|
|
+ public void orderToPhp(OrderInfo orderInfo, String workOrderTypeEnum) throws Exception {
|
|
|
|
|
|
if (orderInfo.getWorkOrder() == null || !orderInfo.getWorkOrder()) {
|
|
|
return;
|
|
@@ -1063,21 +1055,21 @@ public class OrderLogic {
|
|
|
.list();
|
|
|
|
|
|
//非退换货的拆单推送
|
|
|
- if(workOrderTypeEnum.equals(WorkOrderTypeEnum.INSTALL.toString())) {
|
|
|
+ if (workOrderTypeEnum.equals(WorkOrderTypeEnum.INSTALL.toString())) {
|
|
|
//如果是退换货的单,直接全拆
|
|
|
- if(orderInfo.getExchangeOrder() != null && orderInfo.getExchangeOrder()){
|
|
|
- for(OrderDetail orderDetail : list){
|
|
|
- gongdanLogic.installOrder(orderInfo,Arrays.asList(orderDetail),orderDetail.getMainNumber());
|
|
|
+ if (orderInfo.getExchangeOrder() != null && orderInfo.getExchangeOrder()) {
|
|
|
+ for (OrderDetail orderDetail : list) {
|
|
|
+ gongdanLogic.installOrder(orderInfo, Arrays.asList(orderDetail), orderDetail.getMainNumber());
|
|
|
}
|
|
|
- }else {
|
|
|
+ } else {
|
|
|
//非退换货的单,按品类拆,里面还会按营销类型拆
|
|
|
for (String mainNumber : mainNumbers) {
|
|
|
gongdanLogic.installOrder(orderInfo, list, mainNumber);
|
|
|
}
|
|
|
}
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
for (OrderDetail orderDetail : list) {
|
|
|
- gongdanLogic.repairOrder(orderInfo,orderDetail);
|
|
|
+ gongdanLogic.repairOrder(orderInfo, orderDetail);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1085,8 +1077,6 @@ public class OrderLogic {
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
private String trimStr(String... str) {
|
|
|
StringBuffer sb = new StringBuffer("");
|
|
|
for (String s : str) {
|