-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsatxmlsv32.php
589 lines (550 loc) · 27.9 KB
/
satxmlsv32.php
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
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
<?php
//
// +---------------------------------------------------------------------------+
// | satxmlsv32.php Procesa el arreglo asociativo de intercambio y genera un |
// | mensaje XML con los requisitos del SAT de la version 3.2 |
// | publicada en el DOF del ? de Diciembre del 2011. |
// | |
// | Si se incluye un texto en edidata se agrega como Addenda |
// +---------------------------------------------------------------------------+
// | Copyright (c) 2013 Fabrica de Jabon la Corona, SA de CV |
// +---------------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or |
// | modify it under the terms of the GNU General Public License |
// | as published by the Free Software Foundation; either version 2 |
// | of the License, or (at your option) any later version. |
// | |
// | This program is distributed in the hope that it will be useful, |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
// | GNU General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA|
// +---------------------------------------------------------------------------|
// | Autor: Fernando Ortiz <[email protected]> |
// +---------------------------------------------------------------------------+
// |10/jun/2013 Se toma como base el prograba de la version 2.2 |
// +---------------------------------------------------------------------------+
//
// {{{ satxmlsv32
function satxmlsv32($arr, $edidata=false, $dir="./tmp/",$nodo="",$addenda="") {
require_once "lib/numealet.php"; // genera el texto de un importe con letras
global $xml, $cadena_original, $sello, $texto, $ret;
/* *
* Certificados de prueba
* */
$arr['noCertificado']="00001100000200000154";
/* *
*
* */
error_reporting(E_ALL & ~(E_WARNING | E_NOTICE));
satxmlsv32_genera_xml($arr,$edidata,$dir,$nodo,$addenda);
satxmlsv32_genera_cadena_original();
satxmlsv32_sella($arr);
$ret = satxmlsv32_termina($arr,$dir);
return $ret;
}
// }}}
// {{{ satxmlsv32_genera_xml
function satxmlsv32_genera_xml($arr, $edidata, $dir,$nodo,$addenda) {
global $xml, $ret;
$xml = new DOMdocument("1.0","UTF-8");
satxmlsv32_generales($arr, $edidata, $dir,$nodo,$addenda);
satxmlsv32_emisor($arr, $edidata, $dir,$nodo,$addenda);
satxmlsv32_receptor($arr, $edidata, $dir,$nodo,$addenda);
satxmlsv32_conceptos($arr, $edidata, $dir,$nodo,$addenda);
satxmlsv32_impuestos($arr, $edidata, $dir,$nodo,$addenda);
satxmlsv32_complemento($arr, $edidata, $dir,$nodo,$addenda);
$ok = satxmlsv32_valida();
if (!$ok) {
display_xml_errors();
die("Error al validar XSD\n");
}
satxmlsv32_addenda($arr, $edidata, $dir,$nodo,$addenda);
}
// }}}
// {{{ Datos generales del Comprobante
function satxmlsv32_generales($arr, $edidata, $dir,$nodo,$addenda) {
global $root, $xml;
$root = $xml->createElement("cfdi:Comprobante");
$root = $xml->appendChild($root);
if ($addenda=="detallista") {
# 12/Mar/2009 Se agrega el namespace de detallista para futurama
satxmlsv32_cargaAtt($root, array("xmlns:cfdi"=>"http://www.sat.gob.mx/cfd/3",
"xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance",
"xmlns:detallista"=>"http://www.sat.gob.mx/detallista",
"xsi:schemaLocation"=>"http://www.sat.gob.mx/cfd/3 http://www.sat.gob.mx/sitio_internet/cfd/3/cfdv32.xsd http://www.sat.gob.mx/detallista http://www.sat.gob.mx/sitio_internet/cfd/detallista/detallista.xsd"
)
);
} elseif ($addenda=="diconsa") {
# 23/Oct/2009 Se agrega el namespace de Diconsa
satxmlsv32_cargaAtt($root, array("xmlns:cfdi"=>"http://www.sat.gob.mx/cfd/3",
"xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance",
"xmlns:Diconsa"=>"http://www.diconsa.gob.mx/cfd",
"xsi:schemaLocation"=>"http://www.sat.gob.mx/cfd/3 http://www.sat.gob.mx/sitio_internet/cfd/3/cfdv32.xsd http://www.diconsa.gob.mx/cfd http://www.diconsa.gob.mx/cfd/diconsa.xsd"
)
);
} elseif ($addenda=="superneto") {
# 26/Ago/2010 Se agrega el namespace de SuperNeto
satxmlsv32_cargaAtt($root, array("xmlns:cfdi"=>"http://www.sat.gob.mx/cfd/3",
"xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance",
"xmlns:ap"=>"http://www.tiendasneto.com/ap",
"xsi:schemaLocation"=>"http://www.sat.gob.mx/cfd/3 http://www.sat.gob.mx/sitio_internet/cfd/3/cfdv32.xsd http://www.tiendasneto.com/ap addenda_prov.xsd"
)
);
} elseif ($addenda=="extra") {
# 04/Ene/2012 Se agrega el namespace de Tiendas Extra
satxmlsv32_cargaAtt($root, array ("xmlns:cfdi"=>"http://www.sat.gob.mx/cfd/3",
"xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance",
"xmlns:modelo"=>"http://www.gmodelo.com.mx/CFD/Addenda/Receptor",
"xsi:schemaLocation"=>"http://www.sat.gob.mx/cfd/3 http://www.sat.gob.mx/sitio_internet/cfd/3/cfdv32.xsd http://www.gmodelo.com.mx/CFD/Addenda/Receptor https://femodelo.gmodelo.com/Addenda/ADDENDAMODELO.xsd"
)
);
} elseif ($addenda=="casaley") {
# 26/Ago/2010 Se agrega el namespace de Casaley
satxmlsv32_cargaAtt($root, array("xmlns:cfdi"=>"http://www.sat.gob.mx/cfd/3",
"xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance",
"xmlns:cley"=>"http://servicios.casaley.com.mx/factura_electronica",
"xsi:schemaLocation"=>"http://www.sat.gob.mx/cfd/3 http://www.sat.gob.mx/sitio_internet/cfd/3/cfdv32.xsd http://servicios.casaley.com.mx/factura_electronica http://servicios.casaley.com.mx/factura_electronica/XSD_ADDENDA_CASALEY.xsd"
)
);
} else {
satxmlsv32_cargaAtt($root, array("xmlns:cfdi"=>"http://www.sat.gob.mx/cfd/3",
"xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance",
"xsi:schemaLocation"=>"http://www.sat.gob.mx/cfd/3 http://www.sat.gob.mx/sitio_internet/cfd/3/cfdv32.xsd"
)
);
}
satxmlsv32_cargaAtt($root, array("version"=>"3.2",
"serie"=>$arr['serie'],
"folio"=>$arr['folio'],
"fecha"=>satxmlsv32_xml_fech($arr['fecha']),
"sello"=>"@",
"formaDePago"=>$arr['formaDePago'],
"noCertificado"=>$arr['noCertificado'],
"certificado"=>"@",
"subTotal"=>$arr['subTotal'],
"descuento"=>"0",
"total"=>$arr['total'],
"tipoDeComprobante"=>$arr['tipoDeComprobante'],
"metodoDePago"=>$arr['metodoDePago'],
"LugarExpedicion"=>$arr['LugarExpedicion'],
"NumCtaPago"=>$arr['NumCtaPago'],
"FolioFiscalOrig"=>$arr['FolioFiscalOrig'],
"SerieFolioFiscalOrig"=>$arr['SerieFolioFiscalOrig'],
"FechaFolioFiscalOrig"=>satxmlsv32_xml_fech($arr['FechaFolioFiscalOrig']),
"MontoFolioFiscalOrig"=>$arr['MontoFolioFiscalOrig']
)
);
}
// }}}
// {{{ Datos del Emisor
function satxmlsv32_emisor($arr, $edidata, $dir,$nodo,$addenda) {
global $root, $xml;
$emisor = $xml->createElement("cfdi:Emisor");
$emisor = $root->appendChild($emisor);
satxmlsv32_cargaAtt($emisor, array("rfc"=>$arr['Emisor']['rfc'],
"nombre"=>$arr['Emisor']['nombre']
)
);
$domfis = $xml->createElement("cfdi:DomicilioFiscal");
$domfis = $emisor->appendChild($domfis);
satxmlsv32_cargaAtt($domfis, array("calle"=>"CARLOS B. ZETINA",
"noExterior"=>"80",
"noInterior"=>"",
"colonia"=>"PARQUE INDUSTRIAL XALOSTOC",
"municipio"=>"ECATEPEC DE MORELOS",
"estado"=>"MEXICO",
"pais"=>"MEXICO",
"codigoPostal"=>"55348"
)
);
$regimen = $xml->createElement("cfdi:RegimenFiscal");
$expedido = $emisor->appendChild($regimen);
satxmlsv32_cargaAtt($regimen, array("Regimen"=>$arr['Emisor']['Regimen']
)
);
}
// }}}
// {{{ Datos del Receptor
function satxmlsv32_receptor($arr, $edidata, $dir,$nodo,$addenda) {
global $root, $xml;
$receptor = $xml->createElement("cfdi:Receptor");
$receptor = $root->appendChild($receptor);
satxmlsv32_cargaAtt($receptor, array("rfc"=>$arr['Receptor']['rfc'],
"nombre"=>$arr['Receptor']['nombre']
)
);
$domicilio = $xml->createElement("cfdi:Domicilio");
$domicilio = $receptor->appendChild($domicilio);
satxmlsv32_cargaAtt($domicilio, array("calle"=>$arr['Receptor']['Domicilio']['calle'],
"noExterior"=>$arr['Receptor']['Domicilio']['noExterior'],
"noInterior"=>$arr['Receptor']['Domicilio']['noInterior'],
"colonia"=>$arr['Receptor']['Domicilio']['colonia'],
"localidad"=>$arr['Receptor']['Domicilio']['localidad'],
"municipio"=>$arr['Receptor']['Domicilio']['municipio'],
"estado"=>$arr['Receptor']['Domicilio']['estado'],
"pais"=>$arr['Receptor']['Domicilio']['pais'],
"codigoPostal"=>$arr['Receptor']['Domicilio']['codigoPostal'],
)
);
}
// }}}
// {{{ Detalle de los conceptos/productos de la factura
function satxmlsv32_conceptos($arr, $edidata, $dir,$nodo,$addenda) {
global $root, $xml;
$conceptos = $xml->createElement("cfdi:Conceptos");
$conceptos = $root->appendChild($conceptos);
for ($i=1; $i<=sizeof($arr['Conceptos']); $i++) {
$concepto = $xml->createElement("cfdi:Concepto");
$concepto = $conceptos->appendChild($concepto);
$prun = $arr['Conceptos'][$i]['valorUnitario'];
satxmlsv32_cargaAtt($concepto, array("cantidad"=>$arr['Conceptos'][$i]['cantidad'],
"unidad"=>$arr['Conceptos'][$i]['unidad'],
"descripcion"=>$arr['Conceptos'][$i]['descripcion'],
"valorUnitario"=>$arr['Conceptos'][$i]['valorUnitario'],
"importe"=>$arr['Conceptos'][$i]['importe'],
)
);
}
}
// }}}
// {{{ Impuesto (IVA)
function satxmlsv32_impuestos($arr, $edidata, $dir,$nodo,$addenda) {
global $root, $xml;
$impuestos = $xml->createElement("cfdi:Impuestos");
$impuestos = $root->appendChild($impuestos);
if (isset($arr['Traslados']['importe'])) {
$traslados = $xml->createElement("cfdi:Traslados");
$traslados = $impuestos->appendChild($traslados);
$traslado = $xml->createElement("cfdi:Traslado");
$traslado = $traslados->appendChild($traslado);
satxmlsv32_cargaAtt($traslado, array("impuesto"=>$arr['Traslados']['impuesto'],
"tasa"=>$arr['Traslados']['tasa'],
"importe"=>$arr['Traslados']['importe']
)
);
}
$impuestos->SetAttribute("totalImpuestosTrasladados",$arr['Traslados']['importe']);
}
// }}}
// {{{ Complemento si es detallista
function satxmlsv32_complemento($arr, $edidata, $dir,$nodo,$addenda) {
global $root, $xml;
if ($addenda=="detallista") {
$Complemento = $xml->createElement("cfdi:Complemento");
$Complemento = $root->appendChild($Complemento);
$detallista = $xml->createElement("detallista:detallista");
$detallista->SetAttribute("type","SimpleInvoiceType");
$detallista->SetAttribute("contentVersion","1.3.1");
$detallista->SetAttribute("documentStructureVersion","AMC8.1");
$detallista->SetAttribute("documentStatus","ORIGINAL");
$requestForPaymentIdentification = $xml->createElement("detallista:requestForPaymentIdentification");
$entityType = $xml->createElement("detallista:entityType","INVOICE");
$entityType = $requestForPaymentIdentification->appendChild($entityType);
$requestForPaymentIdentification = $detallista->appendChild($requestForPaymentIdentification);
$specialInstruction = $xml->createElement("detallista:specialInstruction");
$specialInstruction->setAttribute("code","ZZZ");
$text = $xml->createElement("detallista:text", numealet($arr['total']));
$tmp = $specialInstruction->appendChild($text);
$tmp = $detallista->appendChild($specialInstruction);
$orderIdentification = $xml->createElement("detallista:orderIdentification");
$referenceIdentification = $xml->createElement("detallista:referenceIdentification",trim($arr['Complemento']['npec']));
$referenceIdentification->SetAttribute("type","ON");
$referenceIdentification = $orderIdentification->appendChild($referenceIdentification);
$ReferenceDate = $xml->createElement("detallista:ReferenceDate",satxmlsv32_xml_fix_fech($arr['Complemento']['fpec']));
$ReferenceDate = $orderIdentification->appendChild($ReferenceDate);
$orderIdentification = $detallista->appendChild($orderIdentification);
$AdditionalInformation = $xml->createElement("detallista:AdditionalInformation");
$referenceIdentification = $xml->createElement("detallista:referenceIdentification",$arr['serie'].$arr['folio']);
$referenceIdentification->SetAttribute("type","IV");
$referenceIdentification = $AdditionalInformation->appendChild($referenceIdentification);
$AdditionalInformation = $detallista->appendChild($AdditionalInformation);
$buyer = $xml->createElement("detallista:buyer");
$gln = $xml->createElement("detallista:gln",trim($arr['Complemento']['gln']));
$gln = $buyer->appendChild($gln);
$buyer = $detallista->appendChild($buyer);
$seller = $xml->createElement("detallista:seller");
$gln = $xml->createElement("detallista:gln",trim($arr['Complemento']['gln2']));
$alternatePartyIdentification = $xml->createElement("detallista:alternatePartyIdentification",trim($arr['Complemento']['proveedor']));
$alternatePartyIdentification->setAttribute("type","SELLER_ASSIGNED_IDENTIFIER_FOR_A_PARTY");
$tmp = $seller->appendChild($gln);
$tmp = $seller->appendChild($alternatePartyIdentification);
$tmp = $detallista->appendChild($seller);
if ($arr['Complemento']['ship']) {
$shipto = $xml->createElement("detallista:shipTo");
$gln = $xml->createElement("detallista:gln",trim($arr['Complemento']['ship']));
$tmp = $shipto->appendChild($gln);
$tmp = $detallista->appendChild($shipto);
}
for ($i=1; $i<=sizeof($arr['Conceptos']); $i++) {
$lineItem = $xml->createElement("detallista:lineItem");
$lineItem->SetAttribute("type","SimpleInvoiceLineItemType");
$lineItem->SetAttribute("number",$i);
$tradeItemIdentification = $xml->createElement("detallista:tradeItemIdentification");
$gtin = $xml->createElement("detallista:gtin",trim($arr['Conceptos'][$i]['gtin']));
$gtin = $tradeItemIdentification->appendChild($gtin);
$tradeItemIdentification = $lineItem->appendChild($tradeItemIdentification);
$alternateTradeItemIdentification = $xml->createElement("detallista:alternateTradeItemIdentification",$arr['Conceptos'][$i]['hebprod']);
$alternateTradeItemIdentification->setAttribute("type","BUYER_ASSIGNED");
$tmp = $lineItem->appendChild($alternateTradeItemIdentification);
$tradeItemDescriptionInformation = $xml->createElement("detallista:tradeItemDescriptionInformation");
$tradeItemDescriptionInformation->SetAttribute("language","ES");
$longText = $xml->createElement("detallista:longText",$arr['Conceptos'][$i]['descripcion']);
$longText = $tradeItemDescriptionInformation->appendChild($longText);
$tradeItemDescriptionInformation = $lineItem->appendChild($tradeItemDescriptionInformation);
$invoicedQuantity = $xml->createElement("detallista:invoicedQuantity",$arr['Conceptos'][$i]['cantidad']);
$invoicedQuantity->SetAttribute("unitOfMeasure","CS");
$invoicedQuantity = $lineItem->appendChild($invoicedQuantity);
$grossPrice = $xml->createElement("detallista:grossPrice");
$Amount = $xml->createElement("detallista:Amount",$arr['Conceptos'][$i]['prun']);
$Amount = $grossPrice->appendChild($Amount);
$grossPrice = $lineItem->appendChild($grossPrice);
$netPrice = $xml->createElement("detallista:netPrice");
$Amount = $xml->createElement("detallista:Amount",$arr['Conceptos'][$i]['neto'] / $arr['Conceptos'][$i]['cantidad']);
$Amount = $netPrice->appendChild($Amount);
$netPrice = $lineItem->appendChild($netPrice);
$tradeItemTaxInformation = $xml->createElement("detallista:tradeItemTaxInformation");
$taxTypeDescription = $xml->createElement("detallista:taxTypeDescription","VAT");
$taxTypeDescription = $tradeItemTaxInformation->appendChild($taxTypeDescription);
$tradeItemTaxAmount = $xml->createElement("detallista:tradeItemTaxAmount");
$taxPercentage = $xml->createElement("detallista:taxPercentage",$arr['Conceptos'][$i]['poim']);
$taxPercentage = $tradeItemTaxAmount->appendChild($taxPercentage);
$taxAmount = $xml->createElement("detallista:taxAmount",$arr['Conceptos'][$i]['impu']);
$taxAmount = $tradeItemTaxAmount->appendChild($taxAmount);
$tradeItemTaxAmount = $tradeItemTaxInformation->appendChild($tradeItemTaxAmount);
$taxCategory = $xml->createElement("detallista:taxCategory","TRANSFERIDO");
$taxCategory = $tradeItemTaxInformation->appendChild($taxCategory);
$tradeItemTaxInformation = $lineItem->appendChild($tradeItemTaxInformation);
$totalLineAmount = $xml->createElement("detallista:totalLineAmount");
$netAmount = $xml->createElement("detallista:netAmount");
$Amount = $xml->createElement("detallista:Amount",$arr['Conceptos'][$i]['importe']);
$Amount = $netAmount->appendChild($Amount);
$netAmount = $totalLineAmount->appendChild($netAmount);
$totalLineAmount = $lineItem->appendChild($totalLineAmount);
$lineItem = $detallista->appendChild($lineItem);
}
$totalAmount = $xml->createElement("detallista:totalAmount");
$Amount = $xml->createElement("detallista:Amount",$arr['total']);
$Amount = $totalAmount->appendChild($Amount);
$totalAmount = $detallista->appendChild($totalAmount);
$detallista = $Complemento->appendChild($detallista);
}
}
// }}}
// {{{ Addenda si se requiere
function satxmlsv32_addenda($arr, $edidata, $dir,$nodo,$addenda) {
global $root, $xml;
if ($edidata || $addenda=="diconsa" || $addenda=="imss") {
$Addenda = $xml->createElement("cfdi:Addenda");
if ($edidata!="") {
if (substr($edidata,0,5) == "<?xml") {
// Es XML por ejemplo Soriana
$smp = simplexml_load_string($edidata);
$Documento = dom_import_simplexml($smp);
$Documento = $xml->importNode($Documento, true);
} else {
if ($nodo=="") {
// Va el EDIDATA directo sin nodo adiconal. por ejemplo Corvi
$Documento = $xml->createTextNode(utf8_encode($edidata));
} else {
// Va el EDIDATA dentro de un nodo. por ejemplo Walmart
$Documento = $xml->createElement($nodo,utf8_encode($edidata));
}
}
$Documento = $Addenda->appendChild($Documento);
}
if ($addenda=="diconsa") {
$Agregado = $xml->createElement("Diconsa:Agregado");
$Agregado->SetAttribute("nombre","PROVEEDOR");
$Agregado->SetAttribute("valor",$arr['diconsa']['proveedor']);
$Agregado = $Addenda->appendChild($Agregado);
$AgregadoProv = $xml->createElement("Diconsa:AgregadoProv");
$AgregadoProv->SetAttribute("almacen",$arr['diconsa']['almacen']);
$AgregadoProv->SetAttribute("negociacion",$arr['diconsa']['negociacion']);
$AgregadoProv->SetAttribute("pedido",$arr['diconsa']['pedido']);
$AgregadoProv = $Addenda->appendChild($AgregadoProv);
}
if ($addenda=="imss") {
$Proveedor_IMSS = $xml->createElement("Proveedor_IMSS");
$Proveedor = $xml->createElement("Proveedor");
$Proveedor->SetAttribute("noProveedor",$arr['imss']['proveedor']);
$Proveedor = $Proveedor_IMSS->appendChild($Proveedor);
$Proveedor_IMSS = $Addenda->appendChild($Proveedor_IMSS);
$Delegacion = $xml->createElement("Delegacion");
$UnidadNegocio = $xml->createElement("UnidadNegocio");
$UnidadNegocio->SetAttribute("unidad",$arr['imss']['delegacion']);
$UnidadNegocio = $Delegacion->appendChild($UnidadNegocio);
$Delegacion = $Addenda->appendChild($Delegacion);
$Concepto = $xml->createElement("Concepto");
$NumeroConcepto = $xml->createElement("NumeroConcepto");
$NumeroConcepto->SetAttribute("concepto",$arr['imss']['concepto']);
$NumeroConcepto = $Concepto->appendChild($NumeroConcepto);
$Concepto = $Addenda->appendChild($Concepto);
$Pedido = $xml->createElement("Pedido");
$NumeroPedido = $xml->createElement("NumeroPedido");
$NumeroPedido->SetAttribute("pedido",$arr['imss']['pedido']);
$NumeroPedido = $Pedido->appendChild($NumeroPedido);
$Pedido = $Addenda->appendChild($Pedido);
$Recepcion = $xml->createElement("Recepcion");
$Recepcion1 = $xml->createElement("Recepcion1");
$Recepcion1->SetAttribute("numero_recepcion",$arr['imss']['recepcion']);
$Recepcion1 = $Recepcion->appendChild($Recepcion1);
$Recepcion = $Addenda->appendChild($Recepcion);
}
$Addenda = $root->appendChild($Addenda);
}
}
// }}}
// {{{ genera_cadena_original
function satxmlsv32_genera_cadena_original() {
global $xml, $cadena_original;
$paso = new DOMDocument("1.0","UTF-8");
$paso->loadXML($xml->saveXML());
$xsl = new DOMDocument("1.0","UTF-8");
$ruta = "./";
$file=$ruta."cadenaoriginal_3_2.xslt"; // Ruta al archivo
$xsl->load($file);
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl);
$cadena_original = $proc->transformToXML($paso);
}
// }}}
// {{{ Calculo de sello
function satxmlsv32_sella($arr) {
global $root, $cadena_original, $sello;
$certificado = $arr['noCertificado'];
$ruta = "/home/httpd/sat/";
$file=$ruta.$certificado.".key.pem"; // Ruta al archivo
// Obtiene la llave privada del Certificado de Sello Digital (CSD),
// Ojo , Nunca es la FIEL/FEA
$pkeyid = openssl_get_privatekey(file_get_contents($file));
openssl_sign($cadena_original, $crypttext, $pkeyid, OPENSSL_ALGO_SHA1);
openssl_free_key($pkeyid);
$sello = base64_encode($crypttext); // lo codifica en formato base64
$root->setAttribute("sello",$sello);
$file=$ruta.$certificado.".cer.pem"; // Ruta al archivo de Llave publica
$datos = file($file);
$certificado = ""; $carga=false;
for ($i=0; $i<sizeof($datos); $i++) {
if (strstr($datos[$i],"END CERTIFICATE")) $carga=false;
if ($carga) $certificado .= trim($datos[$i]);
if (strstr($datos[$i],"BEGIN CERTIFICATE")) $carga=true;
}
// El certificado como base64 lo agrega al XML para simplificar la validacion
$root->setAttribute("certificado",$certificado);
}
// }}}
// {{{ Termina, graba en edidata o genera archivo en el disco
function satxmlsv32_termina($arr,$dir) {
global $xml;
$xml->formatOutput = true;
$todo = $xml->saveXML();
if ($dir != "/dev/null") {
$xml->formatOutput = true;
$nufa = $arr['serie'].$arr['folio']; // Junta el numero de factura serie + folio
$file=$dir.$nufa.".xml";
$xml->save($file);
}
return($todo);
}
// }}}
// {{{ Funcion que carga los atributos a la etiqueta XML
function satxmlsv32_cargaAtt(&$nodo, $attr) {
global $xml, $sello;
$quitar = array('sello'=>1,'noCertificado'=>1,'certificado'=>1);
foreach ($attr as $key => $val) {
for ($i=0;$i<strlen($val); $i++) {
$a = substr($val,$i,1);
if ($a > chr(127) && $a !== chr(219) && $a !== chr(211) && $a !== chr(209)) {
$val = substr_replace($val, ".", $i, 1);
}
}
$val = preg_replace('/\s\s+/', ' ', $val); // Regla 5a y 5c
$val = trim($val); // Regla 5b
if (strlen($val)>0) { // Regla 6
$val = str_replace(array('"','>','<'),"'",$val); // &...;
$val = utf8_encode(str_replace("|","/",$val)); // Regla 1
$nodo->setAttribute($key,$val);
}
}
}
// }}}
// {{{ Formateo de la fecha en el formato XML requerido (ISO)
function satxmlsv32_xml_fech($fech) {
$ano = substr($fech,0,4);
$mes = substr($fech,4,2);
$dia = substr($fech,6,2);
$hor = substr($fech,8,2);
$min = substr($fech,10,2);
$seg = substr($fech,12,2);
$aux = $ano."-".$mes."-".$dia."T".$hor.":".$min.":".$seg;
if ($aux == "--T::")
$aux = "";
return ($aux);
}
// }}}
// {{{ Formateo de la fecha en el formato XML requerido (ISO)
function satxmlsv32_xml_fix_fech($fech) {
$dia = substr($fech,0,2);
$mes = substr($fech,3,2);
$ano = substr($fech,6,4);
$aux = $ano."-".$mes."-".$dia;
return ($aux);
}
// }}}
// {{{ valida que el xml coincida con esquema XSD
function satxmlsv32_valida($docu) {
global $xml, $texto;
$xml->formatOutput=true;
$paso = new DOMDocument("1.0","UTF-8");
$texto = $xml->saveXML();
$paso->loadXML($texto);
libxml_use_internal_errors(true);
libxml_clear_errors();
$ruta = "./";
// if (strpos($texto,"detallista:")===FALSE) {
// $file=$ruta."cfdv32.xsd";
// $ok = $paso->schemaValidate($file);
// } else {
$file=$ruta."cfdv32complemento.xsd";
$ok = $paso->schemaValidate($file);
// }
return $ok;
}
// }}}
// {{{ display_xml_errors
function display_xml_errors() {
global $texto;
$lineas = explode("\n", $texto);
$errors = libxml_get_errors();
foreach ($errors as $error) {
echo display_xml_error($error, $lineas);
}
libxml_clear_errors();
}
/// }}}}
// {{{ display_xml_error
function display_xml_error($error, $lineas) {
$return = $lineas[$error->line - 1]. "\n";
$return .= str_repeat('-', $error->column) . "^\n";
switch ($error->level) {
case LIBXML_ERR_WARNING:
$return .= "Warning $error->code: ";
break;
case LIBXML_ERR_ERROR:
$return .= "Error $error->code: ";
break;
case LIBXML_ERR_FATAL:
$return .= "Fatal Error $error->code: ";
break;
}
$return .= trim($error->message) .
"\n Linea: $error->line" .
"\n Columna: $error->column";
echo "$return\n\n--------------------------------------------\n\n";
}
/// }}}}
?>