Skip to content

Instantly share code, notes, and snippets.

@alelazcano
Created June 28, 2022 00:45
Show Gist options
  • Save alelazcano/fa9a2fe0f0e8c9fe9ead0432015be14e to your computer and use it in GitHub Desktop.
Save alelazcano/fa9a2fe0f0e8c9fe9ead0432015be14e to your computer and use it in GitHub Desktop.
Prestashop Order Example (simple, 2 items)
{
"order": {
"id": 2,
"id_address_delivery": "5",
"id_address_invoice": "5",
"id_cart": "2",
"id_currency": "1",
"id_lang": "1",
"id_customer": "2",
"id_carrier": "2",
"current_state": "1",
"module": "ps_checkpayment",
"invoice_number": "0",
"invoice_date": "0000-00-00 00:00:00",
"delivery_number": "0",
"delivery_date": "0000-00-00 00:00:00",
"valid": "0",
"date_add": "2022-06-25 01:45:01",
"date_upd": "2022-06-25 01:45:01",
"shipping_number": "",
"note": "",
"id_shop_group": "1",
"id_shop": "1",
"secure_key": "b44a6d9efd7a0076a0fbce6b15eaf3b1",
"payment": "Payment by check",
"recyclable": "0",
"gift": "0",
"gift_message": "",
"mobile_theme": "0",
"total_discounts": "0.000000",
"total_discounts_tax_incl": "0.000000",
"total_discounts_tax_excl": "0.000000",
"total_paid": "169.900000",
"total_paid_tax_incl": "169.900000",
"total_paid_tax_excl": "169.900000",
"total_paid_real": "0.000000",
"total_products": "169.900000",
"total_products_wt": "169.900000",
"total_shipping": "0.000000",
"total_shipping_tax_incl": "0.000000",
"total_shipping_tax_excl": "0.000000",
"carrier_tax_rate": "0.000",
"total_wrapping": "0.000000",
"total_wrapping_tax_incl": "0.000000",
"total_wrapping_tax_excl": "0.000000",
"round_mode": "0",
"round_type": "0",
"conversion_rate": "1.000000",
"reference": "OHSATSERP",
"associations": {
"order_rows": [
{
"id": "3",
"product_id": "4",
"product_attribute_id": "18",
"product_quantity": "2",
"product_name": "The adventure begins Framed poster - Size : 80x120cm",
"product_reference": "demo_5",
"product_ean13": "",
"product_isbn": "",
"product_upc": "",
"product_price": "79.000000",
"id_customization": "0",
"unit_price_tax_incl": "79.000000",
"unit_price_tax_excl": "79.000000"
},
{
"id": "4",
"product_id": "8",
"product_attribute_id": "0",
"product_quantity": "1",
"product_name": "Mug Today is a good day",
"product_reference": "demo_13",
"product_ean13": "",
"product_isbn": "",
"product_upc": "",
"product_price": "11.900000",
"id_customization": "0",
"unit_price_tax_incl": "11.900000",
"unit_price_tax_excl": "11.900000"
}
]
}
}
}
[CODE]
cons orderExample = {
"order": {
"id": 2,
"id_address_delivery": "5",
"id_address_invoice": "5",
"id_cart": "2",
"id_currency": "1",
"id_lang": "1",
"id_customer": "2",
"id_carrier": "2",
"current_state": "1",
"module": "ps_checkpayment",
"invoice_number": "0",
"invoice_date": "0000-00-00 00:00:00",
"delivery_number": "0",
"delivery_date": "0000-00-00 00:00:00",
"valid": "0",
"date_add": "2022-06-25 01:45:01",
"date_upd": "2022-06-25 01:45:01",
"shipping_number": "",
"note": "",
"id_shop_group": "1",
"id_shop": "1",
"secure_key": "b44a6d9efd7a0076a0fbce6b15eaf3b1",
"payment": "Payment by check",
"recyclable": "0",
"gift": "0",
"gift_message": "",
"mobile_theme": "0",
"total_discounts": "0.000000",
"total_discounts_tax_incl": "0.000000",
"total_discounts_tax_excl": "0.000000",
"total_paid": "169.900000",
"total_paid_tax_incl": "169.900000",
"total_paid_tax_excl": "169.900000",
"total_paid_real": "0.000000",
"total_products": "169.900000",
"total_products_wt": "169.900000",
"total_shipping": "0.000000",
"total_shipping_tax_incl": "0.000000",
"total_shipping_tax_excl": "0.000000",
"carrier_tax_rate": "0.000",
"total_wrapping": "0.000000",
"total_wrapping_tax_incl": "0.000000",
"total_wrapping_tax_excl": "0.000000",
"round_mode": "0",
"round_type": "0",
"conversion_rate": "1.000000",
"reference": "OHSATSERP",
"associations": {
"order_rows": [
{
"id": "3",
"product_id": "4",
"product_attribute_id": "18",
"product_quantity": "2",
"product_name": "The adventure begins Framed poster - Size : 80x120cm",
"product_reference": "demo_5",
"product_ean13": "",
"product_isbn": "",
"product_upc": "",
"product_price": "79.000000",
"id_customization": "0",
"unit_price_tax_incl": "79.000000",
"unit_price_tax_excl": "79.000000"
},
{
"id": "4",
"product_id": "8",
"product_attribute_id": "0",
"product_quantity": "1",
"product_name": "Mug Today is a good day",
"product_reference": "demo_13",
"product_ean13": "",
"product_isbn": "",
"product_upc": "",
"product_price": "11.900000",
"id_customization": "0",
"unit_price_tax_incl": "11.900000",
"unit_price_tax_excl": "11.900000"
}
]
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment