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 Registered Mail Controller
* @author dev@maarch.org
*/
namespace RegisteredMail\controllers;
use Com\Tecnick\Barcode\Barcode;
use RegisteredMail\models\RegisteredMailModel;
use RegisteredMail\models\RegisteredNumberRangeModel;
use Resource\controllers\ResController;
use Respect\Validation\Validator;
use setasign\Fpdi\Tcpdf\Fpdi;
use Slim\Http\Request;
use Slim\Http\Response;
use SrcCore\models\ValidatorModel;
class RegisteredMailController
{
public function update(Request $request, Response $response, array $args)
{
if (!ResController::hasRightByResId(['resId' => [$args['resId']], 'userId' => $GLOBALS['id']])) {
return $response->withStatus(400)->withJson(['errors' => 'Resource out of perimeter']);
}
$registeredMail = RegisteredMailModel::getByResId(['select' => ['issuing_site', 'type', 'deposit_id'], 'resId' => $args['resId']]);
if (empty($registeredMail)) {
return $response->withStatus(400)->withJson(['errors' => 'No registered mail for this resource']);
} elseif (!empty($registeredMail['deposit_id'])) {
return $response->withStatus(400)->withJson(['errors' => 'Registered mail can not be modified (deposit list already generated)']);
}
$body = $request->getParsedBody();
if (!Validator::stringType()->notEmpty()->validate($body['type'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body type is empty or not a string']);
} elseif (!Validator::stringType()->notEmpty()->validate($body['warranty'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body warranty is empty or not a string']);
} elseif (!in_array($body['type'], ['2D', '2C', 'RW'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body type is not correct']);
} elseif (!in_array($body['warranty'], ['R1', 'R2', 'R3'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body warranty is not correct']);
} elseif ($body['type'] == 'RW' && $body['warranty'] == 'R3') {
return $response->withStatus(400)->withJson(['errors' => 'Body warranty R3 is not allowed for type RW']);
}
$resource = ResModel::getById(['select' => ['departure_date'], 'resId' => $args['resId']]);
$date = new \DateTime($resource['departure_date']);
$date = $date->format('d/m/Y');
$refPos = strpos($body['reference'], '-');
if ($refPos !== false) {
$body['reference'] = substr_replace($body['reference'], "{$date} ", 0, $refPos);
} else {
$body['reference'] = "{$date} - {$body['reference']}";
}
'type' => $body['type'],
'warranty' => $body['warranty'],
'reference' => $body['reference'],
'letter' => empty($body['letter']) ? 'false' : 'true',
];
if ($registeredMail['type'] != $body['type']) {
$range = RegisteredNumberRangeModel::get([
'select' => ['id', 'range_end', 'current_number'],
'where' => ['type = ?', 'site_id = ?', 'status = ?'],
'data' => [$body['type'], $registeredMail['issuing_site'], 'OK']
]);
if (empty($range)) {
return $response->withStatus(400)->withJson(['errors' => 'No range found']);
}
$status = $range[0]['current_number'] + 1 > $range[0]['range_end'] ? 'DEL' : 'OK';
RegisteredNumberRangeModel::update([
'set' => ['current_number' => $range[0]['current_number'] + 1, 'status' => $status],
'where' => ['id = ?'],
'data' => [$range[0]['id']]
]);
$set['number'] = $range[0]['current_number'];
}
RegisteredMailModel::update([
'set' => $set,
'where' => ['res_id = ?'],
'data' => [$args['resId']]
]);
return $response->withStatus(204);
}
public function getCountries(Request $request, Response $response)
{
$countries = [];
if (($handle = fopen("referential/liste-197-etats.csv", "r")) !== false) {
while (($data = fgetcsv($handle, 0, ';')) !== false) {
$countries[] = utf8_encode($data[0]);
}
fclose($handle);
}
return $response->withJson(['countries' => $countries]);
}
Guillaume Heurtier
committed
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
public function receiveAcknowledgement(Request $request, Response $response)
{
$body = $request->getParsedBody();
if (!Validator::stringType()->notEmpty()->validate($body['type']) && !in_array($body['type'], ['distributed', 'notDistributed'])) {
return $response->withStatus(400)->withJson(['errors' => "Body type is empty or is not 'distributed' or 'notDistributed'"]);
} elseif (!Validator::stringType()->notEmpty()->validate($body['number'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body number is empty or not a string']);
}
$number = substr($body['number'], 3, 12);
$number = str_replace(' ', '', $number);
$registeredMail = RegisteredMailModel::get([
'select' => ['id', 'res_id'],
'where' => ['number = ?'],
'data' => [$number]
]);
if (empty($registeredMail)) {
return $response->withStatus(400)->withJson(['errors' => 'Registered mail number not found']);
}
if ($body['type'] == 'distributed') {
$set = ['received_date' => 'CURRENT_TIMESTAMP'];
$status = 'DSTRIBUTED';
} else {
if (!Validator::stringType()->notEmpty()->validate($body['returnReason'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body returnReason is empty or not a string']);
} elseif (!Validator::date()->notEmpty()->validate($body['receivedDate'])) {
return $response->withStatus(400)->withJson(['errors' => 'Body receivedDate is empty or not a date']);
}
$set = ['received_date' => $body['receivedDate'], 'return_reason' => $body['returnReason'], 'return_reason_other' => $body['returnReasonOther'] ?? null];
$status = 'PND';
}
RegisteredMailModel::update([
'set' => $set,
'where' => ['id = ?'],
'data' => [$registeredMail['id']]
]);
ResModel::update([
'set' => ['status' => $status],
'where' => ['res_id = ?'],
'data' => [$registeredMail['res_id']]
]);
return $response->withStatus(204);
}
public static function getRegisteredMailNumber(array $args)
{
$number = str_pad($args['rawNumber'], 10, "0", STR_PAD_LEFT);
$s1 = $number[1] + $number[3] + $number[5] + $number[7] + $number[9];
$s2 = $number[0] + $number[2] + $number[4] + $number[6] + $number[8];
$s3 = $s1 * 3 + $s2;
$modS3 = $s3 % 10;
if ($modS3 === 0) {
$key = 0;
} else {
$key = 10 - $modS3;
}
$registeredMailNumber = "{$args['type']} {$number[0]}{$number[1]}{$number[2]} {$number[3]}{$number[4]}{$number[5]} {$number[6]}{$number[7]}{$number[8]}{$number[9]} {$key}";
return $registeredMailNumber;
}
public function printTest(Request $request, Response $response)
{
'warranty' => 'R2',
'letter' => true,
'reference' => '15/08/2020 - ma ref',
'recipient' => [
'AFNOR',
'75001 Paris',
'FRANCE'
],
'sender' => [
'AFNOR',
'75016 Paris',
'FRANCE'
],
];
RegisteredMailController::getRegisteredMailPDF($args);
return $response->withJson(['test' => 2]);
}
public static function getRegisteredMailPDF(array $args)
{
$registeredMailNumber = RegisteredMailController::getRegisteredMailNumber(['type' => $args['type'], 'rawNumber' => $args['number']]);
$pdf = new Fpdi();
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
$pdf->SetAutoPagebreak(false);
$pdf->addPage();
$pdf->SetFont('times', '', 11);
$barcode = new Barcode();
if ($args['type'] != 'RW') {
// DATA TEST
// if ($args['type'] == '2C') {
// $pdf->setSourceFile('/var/www/html/ar.pdf');
// } else {
// $pdf->setSourceFile('/var/www/html/sansar.pdf');
// }
// $pageId = $pdf->ImportPage(1);
// $pageInfo = $pdf->getTemplatesize($pageId);
// $pdf->AddPage($pageInfo['orientation'], $pageInfo);
// $pdf->useImportedPage($pageId);
// TODO INFO FEUILLE 1 : GAUCHE
$pdf->SetXY(50, 8);
$pdf->cell(0, 0, $registeredMailNumber);
if ($args['warranty'] == 'R1') {
$pdf->SetXY(88, 17);
} elseif ($args['warranty'] == 'R2') {
$pdf->SetXY(101, 17);
$pdf->cell(0, 0, 'X');
} else {
$pdf->SetXY(114, 17);
$pdf->cell(0, 0, 'X');
}
if ($args['letter'] === true) {
$pdf->SetXY(88, 23);
$pdf->cell(0, 0, 'X');
}
$pdf->SetXY(36, $y);
$pdf->cell(0, 0, $args['recipient'][1]);
$y += 4;
$pdf->SetXY(36, $y);
$pdf->cell(0, 0, $args['recipient'][2]);
$y += 4;
$pdf->SetXY(36, $y);
$pdf->cell(0, 0, $args['recipient'][3]);
$y += 4;
$pdf->SetXY(36, $y);
$pdf->cell(0, 0, $args['recipient'][4]);
$y += 4;
$pdf->SetXY(36, $y);
$pdf->cell(0, 0, $args['recipient'][5]);
$y += 4;
$pdf->SetXY(36, $y);
$pdf->cell(0, 0, $args['recipient'][6]);
// TODO INFO FEUILLE 1 : DROITE
$y = 31;
$pdf->SetXY(130, $y);
$pdf->cell(0, 0, $args['recipient'][1]);
$y += 4;
$pdf->SetXY(130, $y);
$pdf->cell(0, 0, $args['recipient'][2]);
$y += 4;
$pdf->SetXY(130, $y);
$pdf->cell(0, 0, $args['recipient'][3]);
$y += 4;
$pdf->SetXY(130, $y);
$pdf->cell(0, 0, $args['recipient'][4]);
$y += 4;
$pdf->SetXY(130, $y);
$pdf->cell(0, 0, $args['recipient'][5]);
$y += 4;
$pdf->SetXY(130, $y);
$pdf->cell(0, 0, $args['recipient'][6]);
$pdf->SetXY(140, 65);
$pdf->cell(0, 0, $registeredMailNumber);
$barcodeObj = $barcode->getBarcodeObj('C128', $registeredMailNumber, -4, -100);
$pdf->Image('@'.$barcodeObj->getPngData(), 140, 70, 60, 12, '', '', '', false, 300);
//TODO INFO 2eme feuille
$pdf->SetXY(63, 100);
$pdf->cell(0, 0, $registeredMailNumber);
$barcodeObj = $barcode->getBarcodeObj('C128', $registeredMailNumber, -4, -100);
$pdf->Image('@'.$barcodeObj->getPngData(), 63, 105, 60, 12, '', '', '', false, 300);
if ($args['warranty'] == 'R1') {
$pdf->SetXY(101, 125);
} elseif ($args['warranty'] == 'R2') {
$pdf->SetXY(114, 125);
$pdf->cell(0, 0, 'X');
} else {
$pdf->SetXY(127, 125);
$pdf->cell(0, 0, 'X');
}
if ($args['letter'] === true) {
$pdf->SetXY(101, 130);
$pdf->cell(0, 0, 'X');
}
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['recipient'][1]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['recipient'][2]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['recipient'][3]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['recipient'][4]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['recipient'][5]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['recipient'][6]);
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['sender'][1]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['sender'][2]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['sender'][3]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['sender'][4]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['sender'][5]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['sender'][6]);
//TODO INFO 3eme feuille
if ($args['type'] == '2C') {
$pdf->SetXY(37, 207);
$pdf->cell(0, 0, $registeredMailNumber);
$barcodeObj = $barcode->getBarcodeObj('C128', $registeredMailNumber, -4, -100);
$pdf->Image('@'.$barcodeObj->getPngData(), 37, 212, 60, 12, '', '', '', false, 300);
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
$y = 235;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['recipient'][1]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['recipient'][2]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['recipient'][3]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['recipient'][4]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['recipient'][5]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['recipient'][6]);
}
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['sender'][1]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['sender'][2]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['sender'][3]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['sender'][4]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['sender'][5]);
$y += 4;
$pdf->SetXY(57, $y);
$pdf->cell(0, 0, $args['sender'][6]);
$pdf->SetXY(5, 280);
$pdf->Multicell(40, 5, $args['reference']);
} else {
// DATA TEST
// $pdf->setSourceFile('/var/www/html/international.pdf');
// $pageId = $pdf->ImportPage(1);
// $pageInfo = $pdf->getTemplatesize($pageId);
// $pdf->AddPage($pageInfo['orientation'], $pageInfo);
// $pdf->useImportedPage($pageId);
$pdf->setFont('times', '', '8');
$y = 27;
$pdf->SetXY(127, $y);
$pdf->cell(0, 0, $args['recipient'][1]);
$y += 4;
$pdf->SetXY(127, $y);
$pdf->cell(0, 0, $args['recipient'][2]);
$y += 4;
$pdf->SetXY(127, $y);
$pdf->cell(0, 0, $args['recipient'][3]);
$y += 4;
$pdf->SetXY(127, $y);
$pdf->cell(0, 0, $args['recipient'][4]);
$y += 4;
$pdf->SetXY(127, $y);
$pdf->cell(0, 0, $args['recipient'][5]);
$y += 4;
$pdf->SetXY(127, $y);
$pdf->cell(0, 0, $args['recipient'][6]);
$y += 4;
$pdf->SetXY(127, $y);
$pdf->cell(0, 0, $args['recipient'][7]);
$y = 2;
$pdf->SetXY(26, $y);
$pdf->cell(0, 0, $args['sender'][1]);
$y += 3;
$pdf->cell(0, 0, $args['sender'][2]);
$y += 3;
$pdf->cell(0, 0, $args['sender'][3]);
$y += 3;
$pdf->cell(0, 0, $args['sender'][4]);
$y += 3;
$pdf->cell(0, 0, $args['sender'][5]);
$y += 3;
$pdf->cell(0, 0, "{$args['sender'][6]}, {$args['sender'][7]}");
$pdf->SetXY(37.5, 22);
$pdf->cell(0, 0, $args['sender'][7]);
$pdf->SetFont('times', '', 11);
if ($args['warranty'] == 'R1') {
} elseif ($args['warranty'] == 'R2') {
$pdf->cell(0, 0, 'X');
}
$pdf->SetXY(52, 27.5);
$pdf->cell(0, 0, $registeredMailNumber);
$pdf->SetXY(52, 36.5);
$pdf->cell(0, 0, $registeredMailNumber);
$barcodeObj = $barcode->getBarcodeObj('C128', $registeredMailNumber, -4, -100);
$pdf->Image('@'.$barcodeObj->getPngData(), 38, 41, 60, 10, '', '', '', false, 300);
$pdf->SetXY(52, 57);
$pdf->cell(0, 0, $registeredMailNumber);
$barcodeObj = $barcode->getBarcodeObj('C128', $registeredMailNumber, -4, -100);
$pdf->Image('@'.$barcodeObj->getPngData(), 38, 62, 60, 10, '', '', '', false, 300);
$pdf->SetXY(52, 72);
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
$pdf->cell(0, 0, $registeredMailNumber);
$pdf->setFont('times', '', '8');
$y = 236;
$pdf->SetXY(103, $y);
$pdf->cell(0, 0, $args['sender'][1]);
$y += 3;
$pdf->SetXY(103, $y);
$pdf->cell(0, 0, $args['sender'][2]);
$y += 3;
$pdf->SetXY(103, $y);
$pdf->cell(0, 0, $args['sender'][3]);
$y += 3;
$pdf->SetXY(103, $y);
$pdf->cell(0, 0, $args['sender'][4]);
$y += 3;
$pdf->SetXY(103, $y);
$pdf->cell(0, 0, $args['sender'][5]);
$y += 3;
$pdf->SetXY(103, $y);
$pdf->cell(0, 0, $args['sender'][6]);
$y += 3;
$pdf->SetXY(103, $y);
$pdf->cell(0, 0, $args['sender'][7]);
$pdf->cell(0, 0, $registeredMailNumber);
$pdf->setFont('times', '', '10');
$pdf->SetXY(95, 219);
$pdf->Multicell(70, 5, $args['reference']);
$pdf->setFont('times', '', '8');
$y = 208;
$pdf->SetXY(20, $y);
$pdf->cell(0, 0, $args['recipient'][1]);
$y += 4;
$pdf->SetXY(20, $y);
$pdf->cell(0, 0, $args['recipient'][2]);
$y += 4;
$pdf->SetXY(20, $y);
$pdf->cell(0, 0, $args['recipient'][3]);
$y += 4;
$pdf->SetXY(20, $y);
$pdf->cell(0, 0, $args['recipient'][4]);
$y += 4;
$pdf->SetXY(20, $y);
$pdf->cell(0, 0, $args['recipient'][5]);
$y += 4;
$pdf->SetXY(20, $y);
$pdf->cell(0, 0, $args['recipient'][6]);
$y += 4;
$pdf->SetXY(20, $y);
$pdf->cell(0, 0, $args['recipient'][7]);
}
$fileContent = $pdf->Output('', 'S');
public static function getDepositListPdf(array $args)
{
$pdf = new Fpdi();
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
$pdf->SetAutoPagebreak(false);
$pdf->addPage();
$pdf->SetFont('times', '', 11);
$nb = 0;
$page = 1;
$pdf->setFont('times', 'B', 11);
$pdf->SetXY(10, 10);
if ($args['type'] == '2D') {
$pdf->MultiCell(0, 15, "DESCRIPTIF DE PLI - LETTRE RECOMMANDEE SANS AR", 'LRTB', 'C', 0);
} elseif ($args['type'] == '2C') {
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
$pdf->MultiCell(0, 15, "DESCRIPTIF DE PLI - LETTRE RECOMMANDEE AVEC AR", 'LRTB', 'C', 0);
} else {
$pdf->MultiCell(0, 15, "DESCRIPTIF DE PLI - LETTRE RECOMMANDEE INTERNATIONALE AVEC AR", 'LRTB', 'C', 0);
}
$pdf->SetXY(10, 30);
$pdf->setFont('times', 'B', 11);
$pdf->Cell(30, 10, "Raison sociale", 1);
$pdf->setFont('times', '', 11);
$pdf->Cell(85, 10, $args['site']['label'], 1);
$pdf->Ln();
$pdf->setFont('times', 'B', 11);
$pdf->Cell(30, 10, "Adresse", 1);
$pdf->setFont('times', '', 11);
$pdf->Cell(85, 10, $args['site']['addressNumber'] . ' ' . $args['site']['addressStreet'], 1);
$pdf->Ln();
$pdf->setFont('times', 'B', 11);
$pdf->Cell(30, 10, "Code postale", 1);
$pdf->setFont('times', '', 11);
$pdf->Cell(15, 10, $args['site']['addressPostcode'], 1);
$pdf->setFont('times', 'B', 11);
$pdf->Cell(15, 10, "Ville", 1);
$pdf->setFont('times', '', 11);
$pdf->Cell(55, 10, $args['site']['addressTown'], 1);
$pdf->Ln();
$pdf->SetXY(145, 30);
$pdf->setFont('times', 'B', 11);
$pdf->Cell(55, 10, "N° Client (Coclico)", 1);
$pdf->Ln();
$pdf->SetXY(145, 40);
$pdf->setFont('times', '', 11);
$pdf->Cell(55, 10, $args['site']['accountNumber'], 1);
$pdf->Ln();
$pdf->SetXY(145, 50);
$pdf->setFont('times', 'B', 11);
$pdf->Cell(55, 10, "N° Compte de suivi", 1);
$pdf->Ln();
$pdf->SetXY(145, 60);
$pdf->setFont('times', '', 11);
$pdf->Cell(55, 10, $args['trackingNumber'], 1);
$pdf->Ln();
$pdf->SetXY(10, 80);
$pdf->setFont('times', 'B', 11);
$pdf->Cell(30, 10, "Lieu", 1);
$pdf->setFont('times', '', 11);
$pdf->Cell(100, 10, $args['site']['postOfficeLabel'], 1);
$pdf->setFont('times', 'B', 11);
$pdf->Cell(20, 10, "Date", 1);
$pdf->setFont('times', '', 11);
$pdf->Cell(40, 10, date("d/m/y"), 1);
$pdf->SetXY(10, 100);
$pdf->Cell(10, 10, "", 1);
$pdf->setFont('times', 'B', 11);
$pdf->Cell(30, 10, "ID du pli", 1);
$pdf->Cell(10, 10, "NG*", 1);
$pdf->Cell(15, 10, "CRBT", 1);
$pdf->Cell(30, 10, "Référence", 1);
$pdf->Cell(95, 10, "Destinataire", 1);
$pdf->Ln();
// List
foreach ($args['registeredMails'] as $position => $registeredMail) {
if ($position % 9 == 0) {
$nb++;
}
$registeredMailNumber = RegisteredMailController::getRegisteredMailNumber(['type' => $args['type'], 'rawNumber' => $registeredMail['number']]);
$pdf->setFont('times', '', 9);
$pdf->Cell(10, 10, $position + 1, 1);
$pdf->setFont('times', '', 9);
$pdf->Cell(30, 10, $registeredMailNumber, 1);
$pdf->Cell(10, 10, $registeredMail['warranty'], 1);
$pdf->Cell(15, 10, "", 1);
$pdf->Cell(30, 10, mb_strimwidth($registeredMail['reference'], 0, 25, ""), 1);
$pdf->setFont('times', '', 6);
if (strlen($registeredMail['recipient'][1] . " " . $registeredMail['recipient'][4] . " " . $registeredMail['recipient'][6]) > 60) {
$pdf->Cell(95, 10, $registeredMail['recipient'][1], 1);
$pdf->SetXY($pdf->GetX() - 95, $pdf->GetY() + 3);
$pdf->Cell(95, 10, $registeredMail['recipient'][4] . " " . $registeredMail['recipient'][6], 0);
$pdf->SetXY($pdf->GetX() + 95, $pdf->GetY() - 3);
} else {
$pdf->Cell(95, 10, $registeredMail['recipient'][1] . " " . $registeredMail['recipient'][4] . " " . $registeredMail['recipient'][6], 1);
}
$pdf->Ln();
//contrôle du nb de reco présent sur la page. Si 16 lignes, changement de page et affichage du footer
if ($position % 12 >= 11) {
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
$pdf->SetXY(10, 276);
$pdf->setFont('times', 'I', 8);
$pdf->Cell(0, 0, "*Niveau de garantie (R1 pour tous ou R2, R3");
$pdf->SetXY(-30, 276);
$pdf->setFont('times', 'I', 8);
$pdf->Cell(0, 0, $page . '/' . $nb);
$pdf->addPage();
$page++;
}
}
//contrôle du nb de reco présent sur la page. Si trop, saut de page pour la partie réservé à la poste
if ($position % 10 >= 9) {
$pdf->SetXY(10, 276);
$pdf->setFont('times', 'I', 8);
$pdf->Cell(0, 0, "*Niveau de garantie (R1 pour tous ou R2, R3");
$pdf->SetXY(-30, 276);
$pdf->setFont('times', 'I', 8);
$pdf->Cell(0, 0, $page . '/' . $nb);
$pdf->addPage();
$page++;
}
$pdf->setFont('times', 'B', 9);
$pdf->SetXY(10, 228);
$pdf->Cell(0, 0, 'Partie réservée au contrôle postal:');
$pdf->SetXY(110, 238);
$pdf->setFont('times', '', 11);
$pdf->SetXY(10, 233);
$pdf->Cell(90, 40, '', 1);
$pdf->Cell(50, 40, '', 1);
$pdf->Cell(11, 10, "Total", 1);
$pdf->setFont('times', '', 9);
$position = $position + 1;
$pdf->Cell(0, 10, $position . " recommandé(s)", 1);
$pdf->SetXY(10, 234);
$pdf->Cell(0, 0, 'Commentaire:');
$pdf->SetXY(110, 234);
$pdf->Cell(0, 0, 'Timbre à date:');
$pdf->setFont('times', 'I', 8);
$pdf->SetXY(100, 268);
$pdf->Cell(0, 0, 'Visa après contrôle des quantités.');
$pdf->SetXY(10, 276);
$pdf->setFont('times', 'I', 8);
$pdf->Cell(0, 0, "*Niveau de garantie (R1 pour tous ou R2, R3");
$pdf->SetXY(-30, 276);
$pdf->setFont('times', 'I', 8);
$pdf->Cell(0, 0, $page . '/' . $nb);
$fileContent = $pdf->Output('', 'S');
return ['fileContent' => $fileContent];
public static function getFormattedRegisteredMail(array $args)
{
ValidatorModel::notEmpty($args, ['resId']);
ValidatorModel::intVal($args, ['resId']);
$registeredMail = RegisteredMailModel::getByResId(['select' => ['issuing_site', 'type', 'deposit_id', 'warranty', 'letter', 'recipient', 'reference', 'generated', 'number'], 'resId' => $args['resId']]);
if (!empty($registeredMail)) {
$registeredMail['recipient'] = json_decode($registeredMail['recipient'], true);
$registeredMail['number'] = RegisteredMailController::getRegisteredMailNumber(['type' => $registeredMail['type'], 'rawNumber' => $registeredMail['number']]);

Florian Azizian
committed
$registeredMail['issuingSite'] = 'issuingSite#'.$registeredMail['issuing_site'];
unset($registeredMail['issuing_site']);
}
return $registeredMail;
}