Newer
Older
<?php
/**
* Copyright Maarch since 2008 under licence GPLv3.
* See LICENCE.txt file at the root folder for more details.
* This file is part of Maarch software.
*
*/
/**
* @brief Summary Sheet Controller
* @author dev@maarch.org
*/
namespace Resource\controllers;
use Basket\models\BasketModel;
use Contact\controllers\ContactController;
use CustomField\models\CustomFieldModel;
use Entity\models\EntityModel;
use Entity\models\ListInstanceModel;
use IndexingModel\models\IndexingModelFieldModel;
use Note\models\NoteEntityModel;
use Note\models\NoteModel;
use Parameter\models\ParameterModel;
use Priority\models\PriorityModel;
use Resource\models\ResModel;
use setasign\Fpdi\Tcpdf\Fpdi;
use Slim\Http\Request;
use Slim\Http\Response;
use SrcCore\controllers\PreparedClauseController;
use SrcCore\models\DatabaseModel;
use SrcCore\models\TextFormatModel;
use SrcCore\models\ValidatorModel;
use Status\models\StatusModel;
use User\models\UserModel;
class SummarySheetController
{
public function createList(Request $request, Response $response, array $aArgs)
$currentUser = UserModel::getByLogin(['login' => $GLOBALS['userId'], 'select' => ['id']]);
$errors = ResourceListController::listControl(['groupId' => $aArgs['groupId'], 'userId' => $aArgs['userId'], 'basketId' => $aArgs['basketId'], 'currentUserId' => $currentUser['id']]);
if (!empty($errors['errors'])) {
return $response->withStatus($errors['code'])->withJson(['errors' => $errors['errors']]);
}
$units = empty($bodyData['units']) ? [] : $bodyData['units'];
if (!Validator::arrayType()->notEmpty()->validate($bodyData['resources'])) {
return $response->withStatus(403)->withJson(['errors' => 'Resources is not set or empty']);
$bodyData['resources'] = array_slice($bodyData['resources'], 0, 500);
$basket = BasketModel::getById(['id' => $aArgs['basketId'], 'select' => ['basket_clause', 'basket_res_order', 'basket_name']]);
$user = UserModel::getById(['id' => $aArgs['userId'], 'select' => ['user_id']]);
$whereClause = PreparedClauseController::getPreparedClause(['clause' => $basket['basket_clause'], 'login' => $user['user_id']]);
$rawResourcesInBasket = ResModel::getOnView([
'select' => ['res_id'],
'where' => [$whereClause, 'res_view_letterbox.res_id in (?)'],
'data' => [$bodyData['resources']]
$allResourcesInBasket = array_column($rawResourcesInBasket, 'res_id');
$order = 'CASE res_view_letterbox.res_id ';
foreach ($bodyData['resources'] as $key => $resId) {
if (!in_array($resId, $allResourcesInBasket)) {
return $response->withStatus(403)->withJson(['errors' => 'Resources out of perimeter']);
}
$order .= "WHEN {$resId} THEN {$key} ";
$resourcesByModelIds = DatabaseModel::select([
'select' => ["string_agg(cast(res_id as text), ',') as res_ids", 'model_id'],
'table' => ['res_letterbox'],
'where' => ['res_id in (?)'],
'data' => [$bodyData['resources']],
'groupBy' => ['model_id']
]);
$pdf = new Fpdi('P', 'pt');
$pdf->setPrintHeader(false);
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
foreach ($resourcesByModelIds as $resourcesByModelId) {
$resourcesIdsByModel = $resourcesByModelId['res_ids'];
$resourcesIdsByModel = explode(',', $resourcesIdsByModel);
$indexingFields = IndexingModelFieldModel::get([
'select' => ['identifier', 'unit'],
'where' => ['model_id = ?'],
'data' => [$resourcesByModelId['model_id']]
]);
$fieldsIdentifier = array_column($indexingFields, 'identifier');
$select = ['res_id', 'subject', 'alt_identifier'];
foreach ($units as $unit) {
$unit = (array)$unit;
if ($unit['unit'] == 'primaryInformations') {
$information = [
'documentDate' => 'doc_date',
'arrivalDate' => 'admission_date',
'initiator' => 'initiator'
];
$select[] = 'type_label';
$select[] = 'creation_date';
$select[] = 'typist';
foreach ($information as $key => $item) {
if (in_array($key, $fieldsIdentifier)) {
$select[] = $item;
}
}
} elseif ($unit['unit'] == 'secondaryInformations') {
$information = [
'priority' => 'priority',
'processLimitDate' => 'process_limit_date',
];
$select[] = 'category_id';
$select[] = 'status';
foreach ($information as $key => $item) {
if (in_array($key, $fieldsIdentifier)) {
$select[] = $item;
}
}
} elseif ($unit['unit'] == 'diffusionList') {
if (in_array('destination', $fieldsIdentifier)) {
$select[] = 'destination';
}
}
}
Guillaume Heurtier
committed
$resources = ResModel::getOnView([
'select' => $select,
'where' => ['res_view_letterbox.res_id in (?)'],
'data' => [$resourcesIdsByModel],
'orderBy' => [$order]
]);
Guillaume Heurtier
committed
// $pdf = new Fpdi('P', 'pt');
// $pdf->setPrintHeader(false);
$resourcesIds = array_column($resources, 'res_id');
// Data for resources
$data = SummarySheetController::prepareData(['units' => $units, 'resourcesIds' => $resourcesIds]);
foreach ($resources as $resource) {
SummarySheetController::createSummarySheet($pdf, ['resource' => $resource, 'units' => $units,
'login' => $GLOBALS['userId'],
'data' => $data,
'fieldsIdentifier' => $fieldsIdentifier]);
}
Guillaume Heurtier
committed
$fileContent = $pdf->Output('', 'S');
$finfo = new \finfo(FILEINFO_MIME_TYPE);
$mimeType = $finfo->buffer($fileContent);
Guillaume Heurtier
committed
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
$response->write($fileContent);
$response = $response->withAddedHeader('Content-Disposition', "inline; filename=maarch.pdf");
return $response->withHeader('Content-Type', $mimeType);
}
public function createListWithAll(Request $request, Response $response)
{
set_time_limit(240);
$bodyData = $request->getQueryParams();
$units = [
[
"unit" => "qrcode",
"label" => ""
],
[
"unit" => "primaryInformations",
"label" => "Informations pricipales"
],
[
"unit" => "senderRecipientInformations",
"label" => "Informations de destination"
],
[
"unit" => "secondaryInformations",
"label" => "Informations secondaires"
],
[
"unit" => "diffusionList",
"label" => "Liste de diffusion"
],
[
"unit" => "opinionWorkflow",
"label" => "Circuit d'avis"
],
[
"unit" => "visaWorkflow",
"label" => "Circuit de visa"
],
[
"unit" => "notes",
"label" => "Annotation(s)"
]
];
$resourcesData = json_decode($bodyData['resources']);
if (!Validator::arrayType()->notEmpty()->validate($resourcesData)) {
return $response->withStatus(403)->withJson(['errors' => 'Resources is not set or empty']);
}
$resourcesData = array_slice($resourcesData, 0, 500);
$rawResourcesInBasket = ResModel::getOnView([
'select' => ['res_id'],
'where' => ['res_view_letterbox.res_id in (?)'],
'data' => [$resourcesData]
]);
$allResourcesInBasket = array_column($rawResourcesInBasket, 'res_id');
$order = 'CASE res_view_letterbox.res_id ';
foreach ($resourcesData as $key => $resId) {
if (!in_array($resId, $allResourcesInBasket)) {
return $response->withStatus(403)->withJson(['errors' => 'Resources out of perimeter']);
Guillaume Heurtier
committed
$order .= "WHEN {$resId} THEN {$key} ";
Guillaume Heurtier
committed
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
$order .= 'END';
$select = [
'res_id',
'subject',
'alt_identifier',
'admission_date',
'creation_date',
'doc_date',
'type_label',
'initiator',
'typist',
'category_id',
'priority',
'process_limit_date',
'status',
'destination'
];
$resources = ResModel::getOnView([
'select' => $select,
'where' => ['res_view_letterbox.res_id in (?)'],
'data' => [$resourcesData],
'orderBy' => [$order]
]);
$pdf = new Fpdi('P', 'pt');
$pdf->setPrintHeader(false);
$resourcesIds = array_column($resources, 'res_id');
// Data for resources
$data = SummarySheetController::prepareData(['units' => $units, 'resourcesIds' => $resourcesIds]);
SummarySheetController::createSummarySheet($pdf, ['resource' => $resource, 'units' => $units, 'login' => $GLOBALS['userId'], 'data' => $data]);
}
$fileContent = $pdf->Output('', 'S');
$finfo = new \finfo(FILEINFO_MIME_TYPE);
$mimeType = $finfo->buffer($fileContent);
$response->write($fileContent);
$response = $response->withAddedHeader('Content-Disposition', "inline; filename=maarch.pdf");
return $response->withHeader('Content-Type', $mimeType);
}
public static function createSummarySheet(Fpdi $pdf, array $args)
ValidatorModel::arrayType($args, ['resource', 'units', 'data', 'fieldsIdentifier']);
ValidatorModel::stringType($args, ['login']);
$resource = $args['resource'];
$units = $args['units'];
$fieldsIdentifier = $args['fieldsIdentifier'];
$dimensions = $pdf->getPageDimensions();
$widthNoMargins = $dimensions['w'] - $dimensions['rm'] - $dimensions['lm'];
$bottomHeight = $dimensions['h'] - $dimensions['bm'];
$widthMultiCell = $widthNoMargins / 10 * 4.5;
$widthCell = $widthNoMargins / 10;
$widthNotes = $widthNoMargins / 2;
$specialWidth = $widthNoMargins / 4;
$widthAssignee = $widthNoMargins / 6;
$appName = CoreConfigModel::getApplicationName();
$pdf->SetFont('', '', 8);
$pdf->Cell(0, 20, "$appName / " . date('d-m-Y'), 0, 2, 'L', false);
$pdf->SetY($pdf->GetY() - 20);
$pdf->SetFont('', 'B', 12);
$pdf->Cell(0, 20, _SUMMARY_SHEET, 0, 2, 'C', false);
$pdf->SetFont('', '', 8);
$pdf->Cell(0, 1, $resource['alt_identifier'], 0, 2, 'C', false);
$pdf->SetY($pdf->GetY() + 15);
$pdf->SetFont('', 'B', 16);
$pdf->MultiCell(0, 1, $resource['subject'], 1, 'C', false);
foreach ($units as $key => $unit) {
$units[$key] = (array)$unit;
$parameter = ParameterModel::getById(['select' => ['param_value_int'], 'id' => 'QrCodePrefix']);
$prefix = '';
if ($parameter['param_value_int'] == 1) {
}
$qrCode = new QrCode($prefix . $resource['res_id']);
$pdf->Image('@'.$qrCode->writeString(), 485, 10, 90, 90);
$admissionDate = null;
if (in_array('arrivalDate', $fieldsIdentifier)) {
$admissionDate = TextFormatModel::formatDate($resource['admission_date'], 'd-m-Y');
$admissionDate = empty($admissionDate) ? '<i>' . _UNDEFINED . '</i>' : "<b>{$admissionDate}</b>";
}
$creationdate = TextFormatModel::formatDate($resource['creation_date'], 'd-m-Y');
$creationdate = empty($creationdate) ? '<i>'._UNDEFINED.'</i>' : "<b>{$creationdate}</b>";
$docDate = null;
if (in_array('documentDate', $fieldsIdentifier)) {
$docDate = TextFormatModel::formatDate($resource['doc_date'], 'd-m-Y');
$docDate = empty($docDate) ? '<i>' . _UNDEFINED . '</i>' : "<b>{$docDate}</b>";
}
if (!empty($resource['initiator'])) {
$initiator = EntityModel::getByEntityId(['entityId' => $resource['initiator'], 'select' => ['short_label']]);
}
$initiatorEntity = empty($initiator) ? '' : "({$initiator['short_label']})";
$typist = UserModel::getLabelledUserById(['id' => $resource['typist']]);
$doctype = empty($resource['type_label']) ? '<i>'._UNDEFINED.'</i>' : "<b>{$resource['type_label']}</b>";
$pdf->SetY($pdf->GetY() + 40);
if (($pdf->GetY() + 77) > $bottomHeight) {
$pdf->AddPage();
}
if (!($key == 0 || ($key == 1 && $units[0]['unit'] == 'qrcode'))) {
$pdf->SetFont('', 'B', 11);
$pdf->Cell(0, 15, $unit['label'], 0, 2, 'L', false);
$pdf->SetY($pdf->GetY() + 2);
}
$pdf->MultiCell($widthMultiCell, 15, _TYPIST . " : <b>{$typist} {$initiatorEntity}</b>", 0, 'L', false, 0, '', '', true, 0, true);
if (isset($docDate)) {
$pdf->Cell($widthCell, 15, '', 0, 0, 'L', false);
$pdf->MultiCell($widthMultiCell, 15, _DOC_DATE . " : {$docDate}", 0, 'L', false, 1, '', '', true, 0, true);
} else {
$pdf->Cell($widthCell, 15, '', 0, 1, 'L', false);
}
$pdf->MultiCell($widthMultiCell, 15, _CREATED . " : {$creationdate}", 0, 'L', false, 0, '', '', true, 0, true);
if (isset($admissionDate)) {
$pdf->Cell($widthCell, 15, '', 0, 0, 'L', false);
$pdf->MultiCell($widthMultiCell, 15, _ADMISSION_DATE . " : {$admissionDate}", 0, 'L', false, 1, '', '', true, 0, true);
} else {
$pdf->Cell($widthCell, 15, '', 0, 1, 'L', false);
}
$pdf->MultiCell($widthMultiCell * 2, 15, _DOCTYPE . " : {$doctype}", 0, 'L', false, 0, '', '', true, 0, true);
$pdf->Cell($widthCell, 15, '', 0, 0, 'L', false);
} elseif ($unit['unit'] == 'secondaryInformations') {
$category = ResModel::getCategoryLabel(['categoryId' => $resource['category_id']]);
$category = empty($category) ? '<i>'._UNDEFINED.'</i>' : "<b>{$category}</b>";
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
$status = StatusModel::getById(['id' => $resource['status'], 'select' => ['label_status']]);
$status = empty($status['label_status']) ? '<i>' . _UNDEFINED . '</i>' : "<b>{$status['label_status']}</b>";
$priority = null;
if (in_array('priority', $fieldsIdentifier)) {
$priority = '';
if (!empty($resource['priority'])) {
$priority = PriorityModel::getById(['id' => $resource['priority'], 'select' => ['label']]);
}
$priority = empty($priority['label']) ? '<i>' . _UNDEFINED . '</i>' : "<b>{$priority['label']}</b>";
}
$processLimitDate = null;
if (in_array('processLimitDate', $fieldsIdentifier)) {
$processLimitDate = TextFormatModel::formatDate($resource['process_limit_date'], 'd-m-Y');
$processLimitDate = empty($processLimitDate) ? '<i>' . _UNDEFINED . '</i>' : "<b>{$processLimitDate}</b>";
}
// Custom fields
$customFieldsValues = ResModel::get([
'select' => ['custom_fields'],
'where' => ['res_id = ?'],
'data' => [$resource['res_id']]
]);
// Get all the ids of the custom fields in the model
$customFieldsIds = [];
foreach ($fieldsIdentifier as $item) {
if (strpos($item, 'indexingCustomField_') !== false) {
$customFieldsIds[] = explode('_', $item)[1];
}
}
if (!empty($customFieldsIds)) {
// get the label of the custom fields
$customFields = CustomFieldModel::get([
'select' => ['id', 'label'],
'where' => ['id in (?)'],
'data' => [$customFieldsIds]
]);
$tmp = [];
foreach ($customFields as $customField) {
$tmp[$customField['id']] = $customField['label'];
}
$customFields = $tmp;
$customFieldsValues = $customFieldsValues[0]['custom_fields'] ?? null;
$customFieldsValues = json_decode($customFieldsValues, true);
$pdf->AddPage();
}
$pdf->SetFont('', 'B', 11);
$pdf->Cell(0, 15, $unit['label'], 0, 2, 'L', false);
$pdf->SetY($pdf->GetY() + 2);
$pdf->SetFont('', '', 10);
$pdf->MultiCell($widthNotes, 30, _CATEGORY . " : {$category}", 1, 'L', false, 0, '', '', true, 0, true);
$pdf->MultiCell($widthNotes, 30, _STATUS . " : {$status}", 1, 'L', false, 1, '', '', true, 0, true);
$nextLine = 1;
if (isset($priority)) {
$nextLine = isset($processLimitDate) || !empty($customFieldsIds) ? 0 : 1;
$pdf->MultiCell($widthNotes, 30, _PRIORITY . " : {$priority}", 1, 'L', false, $nextLine, '', '', true, 0, true);
}
if (isset($processLimitDate)) {
$nextLine = !empty($customFieldsIds) && $nextLine == 0 ? 1 : 0;
$pdf->MultiCell($widthNotes, 30, _PROCESS_LIMIT_DATE . " : {$processLimitDate}", $nextLine, 'L', false, 1, '', '', true, 0, true);
}
if (!empty($customFieldsIds)) {
foreach ($customFieldsIds as $customFieldsId) {
$label = $customFields[$customFieldsId];
if (is_array($customFieldsValues[$customFieldsId])) {
$value = !empty($customFieldsValues[$customFieldsId]) ? implode(',', $customFieldsValues[$customFieldsId]) : _UNDEFINED;
} else {
$value = $customFieldsValues[$customFieldsId] ?? _UNDEFINED;
}
$nextLine = ($nextLine + 1) % 2;
$pdf->MultiCell($widthNotes, 30, $label . " : {$value}", 1, 'L', false, $nextLine, '', '', true, 0, true);
}
}
} elseif ($unit['unit'] == 'senderRecipientInformations') {
$senders = ContactController::getFormattedContacts(['resId' => $resource['res_id'], 'mode' => 'sender']);
$recipients = ContactController::getFormattedContacts(['resId' => $resource['res_id'], 'mode' => 'recipient']);
if (!empty($senders) && count($senders) > 2) {
$nbSenders = count($senders);
$senders = [];
$senders[0] = $nbSenders . ' ' . _CONTACTS;
}
if (!empty($recipients) && count($recipients) > 2) {
$nbRecipients = count($recipients);
$recipients = [];
$recipients[0] = $nbRecipients . ' ' . _CONTACTS;
$pdf->SetY($pdf->GetY() + 40);
if (($pdf->GetY() + 57) > $bottomHeight) {
$pdf->AddPage();
}
$pdf->SetFont('', 'B', 11);
$pdf->Cell(0, 15, $unit['label'], 0, 2, 'L', false);
$pdf->SetY($pdf->GetY() + 2);
$pdf->SetFont('', '', 10);
$pdf->Cell($widthMultiCell, 15, _SENDERS, 1, 0, 'C', false);
$pdf->Cell($widthCell, 15, '', 0, 0, 'C', false);
$pdf->Cell($widthMultiCell, 15, _RECIPIENTS, 1, 1, 'C', false);
if (empty($senders) && empty($recipients)) {
$pdf->MultiCell($widthMultiCell, 40, _UNDEFINED, 1, 'L', false, 0, '', '', true, 0, true);
$pdf->MultiCell($widthCell, 40, '', 0, 'L', false, 0, '', '', true, 0, true);
$pdf->MultiCell($widthMultiCell, 40, _UNDEFINED, 1, 'L', false, 1, '', '', true, 0, true);
} else {
for ($i = 0; !empty($senders[$i]) || !empty($recipients[$i]); $i++) {
if ($i == 0 && empty($senders[$i])) {
$pdf->MultiCell($widthMultiCell, 40, _UNDEFINED, 1, 'L', false, 0, '', '', true, 0, true);
} else {
$pdf->MultiCell($widthMultiCell, 40, empty($senders[$i]) ? '' : $senders[$i], empty($senders[$i]) ? 0 : 1, 'L', false, 0, '', '', true, 0, true);
}
$pdf->MultiCell($widthCell, 40, '', 0, 'L', false, 0, '', '', true, 0, true);
if ($i == 0 && empty($recipients[$i])) {
$pdf->MultiCell($widthMultiCell, 40, _UNDEFINED, 1, 'L', false, 1, '', '', true, 0, true);
} else {
$pdf->MultiCell($widthMultiCell, 40, empty($recipients[$i]) ? '' : $recipients[$i], empty($recipients[$i]) ? 0 : 1, 'L', false, 1, '', '', true, 0, true);
}
} elseif ($unit['unit'] == 'diffusionList') {
$assignee = '';
$destination = '';
$found = false;
$roles = EntityModel::getRoles();
$rolesItems = [];
$nbItems = 0;
foreach ($args['data']['listInstances'] as $listKey => $listInstance) {
if ($found && $listInstance['res_id'] != $resource['res_id']) {
break;
} elseif ($listInstance['res_id'] == $resource['res_id']) {
$item = '';
if ($listInstance['item_type'] == 'user_id') {
$item = UserModel::getLabelledUserById(['login' => $listInstance['item_id']]);
} elseif ($listInstance['item_type'] == 'entity_id') {
$item = $listInstance['item_id'];
$entity = EntityModel::getByEntityId(['entityId' => $listInstance['item_id'], 'select' => ['short_label']]);
if (!empty($entity)) {
$item = "{$entity['short_label']} ({$item})";
}
if ($listInstance['item_mode'] == 'dest') {
$assignee = $item;
} else {
foreach ($roles as $role) {
if ($listInstance['item_mode'] == $role['id'] || ($listInstance['item_mode'] == 'cc' && $role['id'] == 'copy')) {
$rolesItems[$role['id']]['item'][] = $item;
$rolesItems[$role['id']]['label'] = $role['label'];
$nbItems++;
continue;
}
}
// Sort keys to be in the same order defined in the roles.xml file
$rolesIDs = array_column($roles, 'id');
$tmp = [];
foreach ($rolesIDs as $key) {
if (!empty($rolesItems[$key])) {
$tmp[$key] = $rolesItems[$key];
}
}
$rolesItems = $tmp;
if (!empty($resource['destination'])) {
$destination = EntityModel::getByEntityId(['entityId' => $resource['destination'], 'select' => ['short_label']]);
}
$destinationEntity = empty($destination) ? '' : "({$destination['short_label']})";
if (empty($assignee)) {
$assignee = _UNDEFINED;
}
if (($pdf->GetY() + 37 + $nbItems * 20) > $bottomHeight) {
$pdf->AddPage();
}
$pdf->SetFont('', 'B', 11);
$pdf->Cell(0, 15, $unit['label'], 0, 2, 'L', false);
$pdf->SetY($pdf->GetY() + 2);
$pdf->SetFont('', '', 10);
$pdf->MultiCell($widthAssignee, 20, _ASSIGNEE, 1, 'C', false, 0, '', '', true, 0, false, true, 20, 'M');
$pdf->Cell($widthAssignee * 5, 20, "- {$assignee} {$destinationEntity}", 1, 1, 'L', false);
foreach ($rolesItems as $rolesItem) {
$pdf->MultiCell($widthAssignee, count($rolesItem['item']) * 20, $rolesItem['label'], 1, 'C', false, 0, '', '', true, 0, false, true, count($rolesItem['item']) * 20, 'M');
$nbItems = count($rolesItem['item']);
$i = 0;
foreach ($rolesItem['item'] as $item) {
$nextLine = $i == ($nbItems - 1) ? 1 : 2;
$pdf->Cell($widthAssignee * 5, 20, "- {$item}", 1, $nextLine, 'L', false);
$i++;
}
}
} elseif ($unit['unit'] == 'visaWorkflow') {
$users = [];
foreach ($args['data']['listInstancesVisa'] as $listKey => $listInstance) {
if ($found && $listInstance['res_id'] != $resource['res_id']) {
break;
} elseif ($listInstance['res_id'] == $resource['res_id']) {
$users[] = [
'user' => UserModel::getLabelledUserById(['login' => $listInstance['item_id']]),
'mode' => $listInstance['requested_signature'] ? 'Signataire' : 'Viseur',
'date' => TextFormatModel::formatDate($listInstance['process_date']),
];
}
if (!empty($users)) {
$pdf->SetY($pdf->GetY() + 40);
if (($pdf->GetY() + 37 + count($users) * 20) > $bottomHeight) {
$pdf->AddPage();
}
$pdf->SetFont('', 'B', 11);
$pdf->Cell(0, 15, $unit['label'], 0, 2, 'L', false);
$pdf->SetY($pdf->GetY() + 2);
$pdf->SetFont('', '', 10);
$pdf->Cell($specialWidth * 3, 20, _USERS, 1, 0, 'L', false);
$pdf->Cell($specialWidth, 20, _ACTION_DATE, 1, 1, 'L', false);
foreach ($users as $keyUser => $user) {
$pdf->Cell($specialWidth * 3, 20, $keyUser + 1 . ". {$user['user']} ({$user['mode']})", 1, 0, 'L', false);
$pdf->Cell($specialWidth, 20, $user['date'], 1, 1, 'L', false);
}
}
} elseif ($unit['unit'] == 'opinionWorkflow') {
$users = [];
foreach ($args['data']['listInstancesOpinion'] as $listKey => $listInstance) {
if ($found && $listInstance['res_id'] != $resource['res_id']) {
break;
} elseif ($listInstance['res_id'] == $resource['res_id']) {
$users[] = [
'user' => UserModel::getLabelledUserById(['login' => $listInstance['item_id']]),
'date' => TextFormatModel::formatDate($listInstance['process_date']),
];
}
if (!empty($users)) {
$pdf->SetY($pdf->GetY() + 40);
if (($pdf->GetY() + 37 + count($users) * 20) > $bottomHeight) {
$pdf->AddPage();
}
$pdf->SetFont('', 'B', 11);
$pdf->Cell(0, 15, $unit['label'], 0, 2, 'L', false);
$pdf->SetY($pdf->GetY() + 2);
$pdf->SetFont('', '', 10);
$pdf->Cell($specialWidth * 3, 20, _USERS, 1, 0, 'L', false);
$pdf->Cell($specialWidth, 20, _ACTION_DATE, 1, 1, 'L', false);
foreach ($users as $keyUser => $user) {
$pdf->Cell($specialWidth * 3, 20, $keyUser + 1 . ". {$user['user']}", 1, 0, 'L', false);
$pdf->Cell($specialWidth, 20, $user['date'], 1, 1, 'L', false);
}
}
} elseif ($unit['unit'] == 'notes') {
$notes = [];
$user = UserModel::getByLogin(['select' => ['id'], 'login' => $args['login']]);
foreach ($args['data']['notes'] as $noteKey => $rawNote) {
if ($found && $rawNote['identifier'] != $resource['res_id']) {
break;
} elseif ($rawNote['identifier'] == $resource['res_id']) {
$allowed = false;
if ($rawNote['user_id'] == $user['id']) {
$allowed = true;
} else {
$noteEntities = NoteEntityModel::get(['select' => ['item_id'], 'where' => ['note_id = ?'], 'data' => [$rawNote['id']]]);
if (!empty($noteEntities)) {
foreach ($noteEntities as $noteEntity) {
if (in_array($noteEntity['item_id'], $args['data']['userEntities'])) {
$allowed = true;
break;
}
} else {
$allowed = true;
if ($allowed) {
$notes[] = [
'user' => UserModel::getLabelledUserById(['id' => $rawNote['user_id']]),
'date' => TextFormatModel::formatDate($rawNote['creation_date']),
'note' => $rawNote['note_text']
];
}
}
}
if (!empty($notes)) {
$pdf->SetY($pdf->GetY() + 40);
if (($pdf->GetY() + 80) > $bottomHeight) {
$pdf->AddPage();
}
$pdf->SetFont('', 'B', 11);
$pdf->Cell(0, 15, $unit['label'], 0, 2, 'L', false);
$pdf->SetY($pdf->GetY() + 2);
$pdf->SetFont('', '', 10);
foreach ($notes as $note) {
if (($pdf->GetY() + 65) > $bottomHeight) {
$pdf->AddPage();
}
$pdf->Cell($widthNotes, 20, $note['user'], 1, 0, 'L', false);
$pdf->Cell($widthNotes, 20, $note['date'], 1, 1, 'L', false);
$pdf->MultiCell(0, 40, $note['note'], 1, 'L', false);
$pdf->SetY($pdf->GetY() + 5);
}
}
} elseif ($unit['unit'] == 'freeField') {
$pdf->SetY($pdf->GetY() + 40);
if (($pdf->GetY() + 77) > $bottomHeight) {
$pdf->AddPage();
}
$pdf->SetFont('', 'B', 11);
$pdf->Cell(0, 15, $unit['label'], 0, 2, 'L', false);
$pdf->SetY($pdf->GetY() + 2);
$pdf->Cell(0, 60, '', 1, 2, 'L', false);
}
}
}
Guillaume Heurtier
committed
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
private static function prepareData(array $args)
{
$units = $args['units'];
$tmpIds = $args['resourcesIds'];
$data = [];
foreach ($units as $unit) {
if ($unit['unit'] == 'notes') {
$data['notes'] = NoteModel::get([
'select' => ['id', 'note_text', 'user_id', 'creation_date', 'identifier'],
'where' => ['identifier in (?)'],
'data' => [$tmpIds],
'order_by' => ['identifier']]);
$userEntities = EntityModel::getByLogin(['login' => $GLOBALS['userId'], 'select' => ['entity_id']]);
$data['userEntities'] = [];
foreach ($userEntities as $userEntity) {
$data['userEntities'][] = $userEntity['entity_id'];
}
} elseif ($unit['unit'] == 'opinionWorkflow') {
$data['listInstancesOpinion'] = ListInstanceModel::get([
'select' => ['item_id', 'process_date', 'res_id'],
'where' => ['difflist_type = ?', 'res_id in (?)'],
'data' => ['AVIS_CIRCUIT', $tmpIds],
'orderBy' => ['listinstance_id']
]);
} elseif ($unit['unit'] == 'visaWorkflow') {
$data['listInstancesVisa'] = ListInstanceModel::get([
'select' => ['item_id', 'requested_signature', 'process_date', 'res_id'],
'where' => ['difflist_type = ?', 'res_id in (?)'],
'data' => ['VISA_CIRCUIT', $tmpIds],
'orderBy' => ['listinstance_id']
]);
} elseif ($unit['unit'] == 'diffusionList') {
$data['listInstances'] = ListInstanceModel::get([
'select' => ['item_id', 'item_type', 'item_mode', 'res_id'],
'where' => ['difflist_type = ?', 'res_id in (?)'],
'data' => ['entity_id', $tmpIds],
'orderBy' => ['listinstance_id']
]);
}
}
return $data;
}