wuxw
2022-10-23 7da40dfc8536c46b574024c23bcfb5f2504114d9
service-common/src/main/java/com/java110/common/cmd/machine/CustomCarInOutCmd.java
@@ -137,14 +137,16 @@
            if(resultVo.getCode() != ResultVo.CODE_OK){
                throw new CmdException(resultVo.getMsg());
            }
            JSONObject orderInfo = JSONObject.parseObject(resultVo.getData().toString());
            String data = JSONObject.toJSONString(resultVo.getData());
            JSONObject orderInfo = JSONObject.parseObject(data);
            //JSONObject orderInfo = JSONObject.parseObject(resultVo.getData().toString());
             tempCarPayOrderDto = new TempCarPayOrderDto();
            tempCarPayOrderDto.setCarNum(reqJson.getString("carNum"));
            tempCarPayOrderDto.setPaId(parkingBoxAreaDtos.get(0).getPaId());
            tempCarPayOrderDto.setOrderId(orderInfo.getString("orderId"));
            tempCarPayOrderDto.setAmount(Double.parseDouble(reqJson.getString("amount")));
            tempCarPayOrderDto.setPayCharge(Double.parseDouble(reqJson.getString("payCharge")));
            tempCarPayOrderDto.setPayType(reqJson.getString("payType"));
            //tempCarPayOrderDto.setMachineId(reqJson.getString("machineId"));
             resultVo = dataBusInnerServiceSMOImpl.notifyTempCarFeeOrder(tempCarPayOrderDto);