Skip to content
Snippets Groups Projects
Commit cb3c50e2 authored by Guillaume Heurtier's avatar Guillaume Heurtier
Browse files

FEAT #12074 TIME 1:00 remove fields not in model

parent af665123
No related branches found
No related tags found
No related merge requests found
......@@ -153,6 +153,19 @@ class ResController
'barcode' => $document['barcode']
]);
}
$modelFields = IndexingModelFieldModel::get([
'select' => ['identifier'],
'where' => ['model_id = ?'],
'data' => [$document['model_id']]
]);
$modelFields = array_column($modelFields, 'identifier');
foreach ($formattedData as $key => $data) {
if (!in_array($key, $modelFields)) {
unset($formattedData[$key]);
}
}
if (!empty($formattedData['destination'])) {
$entity = EntityModel::getByEntityId(['entityId' => $formattedData['destination'], 'select' => ['entity_label']]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment