-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
118 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
### CUENTAS PRINCIPALES ### | ||
'1000': | ||
Desc: Activos | ||
Natur: D | ||
CodAgrup: '100' # Activo | ||
Nivel: 1 | ||
SubCtaDe: | ||
SaldoIni: 0 | ||
|
||
### ACTIVOS 100 ### | ||
# BANCOS | ||
'1020': | ||
Desc: Bancos | ||
Natur: D | ||
CodAgrup: '102' # Bancos nacionales | ||
Nivel: 2 | ||
SubCtaDe: '1000' | ||
SaldoIni: 0 | ||
'1020.01': | ||
Desc: Bancos Nacionales | ||
Natur: D | ||
CodAgrup: '102.01' # Bancos nacionales | ||
Nivel: 2 | ||
SubCtaDe: '1020' | ||
SaldoIni: 0 | ||
'1020.02': | ||
Desc: Bancos Extranjeros | ||
Natur: D | ||
CodAgrup: '102.02' # Bancos extranjeros | ||
Nivel: 2 | ||
SubCtaDe: '1020' | ||
SaldoIni: 0 | ||
|
||
# CLIENTES | ||
'1050': | ||
Desc: Clientes | ||
Natur: D | ||
CodAgrup: '105' # Clientes | ||
Nivel: 2 | ||
SubCtaDe: '1000' | ||
SaldoIni: 0 | ||
'1050.01': | ||
Desc: Clientes Nacionales | ||
Natur: D | ||
CodAgrup: '105.01' # Clientes nacionales | ||
Nivel: 2 | ||
SubCtaDe: '1050' | ||
SaldoIni: 0 | ||
'1050.02': | ||
Desc: Clientes Extranjeros | ||
Natur: D | ||
CodAgrup: '105.02' # Clientes extranjeros | ||
Nivel: 2 | ||
SubCtaDe: '1050' | ||
SaldoIni: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 9 additions & 1 deletion
10
tests/test_contabilidad_electronica/ref/simple/MOLE870717DRA202402CT.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<catalogocuentas:Catalogo xmlns:catalogocuentas="http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/CatalogoCuentas" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="1.3" RFC="MOLE870717DRA" Mes="02" Anio="2024" xsi:schemaLocation="http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/CatalogoCuentas http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/CatalogoCuentas/CatalogoCuentas_1_3.xsd"/> | ||
<catalogocuentas:Catalogo xmlns:catalogocuentas="http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/CatalogoCuentas" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="1.3" RFC="MOLE870717DRA" Mes="02" Anio="2024" xsi:schemaLocation="http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/CatalogoCuentas http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/CatalogoCuentas/CatalogoCuentas_1_3.xsd"> | ||
<catalogocuentas:Ctas CodAgrup="100" NumCta="1000" Desc="Activos" Nivel="1" Natur="D"/> | ||
<catalogocuentas:Ctas CodAgrup="102" NumCta="1020" Desc="Bancos" SubCtaDe="1000" Nivel="2" Natur="D"/> | ||
<catalogocuentas:Ctas CodAgrup="102.01" NumCta="1020.01" Desc="Bancos Nacionales" SubCtaDe="1020" Nivel="2" Natur="D"/> | ||
<catalogocuentas:Ctas CodAgrup="102.02" NumCta="1020.02" Desc="Bancos Extranjeros" SubCtaDe="1020" Nivel="2" Natur="D"/> | ||
<catalogocuentas:Ctas CodAgrup="105" NumCta="1050" Desc="Clientes" SubCtaDe="1000" Nivel="2" Natur="D"/> | ||
<catalogocuentas:Ctas CodAgrup="105.01" NumCta="1050.01" Desc="Clientes Nacionales" SubCtaDe="1050" Nivel="2" Natur="D"/> | ||
<catalogocuentas:Ctas CodAgrup="105.02" NumCta="1050.02" Desc="Clientes Extranjeros" SubCtaDe="1050" Nivel="2" Natur="D"/> | ||
</catalogocuentas:Catalogo> |