| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | 
							- <?php
 - 
 - namespace App\Transformers;
 - 
 - use App\DTO\EntityReportDTO;
 - use App\DTO\ReportCategoryDTO;
 - use App\DTO\ReportDTO;
 - use App\Enums\Accounting\DocumentEntityType;
 - 
 - class EntityBalanceSummaryReportTransformer extends BaseReportTransformer
 - {
 -     public function __construct(
 -         ReportDTO $report,
 -         private readonly DocumentEntityType $entityType,
 -     ) {
 -         parent::__construct($report);
 -     }
 - 
 -     public function getTitle(): string
 -     {
 -         return $this->entityType->getBalanceSummaryReportTitle();
 -     }
 - 
 -     /**
 -      * @return ReportCategoryDTO[]
 -      */
 -     public function getCategories(): array
 -     {
 -         $categories = [];
 - 
 -         foreach ($this->report->categories as $categoryName => $category) {
 -             $data = array_map(function (EntityReportDTO $entity) {
 -                 $row = [];
 - 
 -                 foreach ($this->getColumns() as $column) {
 -                     $row[$column->getName()] = match ($column->getName()) {
 -                         'entity_name' => [
 -                             'name' => $entity->name,
 -                             'id' => $entity->id,
 -                         ],
 -                         'total_balance' => $entity->balance->totalBalance,
 -                         'paid_balance' => $entity->balance->paidBalance,
 -                         'unpaid_balance' => $entity->balance->unpaidBalance,
 -                         default => '',
 -                     };
 -                 }
 - 
 -                 return $row;
 -             }, $category);
 - 
 -             $categories[] = new ReportCategoryDTO(
 -                 header: null,
 -                 data: $data,
 -                 summary: null,
 -             );
 -         }
 - 
 -         return $categories;
 -     }
 - 
 -     public function getOverallTotals(): array
 -     {
 -         $totals = [];
 - 
 -         foreach ($this->getColumns() as $column) {
 -             $totals[$column->getName()] = match ($column->getName()) {
 -                 'entity_name' => 'Total',
 -                 'total_balance' => $this->report->entityBalanceTotal->totalBalance,
 -                 'paid_balance' => $this->report->entityBalanceTotal->paidBalance,
 -                 'unpaid_balance' => $this->report->entityBalanceTotal->unpaidBalance,
 -                 default => '',
 -             };
 -         }
 - 
 -         return $totals;
 -     }
 - }
 
 
  |