|
|
|
@ -104,9 +104,6 @@ public class FirstSignFlow extends Flow { |
|
|
|
.setMailCategory(mailCategory) |
|
|
|
.setMailCategory(mailCategory) |
|
|
|
.setMailLevel(data.getString("mailLevel")) |
|
|
|
.setMailLevel(data.getString("mailLevel")) |
|
|
|
.setSimpleFlowFlag(data.getBoolean("simpleFlowFlag")) |
|
|
|
.setSimpleFlowFlag(data.getBoolean("simpleFlowFlag")) |
|
|
|
.setInvalidationContactFlag(data.getString("invalidationContactFlag")) |
|
|
|
|
|
|
|
.setInvalidationAttachments(data.getString("invalidationAttachments")) |
|
|
|
|
|
|
|
.setRepeat(data.getBoolean("repeat")) |
|
|
|
|
|
|
|
.setFlowKey(nextNode.getFlowNode().getKey()) |
|
|
|
.setFlowKey(nextNode.getFlowNode().getKey()) |
|
|
|
.setFlowName(nextNode.getFlowNode().getBeforeName()); |
|
|
|
.setFlowName(nextNode.getFlowNode().getBeforeName()); |
|
|
|
mailService.save(mail); |
|
|
|
mailService.save(mail); |
|
|
|
@ -160,6 +157,9 @@ public class FirstSignFlow extends Flow { |
|
|
|
MailSource mailSource = mailSourceService.getById(mailId); |
|
|
|
MailSource mailSource = mailSourceService.getById(mailId); |
|
|
|
validMailExists(mailId); |
|
|
|
validMailExists(mailId); |
|
|
|
Mail mail = mailSource.toMail() |
|
|
|
Mail mail = mailSource.toMail() |
|
|
|
|
|
|
|
.setInvalidationContactFlag(data.getString("invalidationContactFlag")) |
|
|
|
|
|
|
|
.setInvalidationAttachments(data.getString("invalidationAttachments")) |
|
|
|
|
|
|
|
.setRepeat(data.getBoolean("repeat")) |
|
|
|
.setMailFirstCategory(mailFirstCategory) |
|
|
|
.setMailFirstCategory(mailFirstCategory) |
|
|
|
.setMailSecondCategory(mailSecondCategory) |
|
|
|
.setMailSecondCategory(mailSecondCategory) |
|
|
|
.setMailThreeCategory(mailThreeCategory) |
|
|
|
.setMailThreeCategory(mailThreeCategory) |
|
|
|
|