Skip to content

Commit 8f28f47

Browse files
committed
Added support for contabilidad
1 parent 51d3fa7 commit 8f28f47

File tree

207 files changed

+4061
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+4061
-4
lines changed
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<h3>Auxiliar de Cuentas</h3>
2+
<table>
3+
<tr>
4+
<th style="width: 25%">RFC</th>
5+
<th style="width: 25%">Año</th>
6+
<th style="width: 25%">Mes</th>
7+
<th style="width: 25%">Tipo Solicitud</th>
8+
</tr>
9+
<tr>
10+
<td class="cen">{{ c.RFC }}</td>
11+
<td class="cen">{{ c.Anio }}</td>
12+
<td class="cen">{{ c.Mes }}</td>
13+
<td class="cen">{{ c.TipoSolicitud }}</td>
14+
</tr>
15+
</table>
16+
<br>
17+
<table>
18+
<thead>
19+
<tr>
20+
<th style="width: 15%;">NumCta</th>
21+
<th style="width: 61%;">DesCta</th>
22+
<th style="width: 12%;">SaldoIni</th>
23+
<th style="width: 12%;">SaldoFin</th>
24+
</tr>
25+
</thead>
26+
<tbody>
27+
{% for c in iterate(c.Cuenta) %}
28+
<tr>
29+
<td class="l">
30+
{{ c.NumCta }}
31+
</td>
32+
<td class="l">
33+
{{ c.DesCta }}
34+
</td>
35+
<td class="r">
36+
{{ c.SaldoIni }}
37+
</td>
38+
<td class="r">
39+
{{ c.SaldoFin }}
40+
</td>
41+
</tr>
42+
{% if c.DetalleAux %}
43+
<tr style="break-before: avoid;">
44+
<td colspan="4" style="padding-left: 5%; padding-right: 0%; background-color:#ffffff;">
45+
<table >
46+
<tr>
47+
<th style="width: 10%;">Fecha</th>
48+
<th style="width: 20%;">NumUnIdenPol</th>
49+
<th style="width: 46%;">Concepto</th>
50+
<th style="width: 12%;">Debe</th>
51+
<th style="width: 12%;">Haber</th>
52+
</tr>
53+
{% for c in c.DetalleAux %}
54+
<tr>
55+
<td class="l">{{ c.Fecha }}</td>
56+
<td class="l">{{ c.NumUnIdenPol }}</td>
57+
<td class="l">{{ c.Concepto }}</td>
58+
<td class="r">{{ c.Debe }}</td>
59+
<td class="r">{{ c.Haber }}</td>
60+
</tr>
61+
{% endfor %}
62+
</table>
63+
<br>
64+
</td>
65+
</tr>
66+
{% endif %}
67+
{% endfor %}
68+
</tbody>
69+
</table>

satcfdi/render/templates/Polizas.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ <h3>Pólizas</h3>
3737
</tr>
3838
{% if c.Transaccion %}
3939
<tr style="break-before: avoid;">
40-
<td colspan="3" style="padding-left: 5%; padding-right: 0%;">
40+
<td colspan="3" style="padding-left: 5%; padding-right: 0%; background-color:#ffffff;">
4141
<table >
4242
<tr>
4343
<th style="width: 10%;">NumCta</th>
@@ -56,6 +56,7 @@ <h3>Pólizas</h3>
5656
</tr>
5757
{% endfor %}
5858
</table>
59+
<br>
5960
</td>
6061
</tr>
6162
{% endif %}
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<h3>Auxiliar de Folios</h3>
2+
<table>
3+
<tr>
4+
<th style="width: 25%">RFC</th>
5+
<th style="width: 25%">Año</th>
6+
<th style="width: 25%">Mes</th>
7+
<th style="width: 25%">Tipo Solicitud</th>
8+
</tr>
9+
<tr>
10+
<td class="cen">{{ c.RFC }}</td>
11+
<td class="cen">{{ c.Anio }}</td>
12+
<td class="cen">{{ c.Mes }}</td>
13+
<td class="cen">{{ c.TipoSolicitud }}</td>
14+
</tr>
15+
</table>
16+
<br>
17+
<table>
18+
<thead>
19+
<tr>
20+
<th style="width: 15%;">NumUnIdenPol</th>
21+
<th style="width: 61%;">Fecha</th>
22+
</tr>
23+
</thead>
24+
<tbody>
25+
{% for c in iterate(c.DetAuxFol) %}
26+
<tr>
27+
<td class="l">
28+
{{ c.NumUnIdenPol }}
29+
</td>
30+
<td class="l">
31+
{{ c.Fecha }}
32+
</td>
33+
</tr>
34+
{% if c.ComprNal %}
35+
<tr style="break-before: avoid;">
36+
<td colspan="2" style="padding-left: 5%; padding-right: 0%; background-color:#ffffff;">
37+
<table >
38+
<tr>
39+
<th style="width: 40%;">UUID_CFDI</th>
40+
<th style="width: 40%;">RFC</th>
41+
<th style="width: 20%;">MontoTotal</th>
42+
</tr>
43+
{% for c in c.ComprNal %}
44+
<tr>
45+
<td class="l">{{ c.UUID_CFDI }}</td>
46+
<td class="l">{{ c.RFC }}</td>
47+
<td class="r">{{ c.MontoTotal }}</td>
48+
</tr>
49+
{% endfor %}
50+
</table>
51+
<br>
52+
</td>
53+
</tr>
54+
{% endif %}
55+
{% endfor %}
56+
</tbody>
57+
</table>

satcfdi/render/templates/_style.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,18 @@ table table table th {
103103
table table table table th {
104104
background-color:#f8f8f8;
105105
}
106+
table td {
107+
background-color:#f0f0f0;
108+
}
109+
table td {
110+
background-color:#f8f8f8;
111+
}
112+
table td {
113+
background-color:#ffffff;
114+
}
115+
table td {
116+
background-color:#ffffff;
117+
}
106118
.htd {
107119
text-align: right;
108120
width: 1px;

tests/contabilidad_ejemplos/CACX7605101P8202312PL.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,21 @@
1717
<PLZ:CompNal UUID_CFDI="a262228b-b105-4b90-9b02-ffe0e2d881cc" RFC="EWE1709045U0" MontoTotal="14911.94"/>
1818
</PLZ:Transaccion>
1919
</PLZ:Poliza>
20+
<PLZ:Poliza NumUnIdenPol="2023-12-I-0001" Fecha="2023-12-01" Concepto="Ingreso - Venta">
21+
<PLZ:Transaccion NumCta="4100.1" DesCta="INGRESOS" Concepto="Subtotal" Debe="0" Haber="13544.00">
22+
<PLZ:CompNal UUID_CFDI="a262228b-b105-4b90-9b02-ffe0e2d881cc" RFC="EWE1709045U0" MontoTotal="14911.94"/>
23+
</PLZ:Transaccion>
24+
<PLZ:Transaccion NumCta="2152.1" DesCta="IVA TRASLADADO NO COBRADO" Concepto="IVA Trasladado" Debe="0" Haber="2167.04">
25+
<PLZ:CompNal UUID_CFDI="a262228b-b105-4b90-9b02-ffe0e2d881cc" RFC="EWE1709045U0" MontoTotal="14911.94"/>
26+
</PLZ:Transaccion>
27+
<PLZ:Transaccion NumCta="2151.1.2" DesCta="IMPUESTOS RETENIDOS DE ISR PENDIENTE" Concepto="ISR Retenido" Debe="1354.40" Haber="0">
28+
<PLZ:CompNal UUID_CFDI="a262228b-b105-4b90-9b02-ffe0e2d881cc" RFC="EWE1709045U0" MontoTotal="14911.94"/>
29+
</PLZ:Transaccion>
30+
<PLZ:Transaccion NumCta="1104.1" DesCta="IVA A FAVOR" Concepto="IVA Retenido" Debe="1444.70" Haber="0">
31+
<PLZ:CompNal UUID_CFDI="a262228b-b105-4b90-9b02-ffe0e2d881cc" RFC="EWE1709045U0" MontoTotal="14911.94"/>
32+
</PLZ:Transaccion>
33+
<PLZ:Transaccion NumCta="1103.1" DesCta="CLIENTES NACIONALES" Concepto="Total" Debe="14911.94" Haber="0">
34+
<PLZ:CompNal UUID_CFDI="a262228b-b105-4b90-9b02-ffe0e2d881cc" RFC="EWE1709045U0" MontoTotal="14911.94"/>
35+
</PLZ:Transaccion>
36+
</PLZ:Poliza>
2037
</PLZ:Polizas>
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<AuxiliarCtas:AuxiliarCtas xmlns:AuxiliarCtas="http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/AuxiliarCtas" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="1.3" RFC="CACX7605101P8" Mes="12" Anio="2023" TipoSolicitud="AF" xsi:schemaLocation="http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/AuxiliarCtas http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/AuxiliarCtas/AuxiliarCtas_1_3.xsd">
3+
<AuxiliarCtas:Cuenta NumCta="1102.1.1" DesCta="MiBanco" SaldoIni="0" SaldoFin="10091.94">
4+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-C-0001" Concepto="Total" Debe="12911.94" Haber="0"/>
5+
<AuxiliarCtas:DetalleAux Fecha="2023-12-27" NumUnIdenPol="2023-12-C-0002" Concepto="Total" Debe="0" Haber="2420.00"/>
6+
<AuxiliarCtas:DetalleAux Fecha="2023-12-22" NumUnIdenPol="2023-12-C-0003" Concepto="Total" Debe="0" Haber="400.00"/>
7+
</AuxiliarCtas:Cuenta>
8+
<AuxiliarCtas:Cuenta NumCta="1103.1" DesCta="Clientes Nacionales" SaldoIni="0" SaldoFin="0.00">
9+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-I-0001" Concepto="Total" Debe="12911.94" Haber="0"/>
10+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-C-0001" Concepto="Total" Debe="0" Haber="12911.94"/>
11+
</AuxiliarCtas:Cuenta>
12+
<AuxiliarCtas:Cuenta NumCta="1104.2" DesCta="Otros impuestos a favor" SaldoIni="0" SaldoFin="0.00">
13+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-I-0001" Concepto="ISR Retenido" Debe="1354.40" Haber="0"/>
14+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-I-0001" Concepto="IVA Retenido" Debe="1444.70" Haber="0"/>
15+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-C-0001" Concepto="ISR Retenido" Debe="0" Haber="1354.40"/>
16+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-C-0001" Concepto="IVA Retenido" Debe="0" Haber="1444.70"/>
17+
</AuxiliarCtas:Cuenta>
18+
<AuxiliarCtas:Cuenta NumCta="2153.1" DesCta="IVA Trasladado Cobrado" SaldoIni="0" SaldoFin="2167.04">
19+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-C-0001" Concepto="IVA Trasladado" Debe="0" Haber="2167.04"/>
20+
</AuxiliarCtas:Cuenta>
21+
<AuxiliarCtas:Cuenta NumCta="2152.1" DesCta="IVA Trasladado No Cobrado" SaldoIni="0" SaldoFin="2167.04">
22+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-I-0001" Concepto="IVA Trasladado" Debe="0" Haber="2167.04"/>
23+
</AuxiliarCtas:Cuenta>
24+
<AuxiliarCtas:Cuenta NumCta="2151.1" DesCta="Impuestos Retenidos de ISR" SaldoIni="0" SaldoFin="-1354.40">
25+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-C-0001" Concepto="ISR Retenido" Debe="1354.40" Haber="0"/>
26+
</AuxiliarCtas:Cuenta>
27+
<AuxiliarCtas:Cuenta NumCta="2151.2" DesCta="Impuestos Retenidos de IVA" SaldoIni="0" SaldoFin="-1444.70">
28+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-C-0001" Concepto="IVA Retenido" Debe="1444.70" Haber="0"/>
29+
</AuxiliarCtas:Cuenta>
30+
<AuxiliarCtas:Cuenta NumCta="4100.1" DesCta="Ingresos" SaldoIni="0" SaldoFin="11376.96">
31+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-I-0001" Concepto="Subtotal" Debe="0" Haber="13544.00"/>
32+
<AuxiliarCtas:DetalleAux Fecha="2023-12-01" NumUnIdenPol="2023-12-C-0001" Concepto="IVA Trasladado" Debe="2167.04" Haber="0"/>
33+
</AuxiliarCtas:Cuenta>
34+
<AuxiliarCtas:Cuenta NumCta="5202.1" DesCta="Otros Gastos de Administración" SaldoIni="0" SaldoFin="2431.04">
35+
<AuxiliarCtas:DetalleAux Fecha="2023-12-27" NumUnIdenPol="2023-12-E-0001" Concepto="Subtotal" Debe="2086.21" Haber="0"/>
36+
<AuxiliarCtas:DetalleAux Fecha="2023-12-22" NumUnIdenPol="2023-12-E-0002" Concepto="Subtotal" Debe="344.83" Haber="0"/>
37+
</AuxiliarCtas:Cuenta>
38+
<AuxiliarCtas:Cuenta NumCta="1152.1" DesCta="IVA Acreditable Pagado" SaldoIni="0" SaldoFin="388.96">
39+
<AuxiliarCtas:DetalleAux Fecha="2023-12-27" NumUnIdenPol="2023-12-C-0002" Concepto="IVA Trasladado" Debe="333.79" Haber="0"/>
40+
<AuxiliarCtas:DetalleAux Fecha="2023-12-22" NumUnIdenPol="2023-12-C-0003" Concepto="IVA Trasladado" Debe="55.17" Haber="0"/>
41+
</AuxiliarCtas:Cuenta>
42+
<AuxiliarCtas:Cuenta NumCta="1153.1" DesCta="IVA Pendiente de Pago" SaldoIni="0" SaldoFin="0.00">
43+
<AuxiliarCtas:DetalleAux Fecha="2023-12-27" NumUnIdenPol="2023-12-E-0001" Concepto="IVA Trasladado" Debe="333.79" Haber="0"/>
44+
<AuxiliarCtas:DetalleAux Fecha="2023-12-22" NumUnIdenPol="2023-12-E-0002" Concepto="IVA Trasladado" Debe="55.17" Haber="0"/>
45+
<AuxiliarCtas:DetalleAux Fecha="2023-12-27" NumUnIdenPol="2023-12-C-0002" Concepto="IVA Trasladado" Debe="0" Haber="333.79"/>
46+
<AuxiliarCtas:DetalleAux Fecha="2023-12-22" NumUnIdenPol="2023-12-C-0003" Concepto="IVA Trasladado" Debe="0" Haber="55.17"/>
47+
</AuxiliarCtas:Cuenta>
48+
<AuxiliarCtas:Cuenta NumCta="2101.1" DesCta="Proveedores nacionales" SaldoIni="0" SaldoFin="0.00">
49+
<AuxiliarCtas:DetalleAux Fecha="2023-12-27" NumUnIdenPol="2023-12-E-0001" Concepto="Total" Debe="0" Haber="2420.00"/>
50+
<AuxiliarCtas:DetalleAux Fecha="2023-12-22" NumUnIdenPol="2023-12-E-0002" Concepto="Total" Debe="0" Haber="400.00"/>
51+
<AuxiliarCtas:DetalleAux Fecha="2023-12-27" NumUnIdenPol="2023-12-C-0002" Concepto="Total" Debe="2420.00" Haber="0"/>
52+
<AuxiliarCtas:DetalleAux Fecha="2023-12-22" NumUnIdenPol="2023-12-C-0003" Concepto="Total" Debe="400.00" Haber="0"/>
53+
</AuxiliarCtas:Cuenta>
54+
</AuxiliarCtas:AuxiliarCtas>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<RepAux:RepAuxFol xmlns:RepAux="http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/AuxiliarFolios" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="1.3" RFC="CACX7605101P8" Mes="12" Anio="2023" TipoSolicitud="AF" xsi:schemaLocation="http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/AuxiliarFolios http://www.sat.gob.mx/esquemas/ContabilidadE/1_3/AuxiliarFolios/AuxiliarFolios_1_3.xsd">
3+
<RepAux:DetAuxFol NumUnIdenPol="2023-12-I-0001" Fecha="2023-12-01">
4+
<RepAux:ComprNal UUID_CFDI="8f03c0b1-766c-4785-b89f-5cd4edac4a71" MontoTotal="12911.94" RFC="EWE1709045U0"/>
5+
</RepAux:DetAuxFol>
6+
<RepAux:DetAuxFol NumUnIdenPol="2023-12-E-0001" Fecha="2023-12-27">
7+
<RepAux:ComprNal UUID_CFDI="fd8b18a0-89e3-4099-8753-fe92d1dc3b98" MontoTotal="2420.00" RFC="CACX7605101P8"/>
8+
</RepAux:DetAuxFol>
9+
<RepAux:DetAuxFol NumUnIdenPol="2023-12-E-0002" Fecha="2023-12-22">
10+
<RepAux:ComprNal UUID_CFDI="648abbdd-4bb0-4c29-8917-d97de1783396" MontoTotal="400.00" RFC="CACX7605101P8"/>
11+
</RepAux:DetAuxFol>
12+
<RepAux:DetAuxFol NumUnIdenPol="2023-12-C-0001" Fecha="2023-12-01">
13+
<RepAux:ComprNal UUID_CFDI="8f03c0b1-766c-4785-b89f-5cd4edac4a71" MontoTotal="12911.94" RFC="EWE1709045U0"/>
14+
</RepAux:DetAuxFol>
15+
<RepAux:DetAuxFol NumUnIdenPol="2023-12-C-0002" Fecha="2023-12-27">
16+
<RepAux:ComprNal UUID_CFDI="fd8b18a0-89e3-4099-8753-fe92d1dc3b98" MontoTotal="2420.00" RFC="CACX7605101P8"/>
17+
</RepAux:DetAuxFol>
18+
<RepAux:DetAuxFol NumUnIdenPol="2023-12-C-0003" Fecha="2023-12-22">
19+
<RepAux:ComprNal UUID_CFDI="648abbdd-4bb0-4c29-8917-d97de1783396" MontoTotal="400.00" RFC="CACX7605101P8"/>
20+
</RepAux:DetAuxFol>
21+
</RepAux:RepAuxFol>

tests/test_cfdi/comprobante32/cfdv32-ejemplo.xml.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,18 @@
106106
table table table table th {
107107
background-color:#f8f8f8;
108108
}
109+
table td {
110+
background-color:#f0f0f0;
111+
}
112+
table td {
113+
background-color:#f8f8f8;
114+
}
115+
table td {
116+
background-color:#ffffff;
117+
}
118+
table td {
119+
background-color:#ffffff;
120+
}
109121
.htd {
110122
text-align: right;
111123
width: 1px;

tests/test_cfdi/comprobante32/cfdv32-instituciones-educativas.xml.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,18 @@
106106
table table table table th {
107107
background-color:#f8f8f8;
108108
}
109+
table td {
110+
background-color:#f0f0f0;
111+
}
112+
table td {
113+
background-color:#f8f8f8;
114+
}
115+
table td {
116+
background-color:#ffffff;
117+
}
118+
table td {
119+
background-color:#ffffff;
120+
}
109121
.htd {
110122
text-align: right;
111123
width: 1px;

tests/test_cfdi/comprobante32/cfdv32-nomina.xml.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,18 @@
106106
table table table table th {
107107
background-color:#f8f8f8;
108108
}
109+
table td {
110+
background-color:#f0f0f0;
111+
}
112+
table td {
113+
background-color:#f8f8f8;
114+
}
115+
table td {
116+
background-color:#ffffff;
117+
}
118+
table td {
119+
background-color:#ffffff;
120+
}
109121
.htd {
110122
text-align: right;
111123
width: 1px;

tests/test_cfdi/comprobante33/cfdv-33-addenda.xml.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,18 @@
106106
table table table table th {
107107
background-color:#f8f8f8;
108108
}
109+
table td {
110+
background-color:#f0f0f0;
111+
}
112+
table td {
113+
background-color:#f8f8f8;
114+
}
115+
table td {
116+
background-color:#ffffff;
117+
}
118+
table td {
119+
background-color:#ffffff;
120+
}
109121
.htd {
110122
text-align: right;
111123
width: 1px;

tests/test_cfdi/comprobante33/cfdv33-base.xml.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,18 @@
106106
table table table table th {
107107
background-color:#f8f8f8;
108108
}
109+
table td {
110+
background-color:#f0f0f0;
111+
}
112+
table td {
113+
background-color:#f8f8f8;
114+
}
115+
table td {
116+
background-color:#ffffff;
117+
}
118+
table td {
119+
background-color:#ffffff;
120+
}
109121
.htd {
110122
text-align: right;
111123
width: 1px;

tests/test_cfdi/comprobante33/cfdv33-cce11-codigos-ivalidos.xml.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,18 @@
106106
table table table table th {
107107
background-color:#f8f8f8;
108108
}
109+
table td {
110+
background-color:#f0f0f0;
111+
}
112+
table td {
113+
background-color:#f8f8f8;
114+
}
115+
table td {
116+
background-color:#ffffff;
117+
}
118+
table td {
119+
background-color:#ffffff;
120+
}
109121
.htd {
110122
text-align: right;
111123
width: 1px;

tests/test_cfdi/comprobante33/cfdv33-cce11-min.xml.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,18 @@
106106
table table table table th {
107107
background-color:#f8f8f8;
108108
}
109+
table td {
110+
background-color:#f0f0f0;
111+
}
112+
table td {
113+
background-color:#f8f8f8;
114+
}
115+
table td {
116+
background-color:#ffffff;
117+
}
118+
table td {
119+
background-color:#ffffff;
120+
}
109121
.htd {
110122
text-align: right;
111123
width: 1px;

0 commit comments

Comments
 (0)