1. 优化
This commit is contained in:
parent
6bff182276
commit
a9a4a36b8a
|
@ -300,12 +300,9 @@ public class ReceiveController {
|
|||
optimizeRoute(jsonArray, newPoint,lon,lat,etOrder);
|
||||
|
||||
}else{
|
||||
// String isLocked = device.getIsLocked();
|
||||
// //当前无订单,并且不是管理员开锁的情况下,直接关锁
|
||||
// if(!isAdminUnlocking.equals("1") && !isLocked.equals("0") && !device.getStatus()){
|
||||
// log.info("当前无订单,并且不是管理员开锁的情况下,直接关锁--------" + logEntry.getDevName());
|
||||
// asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), IotConstants.COMMAND_CLOSE + IotConstants.COMMAND_FREQUENCY_3600, "无订单关锁", null, null, msg);
|
||||
// }
|
||||
if(ServiceConstants.LOCK_STATUS_CLOSE.equals(device.getLockStatus())){
|
||||
asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), IotConstants.COMMAND_CLOSE + IotConstants.COMMAND_FREQUENCY_3600, "车辆锁同步关锁", null, null, msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,12 +13,14 @@ import com.ruoyi.common.utils.poi.ExcelUtil;
|
|||
import com.ruoyi.system.domain.EtCapitalFlow;
|
||||
import com.ruoyi.system.domain.EtWithdraw;
|
||||
import com.ruoyi.system.service.IEtCapitalFlowService;
|
||||
import com.ruoyi.system.service.ISysConfigService;
|
||||
import com.ruoyi.system.service.ISysDeptService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
|
@ -37,6 +39,9 @@ public class EtCapitalFlowController extends BaseController
|
|||
@Autowired
|
||||
private ISysDeptService deptService;
|
||||
|
||||
@Autowired
|
||||
private ISysConfigService sysConfigService;
|
||||
|
||||
/**
|
||||
* 查询资金流水列表
|
||||
*/
|
||||
|
@ -117,6 +122,11 @@ public class EtCapitalFlowController extends BaseController
|
|||
if(ObjectUtil.isNull(deptId)){
|
||||
deptId = getDeptId();
|
||||
}
|
||||
String minimumWithdrawalAmount = sysConfigService.selectConfigByKey("minimum.withdrawal.amount");//最低提现金额
|
||||
BigDecimal minimum = new BigDecimal(minimumWithdrawalAmount);
|
||||
if(etWithdraw.getAmount().compareTo(minimum) < 0){
|
||||
throw new RuntimeException("最低提现金额不能小于"+minimum);
|
||||
}
|
||||
SysDept sysDept = deptService.selectDeptById(deptId);
|
||||
String method = etWithdraw.getMethod();
|
||||
if(method.equals(ServiceConstants.WITHDRAW_METHOD_WX)){
|
||||
|
|
|
@ -82,6 +82,10 @@ public class EtOrder extends BaseEntity
|
|||
@TableField(exist = false)
|
||||
private EtRefund etRefund;
|
||||
|
||||
/** 退款对象 */
|
||||
@TableField(exist = false)
|
||||
private List<EtRefund> etRefunds;
|
||||
|
||||
/** 设备sn编码 */
|
||||
@Excel(name = "设备sn编码")
|
||||
private String sn;
|
||||
|
|
|
@ -1584,9 +1584,11 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
device.setLastTime(DateUtils.getNowDate());
|
||||
}
|
||||
}else{
|
||||
ResponseVo responseVo = sendCommandWithResp(device.getMac(), token, IotConstants.COMMAND_CLOSE + IotConstants.COMMAND_FREQUENCY_3600, "辅助还车关锁",orderNo);
|
||||
if(responseVo.getCode()!=0){
|
||||
log.info("【还车关锁】远程关锁失败");
|
||||
if(ObjectUtil.isNotNull(device)){
|
||||
ResponseVo responseVo = sendCommandWithResp(device.getMac(), token, IotConstants.COMMAND_CLOSE + IotConstants.COMMAND_FREQUENCY_3600, "辅助还车关锁",orderNo);
|
||||
if(responseVo.getCode()!=0){
|
||||
log.info("【还车关锁】远程关锁失败");
|
||||
}
|
||||
}
|
||||
}
|
||||
/** 4. 更新车辆状态*/
|
||||
|
|
|
@ -143,7 +143,7 @@ public class EtOrderServiceImpl implements IEtOrderService
|
|||
// 退款记录
|
||||
List<EtRefund> refunds = etRefundService.selectEtRefundByOrderNo(order.getOrderNo());
|
||||
if(ObjectUtils.isNotEmpty(refunds) && refunds.size() > 0){
|
||||
order.setEtRefund(refunds.get(0));
|
||||
order.setEtRefunds(refunds);
|
||||
}
|
||||
return order;
|
||||
}
|
||||
|
@ -441,26 +441,28 @@ public class EtOrderServiceImpl implements IEtOrderService
|
|||
if(updateEtOrder1 == 0){
|
||||
throw new ServiceException("押金抵扣失败,更新押金订单失败");
|
||||
}
|
||||
/** 退款剩余押金*/
|
||||
Refund refund = wxPayService.refund(depositOrder, "押金抵扣退款",afterDeductionFee,IdUtils.getOrderNo("ref"));
|
||||
/** 2.记录退款表 创建退款对象*/
|
||||
depositOrder.setReason("押金抵扣退款");
|
||||
EtRefund refund1= createRefund(depositOrder, afterDeductionFee, null, null, null, null, refund.getOutRefundNo(),ServiceConstants.REFUND_TYPE_DEPOSIT);
|
||||
int i = etRefundService.insertEtRefund(refund1);
|
||||
if(i == 0){
|
||||
log.info("【押金抵扣】保存退款对象失败");
|
||||
throw new ServiceException("【押金抵扣】,保存退款对象失败");
|
||||
}
|
||||
/** 更新用户余额*/
|
||||
AsUser asUser = asUserService.selectUserById(depositOrder.getUserId());
|
||||
if(asUser!=null){
|
||||
// 更新用户并更新缓存
|
||||
asUser.setBalance(BigDecimal.ZERO);
|
||||
if (asUserService.updateUserProfile(asUser) > 0)
|
||||
{
|
||||
log.info("【押金抵扣成功】更新用户信息成功:"+ JSON.toJSON(asUser));
|
||||
}else{
|
||||
throw new ServiceException("【押金抵扣】,更新用户信息失败");
|
||||
if(afterDeductionFee.compareTo(BigDecimal.ZERO) > 0){
|
||||
/** 退款剩余押金*/
|
||||
Refund refund = wxPayService.refund(depositOrder, "押金抵扣退款",afterDeductionFee,IdUtils.getOrderNo("ref"));
|
||||
/** 2.记录退款表 创建退款对象*/
|
||||
depositOrder.setReason("押金抵扣退款");
|
||||
EtRefund refund1= createRefund(depositOrder, afterDeductionFee, null, null, null, null, refund.getOutRefundNo(),ServiceConstants.REFUND_TYPE_DEPOSIT);
|
||||
int i = etRefundService.insertEtRefund(refund1);
|
||||
if(i == 0){
|
||||
log.info("【押金抵扣】保存退款对象失败");
|
||||
throw new ServiceException("【押金抵扣】,保存退款对象失败");
|
||||
}
|
||||
/** 更新用户余额*/
|
||||
AsUser asUser = asUserService.selectUserById(depositOrder.getUserId());
|
||||
if(asUser!=null){
|
||||
// 更新用户并更新缓存
|
||||
asUser.setBalance(BigDecimal.ZERO);
|
||||
if (asUserService.updateUserProfile(asUser) > 0)
|
||||
{
|
||||
log.info("【押金抵扣成功】更新用户信息成功:"+ JSON.toJSON(asUser));
|
||||
}else{
|
||||
throw new ServiceException("【押金抵扣】,更新用户信息失败");
|
||||
}
|
||||
}
|
||||
}
|
||||
return 1;
|
||||
|
|
Loading…
Reference in New Issue
Block a user