This commit is contained in:
2025-01-27 03:22:40 -06:00
parent a0a3999c40
commit 9142a0390e
1126 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<?php
namespace Modules\Admin\App\Models\Sat;
class Impuestos
{
// Definición de constantes para c_impuesto
const IMPUESTOS_ISR = 1;
const IMPUESTOS_IVA = 2;
const IMPUESTOS_IEPS = 3;
public static $catalogo = [
self::IMPUESTOS_ISR => 'ISR',
self::IMPUESTOS_IVA => 'IVA',
self::IMPUESTOS_IEPS => 'IEPS',
];
}