Skip to content
Snippets Groups Projects
Verified Commit 03f7179e authored by Giovannoni Laurent's avatar Giovannoni Laurent
Browse files

FIX pb with sve_start_date

parent ec14714a
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ class AcknowledgementReceiptModel ...@@ -60,7 +60,7 @@ class AcknowledgementReceiptModel
'select' => empty($aArgs['select']) ? ['*'] : $aArgs['select'], 'select' => empty($aArgs['select']) ? ['*'] : $aArgs['select'],
'table' => ['acknowledgement_receipts'], 'table' => ['acknowledgement_receipts'],
'where' => ['res_id in (?)'], 'where' => ['res_id in (?)'],
'data' => $aArgs['resIds'], 'data' => [$aArgs['resIds']],
'order_by' => empty($aArgs['orderBy']) ? [] : $aArgs['orderBy'], 'order_by' => empty($aArgs['orderBy']) ? [] : $aArgs['orderBy'],
'groupBy' => empty($aArgs['groupBy']) ? [] : $aArgs['groupBy'] 'groupBy' => empty($aArgs['groupBy']) ? [] : $aArgs['groupBy']
]); ]);
......
...@@ -765,7 +765,7 @@ class ResController ...@@ -765,7 +765,7 @@ class ResController
$select = explode(',', $data['select']); $select = explode(',', $data['select']);
$sve_start_date = false; $sve_start_date = false;
if ($keySve = array_search('sve_start_date', $select)) { if ($keySve = array_search('sve_start_date', array_map('trim', $select))) {
unset($select[$keySve]); unset($select[$keySve]);
$sve_start_date = true; $sve_start_date = true;
} }
......
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