localizer
ljw 2025-09-29 15:10:48 +08:00
parent 9a188778c2
commit b50e17a36b
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ public class PaymentController {
// 验证总金额是否与参数中的结算总金额一致
if (paymentParam.getSettleTotalMoney() == null ||
paymentParam.getSettleTotalMoney().compareTo(dbTotalAmount) != 0) {
throw Exceptions.clierr("结算总金额与清单金额不一致");
throw Exceptions.clierr("结算总金额与实际总金额不一致");
}
// 验证总金额是否与参数中的结算总金额一致(这里已经是第二层验证了)

View File

@ -203,7 +203,7 @@
sua.wechat_openid
FROM order_info a
LEFT JOIN biz_company bc ON bc.id = a.trans_company_id
LEFT JOIN money_account ma1 ON ma1.user_id = bc.user_id
LEFT JOIN money_account ma1 ON ma1.station_id = a.trans_company_id
LEFT JOIN biz_driver bd ON a.driver_id = bd.id
LEFT JOIN sys_user_account sua ON bd.user_id = sua.user_id
WHERE a.id = #{orderId}