|
@@ -9,13 +9,16 @@ import com.qmrb.system.common.result.PageResult;
|
|
|
import com.qmrb.system.common.result.Result;
|
|
|
import com.qmrb.system.common.result.ResultCode;
|
|
|
import com.qmrb.system.framework.resubmit.Resubmit;
|
|
|
+import com.qmrb.system.mq.PickCarProducer;
|
|
|
import com.qmrb.system.pojo.dto.LoginParam;
|
|
|
import com.qmrb.system.pojo.dto.UserParam;
|
|
|
import com.qmrb.system.pojo.entity.Order;
|
|
|
import com.qmrb.system.pojo.entity.ToolWxConfig;
|
|
|
+import com.qmrb.system.pojo.form.BarnRecordForm;
|
|
|
import com.qmrb.system.pojo.form.PayOrderForm;
|
|
|
import com.qmrb.system.pojo.query.PayOrderQuery;
|
|
|
import com.qmrb.system.pojo.vo.*;
|
|
|
+import com.qmrb.system.service.IBarnRecordService;
|
|
|
import com.qmrb.system.service.OrderService;
|
|
|
import com.qmrb.system.service.ToolWxConfigService;
|
|
|
import com.qmrb.system.service.UserService;
|
|
@@ -33,13 +36,19 @@ import io.swagger.v3.oas.annotations.security.SecurityRequirement;
|
|
|
import jakarta.servlet.http.HttpServletRequest;
|
|
|
import jakarta.validation.Valid;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.apache.rocketmq.client.exception.MQBrokerException;
|
|
|
+import org.apache.rocketmq.client.exception.MQClientException;
|
|
|
+import org.apache.rocketmq.remoting.exception.RemotingException;
|
|
|
import org.springdoc.core.annotations.ParameterObject;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
+import java.io.UnsupportedEncodingException;
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.util.Arrays;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
@@ -67,6 +76,18 @@ public class OrderController extends CommonController {
|
|
|
|
|
|
@Autowired
|
|
|
private ToolWxConfigService toolWxConfigService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private PickCarProducer pickCarProducer;
|
|
|
+
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IBarnRecordService barnRecordService;
|
|
|
+
|
|
|
+ @Value("${pickCarProducer.topic}")
|
|
|
+ private String topic;
|
|
|
+ @Value("${pickCarProducer.tags}")
|
|
|
+ private String tags;
|
|
|
|
|
|
|
|
|
@Operation(summary = "订单表分页列表", security = {@SecurityRequirement(name = "Authorization")})
|
|
@@ -77,10 +98,22 @@ public class OrderController extends CommonController {
|
|
|
Page<PayOrderVO> result = orderService.getPage(queryParams);
|
|
|
return PageResult.success(result);
|
|
|
}
|
|
|
+
|
|
|
+ @Operation(summary = "订单表分页列表", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
+ @GetMapping("/getPageByUserId")
|
|
|
+ public PageResult<PayOrderVO> getPageByUserId(
|
|
|
+ @ParameterObject PayOrderQuery queryParams
|
|
|
+ ) {
|
|
|
+ if(StrUtil.isNotBlank(queryParams.getUserId())){
|
|
|
+ Page<PayOrderVO> result = orderService.getPageByUserId(queryParams);
|
|
|
+ return PageResult.success(result);
|
|
|
+ }
|
|
|
+
|
|
|
+ return PageResult.success(null);
|
|
|
+ }
|
|
|
|
|
|
@Operation(summary = "新增订单表", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
@PostMapping
|
|
|
- @PreAuthorize("@ss.hasPerm('order:add')")
|
|
|
@Resubmit
|
|
|
public Result<PayOrderForm> saveForm(
|
|
|
@RequestBody @Valid PayOrderForm form
|
|
@@ -100,7 +133,6 @@ public class OrderController extends CommonController {
|
|
|
|
|
|
@Operation(summary = "修改订单表", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
@PutMapping(value = "/{id}")
|
|
|
- @PreAuthorize("@ss.hasPerm('order:edit')")
|
|
|
public Result<?> updateForm(
|
|
|
@Parameter(description = "订单表ID") @PathVariable Long id,
|
|
|
@RequestBody @Validated PayOrderForm form) {
|
|
@@ -111,7 +143,6 @@ public class OrderController extends CommonController {
|
|
|
|
|
|
@Operation(summary = "删除订单表", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
@DeleteMapping("/{ids}")
|
|
|
- @PreAuthorize("@ss.hasPerm('order:delete')")
|
|
|
public Result<?> deleteUsers(
|
|
|
@Parameter(description = "订单表ID,多个以英文逗号(,)分割") @PathVariable String ids
|
|
|
) {
|
|
@@ -210,6 +241,38 @@ public class OrderController extends CommonController {
|
|
|
orderService.closeOrder(toolWxConfigService.findConf(),outTradeNo);
|
|
|
}
|
|
|
|
|
|
+ @Operation(summary = "根据岗亭端停车记录数据计费", security = {@SecurityRequirement(name = "Authorization")})
|
|
|
+ @GetMapping("/{id}/charging")
|
|
|
+ public CommonResult<?> pickUp(
|
|
|
+ @Parameter(description = "岗亭端停车记录ID") @PathVariable Long id,
|
|
|
+ @ParameterObject String openId
|
|
|
+ ) throws MQBrokerException, RemotingException, UnsupportedEncodingException, InterruptedException, MQClientException {
|
|
|
+ //todo 调用计费模块,计算是否有应付费用
|
|
|
+ BigDecimal bigDecimal = new BigDecimal(1);
|
|
|
+
|
|
|
+ BarnRecordForm formData = barnRecordService.chargingByBarnId(id);
|
|
|
+ if(formData != null && formData.getPendingAmount() != null && formData.getPendingAmount().compareTo(BigDecimal.ZERO) >0){
|
|
|
+ ToCreateOrderVO toCreateOrderVO = new ToCreateOrderVO();
|
|
|
+ toCreateOrderVO.setTotal(formData.getPendingAmount().multiply(new BigDecimal(100)).intValueExact());
|
|
|
+ toCreateOrderVO.setDescription("停车缴费");
|
|
|
+ toCreateOrderVO.setOpenId(openId);
|
|
|
+
|
|
|
+ //订单入库
|
|
|
+ orderService.save(new Order().setAmountsPayable(toCreateOrderVO.getTotal())
|
|
|
+ .setPayDescription(toCreateOrderVO.getDescription())
|
|
|
+ .setId(id)
|
|
|
+ .setPayStatus(SystemConstant.NUM_ZERO));
|
|
|
+ return process(() -> orderService.createOrder(toolWxConfigService.findConf(),toCreateOrderVO));
|
|
|
+ }else if(formData != null && formData.getPendingAmount() != null && formData.getPendingAmount().compareTo(BigDecimal.ZERO) <= 0){
|
|
|
+ HashMap<String, Object> paramsMap = new HashMap<>();
|
|
|
+ paramsMap.put("channelId",formData.getOutChannelId());
|
|
|
+ paramsMap.put("carNumber",formData.getCarNumber());
|
|
|
+ // 发送取车指令
|
|
|
+ pickCarProducer.send(topic,tags, JSONUtil.toJsonStr(paramsMap));
|
|
|
+ }
|
|
|
+ return CommonResult.success(null);
|
|
|
+ }
|
|
|
+
|
|
|
@PostMapping("/wechatRefundBack")
|
|
|
public String wechatRefundBack(HttpServletRequest request) {
|
|
|
ToolWxConfig wxConfig = toolWxConfigService.findConf();
|