Commit 9c953402 authored by hongguangwu's avatar hongguangwu

MVP1.7.16-优化

parent f27573d9
......@@ -270,13 +270,17 @@ public class FascUtil {
if (Common.isEmpty(companyActorId) && actor.getActorInfo() != null
&& Common.isNotNull(actor.getActorInfo().getActorType())
&& "corp".equals(actor.getActorInfo().getActorType())
&& Common.isNotNull(actor.getActorInfo().getActorId())) {
&& Common.isNotNull(actor.getActorInfo().getActorId())
&& actor.getActorInfo().getPermissions() != null
&& actor.getActorInfo().getPermissions().contains("sign")) {
companyActorId = actor.getActorInfo().getActorId();
}
if (Common.isEmpty(personActorId) && actor.getActorInfo() != null
&& Common.isNotNull(actor.getActorInfo().getActorType())
&& "person".equals(actor.getActorInfo().getActorType())
&& Common.isNotNull(actor.getActorInfo().getActorId())) {
&& Common.isNotNull(actor.getActorInfo().getActorId())
&& actor.getActorInfo().getPermissions() != null
&& actor.getActorInfo().getPermissions().contains("sign")) {
personActorId = actor.getActorInfo().getActorId();
}
if (actor.getFillFields() != null && !actor.getFillFields().isEmpty()) {
......
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