Commit c45db6f6 by guojuxing

转账审批回调注释

parent 40875bec
......@@ -135,7 +135,7 @@ public class TransferAccountsApprovalApiServiceImpl implements TransferAccountsA
dto.setApprovalTime(new Date());
//todo 审批人等信息获取插入
callBack(tab, accountAmount, TransferAccountApprovalStatusEnum.AGREE.getCode());
//callBack(tab, accountAmount, TransferAccountApprovalStatusEnum.AGREE.getCode());
transferAccountsApprovalService.updateTransferAccountsApproval(dto);
return ServiceResponse.success();
}
......@@ -152,7 +152,7 @@ public class TransferAccountsApprovalApiServiceImpl implements TransferAccountsA
dto.setApprovalTime(new Date());
//todo 审批人等信息获取插入
callBack(tab, null, TransferAccountApprovalStatusEnum.AGREE.getCode());
//callBack(tab, null, TransferAccountApprovalStatusEnum.AGREE.getCode());
transferAccountsApprovalService.updateTransferAccountsApproval(dto);
return ServiceResponse.success();
}
......@@ -214,7 +214,7 @@ public class TransferAccountsApprovalApiServiceImpl implements TransferAccountsA
param.put("timeEnd", new SimpleDateFormat("yyyyMMdd").format(new Date()));
DubboContextUtil.initRegistryConfig("10.105.220.75", 2199);
GenericService genericService = DubboInvokeUtil.getGenericService(taskService);
genericService.$invoke(taskMethod, new String[]{String.class.getName()}, new Object[]{accountAmount, tab.getEnterpriseId()});
genericService.$invoke(taskMethod, new String[]{String.class.getName()}, new String[]{param.toJSONString()});
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment