localizer
parent
9a188778c2
commit
b50e17a36b
|
|
@ -111,7 +111,7 @@ public class PaymentController {
|
|||
// 验证总金额是否与参数中的结算总金额一致
|
||||
if (paymentParam.getSettleTotalMoney() == null ||
|
||||
paymentParam.getSettleTotalMoney().compareTo(dbTotalAmount) != 0) {
|
||||
throw Exceptions.clierr("结算总金额与清单金额不一致");
|
||||
throw Exceptions.clierr("结算总金额与实际总金额不一致");
|
||||
}
|
||||
|
||||
// 验证总金额是否与参数中的结算总金额一致(这里已经是第二层验证了)
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in New Issue