-
Notifications
You must be signed in to change notification settings - Fork 0
/
v33-1.html
530 lines (454 loc) · 15.5 KB
/
v33-1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
@page {
*width: 8.5in;
margin: 0;
}
body {
/*display: table;*/
font-family: sans-serif;
font-size: 10pt;
}
table {
width: 100%;
border: 1px #000000 solid;
}
th {
background-color: rgb(50, 99, 195);
color: white;
}
table, th, td {
border-collapse: collapse;
padding: 3px 5px 8px 5px;
}
.cantidad {
width: 5%;
}
.descripcion {
width: 50%;
}
.unidad, .codigo {
width: 10%;
}
.precio {
width: 10%;
}
.importe {
width: 15%;
}
.observaciones {
width: 65%;
}
.row {
display: table-row;
width: 100%;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-left {
text-align: left;
}
.withBorderSides th {
border: 1px #000000 solid;
}
.withBorderSides td {
border-left: 1px #000000 solid;
}
.withBorder th, .withBorder td, .withBorder {
border: 1px #000000 solid;
}
.header {
display: table;
width: 100%;
}
.cell-center,
.cell-right,
.cell-left {
display: table-cell;
vertical-align: middle;
}
.header .cell-left .logo {
max-width: 100%;
max-height: 200px;
margin: 0 auto;
display: block;
}
.header .cell-center {
/*font-weight: bold;*/
padding: 0 20px;
width: 40%;
}
.header .cell-center p {
font-size: 12pt;
}
.header .cell-right {
width: 35%;
}
.header .cell-right .leyenda {
background-color: #b0c4de;
text-align: center;
font-weight: bold;
font-size: 20pt;
padding: 15px 0;
}
.body .data-products table tbody tr {
page-break-inside: avoid;
page-break-after: auto;
}
.body .data-products table {
page-break-inside: auto;
}
.body .data-products table thead {
display: table-header-group;
}
.footer .cell-left table {
page-break-inside: avoid;
}
.footer .cell-left table tbody td {
word-break: break-all;
font-size: 8.5pt;
}
.footer .cell-right img {
margin-left: 10px;
}
.footer .text-cfdi {
font-size: 14pt;
font-weight: bold;
margin: 10px 0 10px 0;
}
.body .data-pagos .uuid {
width: 30%;
}
.body .data-pagos .folio {
width: 10%;
}
.body .data-pagos .moneda {
width: 5%;
}
.body .data-pagos .metodo {
width: 5%;
}
.body .data-pagos .saldoant {
width: 15%;
}
.body .data-pagos .monto {
width: 20%;
}
.body .data-pagos .saldopen {
width: 15%;
}
.body .data-pagos .fechaPago {
/*text-align: left;*/
width: 20%;
}
.body .data-pagos .montoPago {
width: 25%;
}
.body .data-pagos .cantidadLetraPago {
width: 60%;
}
.background {
top: 35%;
position: absolute;
background: none;
display: block;
min-height: 50%;
min-width: 60%;
color: yellow;
}
.bg-text {
color: rgba(255, 0, 0, 0.25);
font-size: 120px;
transform: rotate(300deg);
-webkit-transform: rotate(300deg);
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<div class="row">
<div class="cell-left ">
</div>
<div class="cell-center text-center">
<h3>{{Cfdi.Emisor.Nombre}}
<br>{{Cfdi.Emisor.RFC}}
</h3>
<p>
Lugar de Expedición:
C.P: {{Cfdi.LugarExpedicion}}
</p>
<br>
</div>
<div class="cell-right text-center">
<!--<div class="leyenda">RECIBO DE PAGO - {{Cfdi.Serie}}{{Cfdi.Folio}}</div>-->
<!--<br>-->
<table class="withBorder">
<thead>
<tr>
<th colspan="2">
{{#equal Cfdi.Tipo "I"}}Factura{{/equal}}
{{#equal Cfdi.Tipo "E"}}Nota de Crédito{{/equal}}
{{#equal Cfdi.Tipo "T"}}Traslado{{/equal}}
{{#equal Cfdi.Tipo "P"}}Pago{{/equal}}
{{Cfdi.Serie}}{{Cfdi.Folio}}
</th>
</tr>
<tr>
<th>Serie y Folio:</th>
<th>Fecha y Hora de Expedición</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{Cfdi.Serie}}{{Cfdi.Folio}}</td>
<td>
{{Misc.FormatDate(Cfdi.Fecha)}}
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="body">
<div class="data-client">
<table>
<tbody>
<tr>
<td class="text-center"><b>RFC</b></td>
<td colspan="2">{{Cfdi.Receptor.RFC}}</td>
<th colspan="2" class="withBorder">No. Certificado:</th>
</tr>
<tr>
<td class="text-center"><b>Cliente</b></td>
<td colspan="2">{{Cfdi.Receptor.Nombre}}</td>
<td class="text-center withBorder" rowspan="4">
{{#if(Cfdi.Complemento.TimbreFiscalDigital.NoCertificadoSAT)}}
{{Cfdi.Complemento.TimbreFiscalDigital.NoCertificadoSAT}}
{{/if}}
</td>
</tr>
</tbody>
<tfoot class="withBorder">
<tr>
<th>Uso del CFDI</th>
<td>{{Cfdi.Receptor.UsoCFDI}}</td>
<th class="withBorder cell-sm">Condiciones de Pago:</th>
<td class="text-center withBorder cell-sm">{{Cfdi.CondicionesDePago}}</td>
</tr>
<tr>
<th>Forma de Pago:</th>
<td>{{Cfdi.FormaPago}}</td>
<th>Método de Pago:</th>
<td colspan="2">
{{#equal Cfdi.MetodoPago "PUE"}}
PAGO EN UNA SOLA EXHIBICIÓN
{{/equal}}
{{#equal Cfdi.MetodoPago "PPD"}}
PAGO EN PARCIALIDADES O DIFERIDO
{{/equal}}
</td>
</tr>
<tr>
<th>Régimen Fiscal</th>
<td colspan="4">{{Cfdi.Emisor.RegimenFiscal}}</td>
</tr>
</tfoot>
</table>
</div>
<br>
<div class="data-products">
<table>
<thead>
<tr>
<th class="codigo">Código</th>
<th class="cantidad">Cantidad</th>
<th class="descripcion">Descripción</th>
<th class="unidad">Unidad de Medida</th>
<th class="precio">Precio Unitario</th>
<th class="importe">Importe</th>
</tr>
</thead>
<tbody class="withBorderSides">
{{#each Cfdi.Conceptos as |Concepto| }}
<tr>
<td class="text-center">{{Concepto.ClaveProdServ}}</td>
<td class="text-center">{{Concepto.Cantidad}}</td>
<td>{{Concepto.Descripcion}}</td>
<td class="text-center">{{Concepto.ClaveUnidad}}</td>
<td class="text-right"> {{Misc.FormatMoney(Concepto.ValorUnitario)}}</td>
<td class="text-right"> {{Misc.FormatMoney(Concepto.Importe)}}</td>
</tr>
{{/each}}
</tbody>
<tfoot class="withBorder">
<tr>
<th colspan="2">Cantidad con letra</th>
<td class="text-center" colspan="3">*** {{ Misc.NumeroLetrav3(Cfdi) }}
{{ Cfdi.Moneda}} ***</td>
<td class="text-center">
{{#equal Cfdi.Moneda "USD"}}
<b>Tipo de cambio:</b> $ {{Cfdi.TipoCambio}} x 1 {{Cfdi.Moneda}}
{{/equal}}
</td>
</tr>
</tfoot>
</table>
<br>
<div class="data-total">
<table>
<tbody class="withBorderSides">
<tr>
<th colspan="4" class="observaciones">OBSERVACIONES:</th>
<th class="">Sub Total:</th>
<td class="text-right"> {{Misc.FormatMoney(Cfdi.SubTotal)}}</td>
</tr>
<tr>
<td class="text-left" colspan="4" rowspan="9">
{{#if Cfdi.MotivoDescuento }}
<p><b>Motivo de Descuento: </b>{{Cfdi.MotivoDescuento}}</p>
{{/if}}
{{#if Cfdi.FolioFiscalOrig }}
Datos Fiscales Originales
<p><b>Folio : </b>{{Cfdi.FolioFiscalOrig}}</p>
<p><b>Fecha : </b>{{Cfdi.FechaFolioFiscalOrig}}</p>
<p><b>Total : </b> {{Misc.FormatMoney(Cfdi.MontoFolioFiscalOrig)}}</p>
{{/if}}
</td>
</tr>
<tr>
{{#if Cfdi.Descuento}}
<th>(-)Descuento</th>
<td class="text-right pre"> {{Misc.FormatMoney(Cfdi.Descuento)}}</td>
{{/if}}
</tr>
{{#each Impuestos.Traslados.Iva}}
<tr>
<th>(+) IVA % {{ this.Portentaje }}</th>
<td class="text-right"> {{Misc.FormatMoney(this.Importe)}}</td>
</tr>
{{/each}}
<tr>
{{#if Impuestos.Traslados.Ieps}}
<th>(+) IEPS</th>
<td class="text-right"> {{Misc.FormatMoney(Impuestos.Traslados.Ieps)}}</td>
{{/if}}
</tr>
<tr>
{{#if Impuestos.Retenciones.Iva}}
<th>(-) Ret.IVA</th>
<td class="text-right"> {{Misc.FormatMoney(Impuestos.Retenciones.Iva)}}</td>
{{/if}}
</tr>
<tr>
{{#if Impuestos.Retenciones.Isr}}
<th>(-) Ret.ISR</th>
<td class="text-right"> {{Misc.FormatMoney(Impuestos.Retenciones.Isr)}}</td>
{{/if}}
</tr>
<tr>
<th>Total:</th>
<td class="text-right"> {{Misc.FormatMoney(Cfdi.Total)}}</td>
</tr>
</tbody>
</table>
</div>
</div>
<br>
{{#if(CfdiRelacionado.TipoRelacion)}}
<br>
<table style="width: 450px">
<thead class="">
<tr>
<th class="" colspan="2"> Otros CFDIs Relacionados</th>
</tr>
<tr>
<td class="text-center" colspan="2"> Tipo de Relación: {{CfdiRelacionado.TipoRelacion}} -
Sustitución de los CFDI previo
</td>
</tr>
</thead>
<tbody class="withBorder">
{{#each CfdiRelacionados as |Cfdi|}}
<tr>
<td><b>UUID</b></td>
<td class="text-center">{{Cfdi.UUID}}</td>
</tr>
{{/each}}
</tbody>
</table>
{{/if}}
</div>
<br>
<div class="footer">
<div class="row">
<div class="cell-left">
<table class="withBorder">
<tbody>
<tr>
{{#if CadenaSAT}}
<th>Cadena Original:</th>
<td colspan="3">{{CadenaSAT}}</td>
{{/if}}
</tr>
<tr>
{{#if Cfdi.Sello}}
<th>Sello:</th>
<td colspan="3">{{Cfdi.Sello}}</td>
{{/if}}
</tr>
<tr>
{{#if Cfdi.Complemento.TimbreFiscalDigital.SelloSAT}}
<th>Sello SAT:</th>
<td colspan="3">{{Cfdi.Complemento.TimbreFiscalDigital.SelloSAT}}</td>
{{/if}}
</tr>
</tbody>
<tfoot>
<tr>
<th>Fecha Timbre:</th>
<td>
{{#if Cfdi.Complemento.TimbreFiscalDigital.FechaTimbrado}}
{{Cfdi.Complemento.TimbreFiscalDigital.FechaTimbrado}}
{{/if}}
</td>
<th>Certificado SAT:</th>
<td>
{{#if Cfdi.Complemento.TimbreFiscalDigital.NoCertificadoSAT}}
{{Cfdi.Complemento.TimbreFiscalDigital.NoCertificadoSAT}}
{{/if}}
</td>
</tr>
<tr>
<th>Version Timbre:</th>
<td>{{Cfdi.Complemento.TimbreFiscalDigital.Version}}</td>
<th>UUID :</th>
<td>
{{#if Cfdi.Complemento.TimbreFiscalDigital.UUID}}
{{Cfdi.Complemento.TimbreFiscalDigital.UUID}}
{{/if}}
</td>
</tr>
</tfoot>
</table>
</div>
<div class="cell-right">
<p><img src="data:image/jpeg;base64,{{QR}}"></p>
</div>
</div>
<div class="text-cfdi text-center">
** Comprobante Fiscal Digital Generico Generado a través de SAIT OCF **
</div>
</div>
</div>
</body>
</html>