From ba8c4028132125bac06a39d9abffcb5cbb248126 Mon Sep 17 00:00:00 2001 From: Yurii Date: Mon, 9 Feb 2026 22:30:04 +0200 Subject: [PATCH] load capture: load additional fields on generate --- application/Espo/Tools/LeadCapture/Service.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/Espo/Tools/LeadCapture/Service.php b/application/Espo/Tools/LeadCapture/Service.php index af9380b903..9cb79dc89c 100644 --- a/application/Espo/Tools/LeadCapture/Service.php +++ b/application/Espo/Tools/LeadCapture/Service.php @@ -84,6 +84,7 @@ class Service $this->entityManager->saveEntity($entity); + $service->loadAdditionalFields($entity); $service->prepareEntityForOutput($entity); return $entity; @@ -108,6 +109,7 @@ class Service $this->entityManager->saveEntity($entity); + $service->loadAdditionalFields($entity); $service->prepareEntityForOutput($entity); return $entity;