🐞 fix(充值): 英杰券使用字段修改

This commit is contained in:
luying
2023-04-11 17:54:23 +08:00
parent d32726a449
commit 3d59fad72e
3 changed files with 14 additions and 19 deletions

View File

@@ -1605,10 +1605,9 @@ export function checkRouteParam(route: string, msg: any) {
case "order.orderHandler.applyOrder":
{
let { productID, payType, activityId, paramStr, useVoucher } = msg;
if(!checkNaturalNumbers(payType, activityId)) return false;
if(!checkNaturalNumbers(payType, activityId, useVoucher)) return false;
if(!checkNaturalStrings(productID)) return false;
if(!checkStringIfExist(paramStr)) return false;
if(!checkBoolean(useVoucher)) return false;
break;
}
case "order.orderHandler.checkOrder":