Jump to content

[Solved] How to generate a Delivery Slip CSV report


Recommended Posts

I think you can use database tool to export the table ps_orders in CSV/XLS format.
At least PhpMyAdmin can do this.

but because database ps_orders only saves IDs, you need to convert ID to name of carrier.

id_order, is_carrier

Or maybe you can find some free/paid modules to do that.

Link to comment
Share on other sites

if you know how to use SQL statement, then it is much more easy.

Here is the SQL statement that will return OrderID,CarrierID,CarrierName

SELECT id_order,c.id_carrier,C.name FROM `ps_orders` O LEFT JOIN ps_carrier C on O.id_carrier=C.id_carrier

Link to comment
Share on other sites

×
×
  • Create New...