|
|
|
|
@ -977,7 +977,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
// 图片路劲
|
|
|
|
|
String path = sysClient.getParamValue("electronic_signature_real_path").getData(); |
|
|
|
|
// 编制人签名
|
|
|
|
|
if (StringUtil.isBlank(entrust.getOrganizationBy())) { |
|
|
|
|
if (StringUtil.isNotBlank(entrust.getOrganizationBy())) { |
|
|
|
|
User user = userClient.userInfoById(Long.parseLong(entrust.getOrganizationBy())).getData(); |
|
|
|
|
ImageEntity farView = new ImageEntity(); |
|
|
|
|
farView.setHeight(50);//设置高度
|
|
|
|
|
@ -995,7 +995,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
result1.put("1", farView); |
|
|
|
|
} |
|
|
|
|
// 审核人签名
|
|
|
|
|
if (StringUtil.isBlank(entrust.getVerifyBy())) { |
|
|
|
|
if (StringUtil.isNotBlank(entrust.getVerifyBy())) { |
|
|
|
|
User user = userClient.userInfoById(Long.parseLong(entrust.getVerifyBy())).getData(); |
|
|
|
|
ImageEntity farView = new ImageEntity(); |
|
|
|
|
farView.setHeight(50);//设置高度
|
|
|
|
|
@ -1013,7 +1013,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
result1.put("2", farView); |
|
|
|
|
} |
|
|
|
|
// 审批人签名
|
|
|
|
|
if (StringUtil.isBlank(entrust.getApprovalBy())) { |
|
|
|
|
if (StringUtil.isNotBlank(entrust.getApprovalBy())) { |
|
|
|
|
User user = userClient.userInfoById(Long.parseLong(entrust.getApprovalBy())).getData(); |
|
|
|
|
ImageEntity farView = new ImageEntity(); |
|
|
|
|
farView.setHeight(50);//设置高度
|
|
|
|
|
|