Skip to content

Factura con pago al crédito

Una factura con pago a crédito necesita las siguientes propiedades y valores:

  • forma_pago debe tener el valor crédito (o credito, sin tilde)
  • monto_pendiente debe tener la parte del total que será financiado en cuotas.
  • cuotas(o cuota, en singular) debe contener un elemento por cada cuota. Las propiedades de cada elemento están especificadas en la documentación de la colección cuota.

JSON

 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
{
  "tipo": "f",
  "serie": "FABO",
  "número": "2",
  "fecha": "2999-01-01",
  "tipo_doc": "r",
  "numero_doc": "20131312955",
  "razon_social": "SUPERINTENDENCIA NACIONAL DE ADUANAS Y DE ADMINISTRACION TRIBUTARIA - SUNAT",
  "dirección": "AV. GARCILASO DE LA VEGA NRO. 1472 LIMA LIMA LIMA",
  "moneda": "PEN",
  "forma_pago": "credito",
  "monto_pendiente": "7000",
  "cuotas": [
    {
      "fecha_vencimiento": "2999-05-31",
      "monto": 2500
    },
    {
      "fecha_vencimiento": "2999-06-30",
      "monto": 2000
    },
    {
      "fecha_vencimiento": "2999-07-31",
      "monto": 1500
    },
    {
      "fecha_vencimiento": "2999-08-31",
      "monto": 1000
    }
  ],
  "items": [
    {
      "unidad": "NIU",
      "descripcion": "PRODUCTO IMPORTANTE #2048",
      "cantidad": 4,
      "precio_unitario": 1416,
      "valor_unitario": 1200,
      "afectacion_igv": 10,
      "igv": 864
    },
    {
      "unidad": "NIU",
      "descripcion": "SERVICIO ESPECIAL PREMIUM",
      "cantidad": 1,
      "precio_unitario": 944,
      "valor_unitario": 800,
      "afectacion_igv": 10,
      "igv": 144
    },
    {
      "unidad": "NIU",
      "descripcion": "PRODUCTO SIMPLE NO IMPORTANTE",
      "cantidad": 2,
      "precio_unitario": 590,
      "valor_unitario": 500,
      "afectacion_igv": 10,
      "igv": 180
    }
  ]
}

Texto

 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
tipo: f
serie: FABO
número: 2
fecha: 2999-01-01
tipo_doc: r
numero_doc: 20131312955
razon_social: SUPERINTENDENCIA NACIONAL DE ADUANAS Y DE ADMINISTRACION TRIBUTARIA - SUNAT
dirección: AV. GARCILASO DE LA VEGA NRO. 1472 LIMA LIMA LIMA
moneda: PEN
forma_pago: credito
monto_pendiente: 7000
cuotas-1-fecha_vencimiento: 2999-05-31
cuotas-1-monto: 2500
cuotas-2-fecha_vencimiento: 2999-06-30
cuotas-2-monto: 2000
cuotas-3-fecha_vencimiento: 2999-07-31
cuotas-3-monto: 1500
cuotas-4-fecha_vencimiento: 2999-08-31
cuotas-4-monto: 1000
item-1-unidad: NIU
item-1-descripcion: PRODUCTO IMPORTANTE #2048
item-1-cantidad: 4
item-1-precio_unitario: 1416
item-1-valor_unitario: 1200
item-1-afectacion_igv: 10
item-1-igv: 864
item-2-unidad: NIU
item-2-descripcion: SERVICIO ESPECIAL PREMIUM
item-2-cantidad: 1
item-2-precio_unitario: 944
item-2-valor_unitario: 800
item-2-afectacion_igv: 10
item-2-igv: 144
item-3-unidad: NIU
item-3-descripcion: PRODUCTO SIMPLE NO IMPORTANTE
item-3-cantidad: 2
item-3-precio_unitario: 590
item-3-valor_unitario: 500
item-3-afectacion_igv: 10
item-3-igv: 180

Respuesta

La respuesta es similar a la respuesta de una factura simple.