This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtestFacturaC.php
84 lines (78 loc) · 2.62 KB
/
testFacturaC.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
<?php
include_once (__DIR__ . '/wsfev1.php');
include_once (__DIR__ . '/wsaa.php');
/**
* Este script sirve para probar el webservice WSFEV1 con Factura C
* Hay que indicar el CUIT con el cual vamos a realizar las pruebas
* Hay que indicar el número de comprobante correcto
* Hay que indicar un DNI válido para el receptor del comprobante
* Recordar tener todos los servicios de homologación habilitados en AFIP
* Ejecutar desde consola con "php testFacturaC.php"
*/
$CUIT = "XXXXXXXXXXX"; // CUIT del emisor
$MODO = Wsaa::MODO_HOMOLOGACION;
echo "----------Script de prueba de AFIP WSFEV1----------\n";
$voucher = Array
(
"idVoucher" => 1,
"numeroComprobante" => 1,
"numeroPuntoVenta" => 1,
"cae" => 0,
"letra" => "C",
"fechaVencimientoCAE" => "",
"tipoResponsable" => "Consumidor Final",
"nombreCliente" => "JUAN PEREZ",
"domicilioCliente" => "CALLE FALSA 123",
"fechaComprobante" => "20190303",
"codigoTipoComprobante" => 11,
"TipoComprobante" => "Factura",
"codigoConcepto" => 1,
"codigoMoneda" => "PES",
"cotizacionMoneda" => 1.000,
"fechaDesde" => 20190303,
"fechaHasta" => 20190303,
"fechaVtoPago" => 20190303,
"codigoTipoDocumento" => 96,
"TipoDocumento" => "DNI",
"numeroDocumento" => XXXXXXXX, // Debe ser diferente al DNI del emisor
"importeTotal" => 121.000,
"importeOtrosTributos" => 0.000,
"importeGravado" => 121.000,
"importeNoGravado" => 0.000,
"importeExento" => 0.000,
"importeIVA" => 0.000,
"codigoPais" => 200,
"idiomaComprobante" => 1,
"NroRemito" => 0,
"CondicionVenta" => "Efectivo",
"items" => Array
(
0 => Array
(
"codigo" => 112233445566,
"scanner" => 112233445566,
"descripcion" => "Producto de prueba",
"codigoUnidadMedida" => 7,
"UnidadMedida" => "Unidades",
"codigoCondicionIVA" => 1,
"Alic" => 0,
"cantidad" => 1.00,
"porcBonif" => 0.000,
"impBonif" => 0.000,
"precioUnitario" => 121.00,
"importeIVA" => 0.000,
"importeItem" => 121.00,
)
),
"subtotivas" => Array(),
"Tributos" => Array(),
"CbtesAsoc" => Array()
);
try {
$afip = new Wsfev1($CUIT,$MODO);
$result = $afip->emitirComprobante($voucher);
print_r($result);
} catch (Exception $e) {
echo 'Falló la ejecución: ' . $e->getMessage();
}
echo "--------------Ejecución WSFEV1 finalizada-----------------\n";