| | |
| | | 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); |
| | |
| | | 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("请输入不通过原因!"); |
| | | } |
| | |
| | | nextSort = nowSort + 1; |
| | | //获取审核流程的第一环节流程代码 |
| | | nextFlowCode = getNextFlowCode(flowGroup, nextSort); |
| | | |
| | | } |
| | | |
| | | } |