Skip to content

Commit

Permalink
Se agrega CsvBatchProcessorStrategy.php y EstandarParserStrategy.php
Browse files Browse the repository at this point in the history
  • Loading branch information
nbcontreras committed Jan 17, 2025
1 parent 459f8fc commit 596ccb6
Show file tree
Hide file tree
Showing 8 changed files with 1,469 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.codegpt
.DS_Store
/.php-cs-fixer.cache
/.phpunit.result.cache
/build/
Expand Down
2 changes: 2 additions & 0 deletions config/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,8 @@ services:
'%kernel.project_dir%/resources/data/repository/aduana_modalidades_venta.php'
libredte\lib\Core\Package\Billing\Component\Document\Entity\AduanaMoneda:
'%kernel.project_dir%/resources/data/repository/aduana_moneda.php'
libredte\lib\Core\Package\Billing\Component\Document\Entity\TipoDocumento:
'%kernel.project_dir%/resources/data/repository/tipos_documento.php'
libredte\lib\Core\Package\Billing\Component\Document\Entity\AduanaPais:
'%kernel.project_dir%/resources/data/repository/aduana_paises.php'
libredte\lib\Core\Package\Billing\Component\Document\Entity\AduanaPuerto:
Expand Down
10 changes: 10 additions & 0 deletions src/Package/Billing/Component/Document/Entity/AduanaMoneda.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ public function getCodigoISO(): string
return $this->getAttribute('codigo_iso');
}

/**
* Entrega la glosa de la moneda.
*
* @return string
*/
public function getGlosa(): string
{
return $this->getAttribute('glosa');
}

/**
* Obtiene la instancia de la moneda asociada a la moneda de aduaba.
*
Expand Down
Loading

0 comments on commit 596ccb6

Please sign in to comment.