From 5fb0ddb1d279e6f798984eb10ff1f40dff52d7aa Mon Sep 17 00:00:00 2001 From: yuri Date: Wed, 4 Nov 2015 16:24:52 +0200 Subject: [PATCH] fix in export --- application/Espo/Services/Record.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Espo/Services/Record.php b/application/Espo/Services/Record.php index 3fefd87a65..ed45e9fdf0 100644 --- a/application/Espo/Services/Record.php +++ b/application/Espo/Services/Record.php @@ -1010,9 +1010,9 @@ class Record extends \Espo\Core\Services\Base } } + $this->loadAdditionalFieldsForExport($entity); $row = array(); foreach ($fieldList as $field) { - $this->loadAdditionalFieldsForExport($entity); $value = $this->getFieldFromEntityForExport($entity, $field); $row[$field] = $value; }