| | |
| | | private final TicketBlackService ticketBlackService; |
| | | private final SystemConfigProperties systemConfigProperties; |
| | | private final WhiteListService whiteListService; |
| | | private final EnterParkService enterParkService; |
| | | |
| | | /** |
| | | * 查询订单接口 |
| | |
| | | orderRecord.setTicketStatus(0); |
| | | orderRecord.setPayCode(outPark.getPayCode()); |
| | | orderRecordService.saveOrUpdate(orderRecord); |
| | | if(outPark.getImgId() != null){ |
| | | orderRecord.setImgOutId(outPark.getImgId()); |
| | | } |
| | | EnterPark enterPark = enterParkService.getByCarNoAndDate(outPark.getCarNo(), outPark.getParkId(), outPark.getEnterTime()); |
| | | if(enterPark != null && enterPark.getImgId() != null){ |
| | | orderRecord.setImgInId(enterPark.getImgId()); |
| | | } |
| | | } |
| | | |
| | | //插入执法订单记录 |