|
@@ -4421,6 +4421,35 @@ public class RuralProjectMessageService extends CrudService<RuralProjectMessageD
|
|
|
}
|
|
|
|
|
|
|
|
|
+ //总经理
|
|
|
+ User representativeUser = UserUtils.getByLoginName("杨荣华");
|
|
|
+ if(null != representativeUser){
|
|
|
+ //获取成员印章id信息
|
|
|
+ String userSealId = SignaturePostUtil.getUserSealByMobile(representativeUser.getMobile(),"","杨荣华个人签名章");
|
|
|
+ if(StringUtils.isNotBlank(userSealId)){
|
|
|
+ Action actionUser = new Action();
|
|
|
+ actionUser.setType("CORPORATE");
|
|
|
+ actionUser.setName(representativeUser.getName() + "个人签名章"); //填写人员信息
|
|
|
+ actionUser.setSerialNo("1");
|
|
|
+ actionUser.setSealId(userSealId); //人员印章id
|
|
|
+
|
|
|
+ //添加盖章位置
|
|
|
+ List<Location> principalLocations = Lists.newArrayList();
|
|
|
+ Location principalLocation = new Location();
|
|
|
+ principalLocation.setDocumentId(documentList.get(0));
|
|
|
+ //principalLocation.setPage(0);
|
|
|
+ principalLocation.setRectType("SEAL_CORPORATE");
|
|
|
+ principalLocation.setKeyword("法定代表人:");
|
|
|
+ principalLocation.setKeywordIndex(1);
|
|
|
+ /*principalLocation.setOffsetX(0.7518);*/
|
|
|
+ principalLocation.setOffsetY("0.03");
|
|
|
+ principalLocations.add(principalLocation);
|
|
|
+ actionUser.setLocations(principalLocations);
|
|
|
+ actions.add(actionUser);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
//创建签署方信息表
|
|
|
List<SignatorieInfo> signatories = Lists.newArrayList();
|
|
|
SignatorieInfo signatorieInfo1 = new SignatorieInfo();
|