Skip to content
Snippets Groups Projects
Verified Commit c1e75d85 authored by Damien's avatar Damien
Browse files

FEAT #14849 TIME 0:10 Fix update null entities

parent ed3e4139
No related branches found
No related tags found
No related merge requests found
......@@ -241,6 +241,12 @@ class AlfrescoController
];
$account = json_encode($account);
EntityModel::update([
'set' => ['external_id' => "{}"],
'where' => ['id in (?)', 'external_id = ?'],
'data' => [$body['entities'], 'null']
]);
EntityModel::update([
'postSet' => ['external_id' => "jsonb_set(external_id, '{alfresco}', '{$account}')"],
'where' => ['id in (?)'],
......@@ -582,6 +588,10 @@ class AlfrescoController
if ($fileContent === false) {
return ['errors' => 'Document not found on docserver'];
}
$alfrescoParameters = CoreConfigModel::getJsonLoaded(['path' => 'apps/maarch_entreprise/xml/alfresco.json']);
if (empty($alfrescoParameters)) {
return ['errors' => 'Alfresco mapping file does not exist'];
}
$curlResponse = CurlModel::execSimple([
'url' => "{$alfrescoUri}/alfresco/versions/1/nodes/{$args['folderId']}/children",
......@@ -611,7 +621,6 @@ class AlfrescoController
$documentId = $curlResponse['response']['entry']['id'];
$properties = [];
$alfrescoParameters = CoreConfigModel::getJsonLoaded(['path' => 'apps/maarch_entreprise/xml/alfresco.json']);
if (!empty($alfrescoParameters['mapping']['document'])) {
$resourceContacts = ResourceContactModel::get([
'where' => ['res_id = ?', 'mode = ?'],
......
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