|
@@ -37,6 +37,7 @@ import com.pj.project.tb_item.TbItem;
|
|
import com.pj.project.tb_item_type.TbItemType;
|
|
import com.pj.project.tb_item_type.TbItemType;
|
|
import com.pj.project4sp.global.BusinessException;
|
|
import com.pj.project4sp.global.BusinessException;
|
|
import com.pj.project4sp.uploadfile.UploadConfig;
|
|
import com.pj.project4sp.uploadfile.UploadConfig;
|
|
|
|
+import com.pj.utils.AesUtil;
|
|
import com.pj.utils.cache.RedisUtil;
|
|
import com.pj.utils.cache.RedisUtil;
|
|
import com.pj.utils.sg.AjaxJson;
|
|
import com.pj.utils.sg.AjaxJson;
|
|
import com.sun.org.apache.bcel.internal.generic.IF_ACMPEQ;
|
|
import com.sun.org.apache.bcel.internal.generic.IF_ACMPEQ;
|
|
@@ -298,7 +299,13 @@ public class OpenService {
|
|
}
|
|
}
|
|
BigDecimal total = businessMoney.add(carMoney);
|
|
BigDecimal total = businessMoney.add(carMoney);
|
|
if (total.doubleValue() > 0) {
|
|
if (total.doubleValue() > 0) {
|
|
- String desc = "请缴业务费" + businessMoney.toString() + "元,停车费" + carMoney.toString()+"元";
|
|
|
|
|
|
+ String desc="请缴";
|
|
|
|
+ if (businessMoney.doubleValue()>0){
|
|
|
|
+ desc+="业务费" + businessMoney.toString() + "元";
|
|
|
|
+ }
|
|
|
|
+ if (carMoney.doubleValue()>0){
|
|
|
|
+ desc+=" 停车费" + carMoney.toString()+"元";
|
|
|
|
+ }
|
|
log.error("请求返回:{},{}", carNo, desc);
|
|
log.error("请求返回:{},{}", carNo, desc);
|
|
return ResultJson.error(desc);
|
|
return ResultJson.error(desc);
|
|
}
|
|
}
|
|
@@ -363,4 +370,5 @@ public class OpenService {
|
|
tbBusinessCarService.updateById(tbBusinessCar);
|
|
tbBusinessCarService.updateById(tbBusinessCar);
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
+
|
|
}
|
|
}
|