|
@@ -263,14 +263,14 @@ public class OrderController extends CommonController {
|
|
|
) throws MQBrokerException, RemotingException, UnsupportedEncodingException, InterruptedException, MQClientException {
|
|
|
//todo 调用计费模块,计算是否有应付费用
|
|
|
BigDecimal pendingAmount = BigDecimal.ZERO;
|
|
|
- BarnRecordForm formData = barnRecordService.chargingByBarnId(id);
|
|
|
+ BarnRecordForm formData = barnRecordService.getFormData(id);
|
|
|
if(formData != null){
|
|
|
// 计算未支付金额
|
|
|
pendingAmount = rulesService.calcuExpenses(formData.getId(),formData.getCarNumber(),isMonthlyCardMode);
|
|
|
}
|
|
|
if(formData != null && pendingAmount.compareTo(BigDecimal.ZERO) >0){
|
|
|
ToCreateOrderVO toCreateOrderVO = new ToCreateOrderVO();
|
|
|
- toCreateOrderVO.setTotal(formData.getPendingAmount().multiply(new BigDecimal(100)).intValueExact());
|
|
|
+ toCreateOrderVO.setTotal(pendingAmount.multiply(new BigDecimal(100)).intValueExact());
|
|
|
toCreateOrderVO.setDescription("停车缴费");
|
|
|
toCreateOrderVO.setOpenId(openId);
|
|
|
Long orderId = IdUtil.getSnowflake().nextId();
|
|
@@ -283,7 +283,7 @@ public class OrderController extends CommonController {
|
|
|
.setGoodsName(toCreateOrderVO.getDescription())
|
|
|
.setPayStatus(SystemConstant.NUM_ZERO));
|
|
|
return process(() -> orderService.createOrder(toolWxConfigService.findConf(),toCreateOrderVO));
|
|
|
- }else if(formData != null && formData.getPendingAmount() != null && formData.getPendingAmount().compareTo(BigDecimal.ZERO) <= 0){
|
|
|
+ }else if(formData != null && pendingAmount.compareTo(BigDecimal.ZERO) <= 0){
|
|
|
HashMap<String, Object> paramsMap = new HashMap<>();
|
|
|
paramsMap.put("channelId",formData.getBarnId());
|
|
|
paramsMap.put("carNumber",formData.getCarNumber());
|