Merge remote-tracking branch 'origin/feature/REQ-3982' into feature/REQ-3982

This commit is contained in:
chenwenjian 2025-04-23 17:01:14 +08:00
commit 96b75202fa
2 changed files with 6 additions and 0 deletions

View File

@ -269,6 +269,11 @@ public class VisaDetailByIdResponse {
@Setter @Getter
public static class DetailCard {
/**
* 变签Id
*/
private Long visaId;
/**
* 审批实例Id
*/

View File

@ -55,6 +55,7 @@ public class DetailCardBuilder {
if (workflowRelation == null)
return;
DetailCard detail = new DetailCard();
detail.setVisaId(visa.getId());
detail.setWorkflowInstanceId(workflowRelation.getContent());
FormInstanceVO formInstance = printModelService.getFormInstance(workflowRelation.getContent());
if (formInstance != null)