Commit 98234135 by 陶光胜

Merge branch 'developer' into 'master'

Developer

See merge request !29
parents 66e11a01 1efe52a6
......@@ -250,7 +250,7 @@ public class AuditLogApiServiceImpl implements AuditLogApiService {
// }
// 修改审批状态
auditLogService.updateAudit(auditLogDTO);
if (StringUtils.isNotBlank(projectItem.getCallbackUrl())) {
if (!AuditTypeEnum.HAOBAN.getCode().equals(auditLogDTO.getAuditType()) && StringUtils.isNotBlank(projectItem.getCallbackUrl())) {
// 回调
String extraInfo = auditLog.getExtraInfo();
JSONObject jsonObject = JSON.parseObject(extraInfo);
......
......@@ -530,6 +530,7 @@ public class EnterpriseApiServiceImpl implements EnterpriseApiService {
@Override
public ServiceResponse<List<EnterpriseLicenseDTO>> listEnterpriseLicense(Integer enterpriseId) {
ServiceResponse<List<ApplicationLicenseDTO>> hasBuyLicense = enterpriseLicenseApiService.listEnterpriseBuyLicense(Arrays.asList(enterpriseId));
LOGGER.info("商户ID:{},license信息:{}", JSON.toJSONString(hasBuyLicense));
if (hasBuyLicense.isSuccess()) {
List<ApplicationLicenseDTO> licenseList = hasBuyLicense.getResult();
if (CollectionUtils.isNotEmpty(licenseList)) {
......
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