@@ -10,17 +10,17 @@ discard block |
||
| 10 | 10 | class ContractService |
| 11 | 11 | { |
| 12 | 12 | |
| 13 | - public function __construct( |
|
| 13 | + public function __construct( |
|
| 14 | 14 | private EntityManagerInterface $manager, |
| 15 | 15 | private PdfService $pdf, |
| 16 | 16 | private ModelService $modelService |
| 17 | - ) {} |
|
| 17 | + ) {} |
|
| 18 | 18 | |
| 19 | - public function genetateFromModel(Contract $data) |
|
| 20 | - { |
|
| 19 | + public function genetateFromModel(Contract $data) |
|
| 20 | + { |
|
| 21 | 21 | $file = $data->getContractFile(); |
| 22 | 22 | if (!$file) |
| 23 | - $file = new File(); |
|
| 23 | + $file = new File(); |
|
| 24 | 24 | |
| 25 | 25 | $file->setFileType('text'); |
| 26 | 26 | $file->setExtension('html'); |
@@ -35,27 +35,27 @@ discard block |
||
| 35 | 35 | $this->manager->flush(); |
| 36 | 36 | |
| 37 | 37 | return $data; |
| 38 | - } |
|
| 38 | + } |
|
| 39 | 39 | |
| 40 | - public function getContractPDFContent(Contract $contract): string |
|
| 41 | - { |
|
| 40 | + public function getContractPDFContent(Contract $contract): string |
|
| 41 | + { |
|
| 42 | 42 | $content = $contract->getContractFile()->getContent(); |
| 43 | 43 | |
| 44 | 44 | if ($contract->getContractFile()->getExtension() == 'pdf') |
| 45 | - return $content; |
|
| 45 | + return $content; |
|
| 46 | 46 | |
| 47 | 47 | if (empty($content)) { |
| 48 | - throw new \Exception( |
|
| 48 | + throw new \Exception( |
|
| 49 | 49 | sprintf('Houve um erro ao gerar o PDF') |
| 50 | - ); |
|
| 50 | + ); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | return $this->pdf->convertHtmlToPdf($content); |
| 54 | - } |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | 56 | |
| 57 | - public function afterPersist(Contract $contract) |
|
| 58 | - { |
|
| 57 | + public function afterPersist(Contract $contract) |
|
| 58 | + { |
|
| 59 | 59 | return $this->genetateFromModel($contract); |
| 60 | - } |
|
| 60 | + } |
|
| 61 | 61 | } |