Flatstanley Posted May 23, 2011 Share Posted May 23, 2011 Hello,Does any one know of a report that can generate a CSV file of all orders that have delivery Carrier details on it.Eg. Order #5, Home DeliveryOrder #6, Pickupetc. Link to comment Share on other sites More sharing options...
shokinro Posted May 23, 2011 Share Posted May 23, 2011 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_carrierOr maybe you can find some free/paid modules to do that. Link to comment Share on other sites More sharing options...
Flatstanley Posted May 25, 2011 Author Share Posted May 25, 2011 Thank you for your information.I have inspected the database as per your recommendation. Link to comment Share on other sites More sharing options...
shokinro Posted May 25, 2011 Share Posted May 25, 2011 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 More sharing options...
Recommended Posts