Export Orders from Prestashop
This task will export orders from Prestashop in an XML format. The results can be filtered if required. See below for a sample output file.
Settings
Export Stage
Optionally export orders from a specific stage.
Filter Settings
Export All
True: All records will be exported, regardless of when they were created or updated. False: Records will be exported based on Export From date and any Filters that have been specified.
Export From
The date to begin exporting records from. This date will update automatically each time the task runs.
Filters
Optionally filter the exported records.
Output File
Required
The name of the file to export the addresses to.
Connection
Required
The Prestashop connection to use. See the Connecting to Prestashop article if you require more information on how to create/manage connections.
Zynk Settings
See Common Task Settings.
Examples
A sample output file is shown below.
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Order>
<id>1</id>
<errors />
<date_add>2019-04-12 11:35:13</date_add>
<date_upd>2019-04-12 11:35:13</date_upd>
<should_create>true</should_create>
<should_update>true</should_update>
<id_address_delivery>4</id_address_delivery>
<id_address_invoice>4</id_address_invoice>
<id_cart>1</id_cart>
<id_currency>1</id_currency>
<id_lang>1</id_lang>
<id_customer>1</id_customer>
<id_carrier>2</id_carrier>
<current_state>4</current_state>
<invoice_address>
<id>4</id>
<errors />
<date_add>2019-02-22 16:18:14</date_add>
<date_upd>2019-02-22 16:18:14</date_upd>
<should_create>true</should_create>
<should_update>true</should_update>
<id_customer>1</id_customer>
<id_manufacturer>0</id_manufacturer>
<id_supplier>0</id_supplier>
<id_warehouse>0</id_warehouse>
<id_country>21</id_country>
<id_state>12</id_state>
<alias>My address</alias>
<company>My Company</company>
<firstname>John</firstname>
<lastname>DOE</lastname>
<address1>16, Main street</address1>
<address2>2nd floor</address2>
<city>Miami</city>
<postcode>33133</postcode>
<phone>0102030405</phone>
</invoice_address>
<delivery_address>
<id>4</id>
<errors />
<date_add>2019-02-22 16:18:14</date_add>
<date_upd>2019-02-22 16:18:14</date_upd>
<should_create>true</should_create>
<should_update>true</should_update>
<id_customer>1</id_customer>
<id_manufacturer>0</id_manufacturer>
<id_supplier>0</id_supplier>
<id_warehouse>0</id_warehouse>
<id_country>21</id_country>
<id_state>12</id_state>
<alias>My address</alias>
<company>My Company</company>
<firstname>John</firstname>
<lastname>DOE</lastname>
<address1>16, Main street</address1>
<address2>2nd floor</address2>
<city>Miami</city>
<postcode>33133</postcode>
<phone>0102030405</phone>
</delivery_address>
<invoice_date>0000-00-00 00:00:00</invoice_date>
<valid>0</valid>
<gift>0</gift>
<gift_message />
<total_discounts>0.000000</total_discounts>
<total_paid>61.800000</total_paid>
<total_paid_real>0.000000</total_paid_real>
<total_shipping>2.000000</total_shipping>
<carrier_tax_rate>0.000</carrier_tax_rate>
<total_wrapping>0.000000</total_wrapping>
<shipping_number />
<conversion_rate>1.000000</conversion_rate>
<reference>XKBKNABJK</reference>
<associations>
<currency>
<id>1</id>
<errors />
<should_create>true</should_create>
<should_update>true</should_update>
<name>Euro</name>
<iso_code>EUR</iso_code>
<conversion_rate>1.000000</conversion_rate>
<active>1</active>
</currency>
<order_rows>
<order_row>
<id>1</id>
<errors />
<should_create>true</should_create>
<should_update>true</should_update>
<product_id>1</product_id>
<product_attribute_id>1</product_attribute_id>
<product_quantity>1</product_quantity>
<product_name>Hummingbird printed t-shirt - Color : White, Size : S</product_name>
<product_reference>demo_2</product_reference>
<product_ean13 />
<product_upc />
<product_price>23.900000</product_price>
<unit_price_tax_incl>23.900000</unit_price_tax_incl>
<unit_price_tax_excl>23.900000</unit_price_tax_excl>
</order_row>
<order_row>
<id>2</id>
<errors />
<should_create>true</should_create>
<should_update>true</should_update>
<product_id>2</product_id>
<product_attribute_id>9</product_attribute_id>
<product_quantity>1</product_quantity>
<product_name>Hummingbird printed sweater - Color : White, Size : S</product_name>
<product_reference>demo_3</product_reference>
<product_ean13 />
<product_upc />
<product_price>35.900000</product_price>
<unit_price_tax_incl>35.900000</unit_price_tax_incl>
<unit_price_tax_excl>35.900000</unit_price_tax_excl>
</order_row>
</order_rows>
</associations>
</Order>
</ArrayOfOrder>