Commit ec99c8e7 by guojuxing

Merge remote-tracking branch 'origin/developer' into developer

parents a8450e23 7615091d
......@@ -74,7 +74,8 @@ public class AuditLogController {
private void createLog(AuditLogDTO auditLogDTO) {
ServiceResponse<AuditLogDTO> auditLog = this.auditLogApiService.getAuditLog(auditLogDTO.getAuditLogId());
LogUtils.createLog("审核审批项", auditLog.getResult().getProjectItemName(), auditLogDTO.getAuditorName(), auditLog.getResult().getEnterpriseId(), auditLog.getResult().getEnterpriseName());
LogUtils.createLog("审核审批项", auditLog.getResult().getProjectItemName(), auditLogDTO.getAuditorName(),
auditLog.getResult().getEnterpriseId(), auditLog.getResult().getEnterpriseName(), "+86", auditLogDTO.getAuditorPhone());
}
@RequestMapping("/get-audit-log")
......
......@@ -112,7 +112,8 @@ public class PackageController {
ServiceResponse<BillingPayInfoDTO> serviceResponse = this.billingOrderApiService.
paySmsPackageOrder(enterpriseId, orderId, payType, authCode, UserDetailUtils.getUserDetail().getUserInfo().getUserName());
if(serviceResponse.isSuccess()){
LogUtils.createLog("套餐包支付", "订单id:"+orderId);
BillingOrderDTO orderDTO = this.billingOrderApiService.getOrderById(orderId).getResult();
LogUtils.createLog("套餐包支付", orderDTO.getOrderContent());
return RestResponse.success(serviceResponse.getResult());
}
return EnterpriseRestResponse.failure(serviceResponse);
......
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