Advertisement
Guest User

Invoice List

a guest
Feb 16th, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.01 KB | None | 0 0
  1. [
  2.     {
  3.         "id": 1,
  4.         "type": "invoice",
  5.         "receipt_no": "0001",
  6.         "invoice_type": "39",
  7.         "client": {
  8.             "rut": 18123880,
  9.             "name": "Jerry",
  10.             "phone": null,
  11.             "address": ""
  12.         },
  13.         "invoice_products": [
  14.             {
  15.                 "product": {
  16.                     "id": 1,
  17.                     "name": "Chilenas Rebeldes",
  18.                     "price": 15990
  19.                 },
  20.                 "quantity": 2
  21.             },
  22.             {
  23.                 "product": {
  24.                     "id": 2,
  25.                     "name": "Neruda",
  26.                     "price": 10990
  27.                 },
  28.                 "quantity": 4
  29.             }
  30.         ],
  31.         "payments": [
  32.             {
  33.                 "id": 1,
  34.                 "amount": 10000,
  35.                 "created_at": "2020-02-16T12:32:17.427827-03:00"
  36.             }
  37.         ]
  38.     },
  39.     {
  40.         "id": 2,
  41.         "type": "invoice",
  42.         "receipt_no": "002",
  43.         "invoice_type": "01",
  44.         "client": {
  45.             "rut": 18123880,
  46.             "name": "Jerry",
  47.             "phone": null,
  48.             "address": ""
  49.         },
  50.         "invoice_products": [
  51.             {
  52.                 "product": {
  53.                     "id": 2,
  54.                     "name": "Neruda",
  55.                     "price": 10990
  56.                 },
  57.                 "quantity": 2
  58.             }
  59.         ],
  60.         "payments": []
  61.     },
  62.     {
  63.         "id": 3,
  64.         "type": "quotation",
  65.         "receipt_no": null,
  66.         "invoice_type": "",
  67.         "client": {
  68.             "rut": 18123880,
  69.             "name": "Jerry",
  70.             "phone": null,
  71.             "address": ""
  72.         },
  73.         "invoice_products": [
  74.             {
  75.                 "product": {
  76.                     "id": 2,
  77.                     "name": "Neruda",
  78.                     "price": 10990
  79.                 },
  80.                 "quantity": 2
  81.             }
  82.         ],
  83.         "payments": []
  84.     }
  85. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement