wzp
2022-11-21 aff9aac26e1d8689f458a6cc74a580453ba347ef
web/web/GwOrder.ashx
@@ -316,7 +316,7 @@
        Int64 basicNum = context.GetInt64("basicNum");
        Int64 givingNum = context.GetInt64("givingNum");
        string clientId = "";
        Int64 payAmount = 0;
        Int64 payAmount = 0;//金额
        Int64 tmpPayAmount = Math.Max((int) (context.GetDecimal("payAmount", new Decimal(4, 0, 0, false, (byte) 2)) * new Decimal(1000)), 0);
        payAmount = tmpPayAmount;
        //double price = context.GetDecimal(price);
@@ -325,7 +325,7 @@
        int status = context.GetInt("status");  //0-审核不通过;1-审核通过
        string auditReason = context.GetString("auditReason");
        if (status == 0 && string.IsNullOrEmpty(auditReason) )
        if (status == 0 && string.IsNullOrEmpty(auditReason))
        {
            throw new ArgumentException("请输入不通过原因!");
        }
@@ -425,7 +425,6 @@
                nextSort = nowSort + 1;
                //获取审核流程的第一环节流程代码
                nextFlowCode = getNextFlowCode(flowGroup, nextSort);
            }
        }