Jump to content

Edit History

WisQQ

WisQQ

Hello,
I would like to add 2 columns to orders listing to be able to sortby  phone number or email. It worked before 1.7.7.0 by just simply adding them to override adminordercontroller.php. but after upgrade nothing works. I also tried to change these values with /src/PrestaShopBundle/Controller/Admin/Sell/Order but it didnt work. When i manually run query created through listing and add these 2 it showsup with no problems.

SELECT CONCAT(LEFT(cu.`firstname`, 1), '. ', cu.`lastname`) AS `customer`, o.id_order, a.phone,cu.email, o.reference, o.total_paid_tax_incl, os.paid, osl.name AS osname, o.id_currency, cur.iso_code, o.current_state, o.id_customer, cu.`id_customer` IS NULL as `deleted_customer`, os.color, o.payment, s.name AS shop_name, o.date_add, cu.company, cl.name AS country_name, o.invoice_number, o.delivery_number, IF ((SELECT so.id_order FROM ps_orders so WHERE (so.id_customer = o.id_customer) AND (so.id_order < o.id_order) LIMIT 1) > 0, 0, 1) AS new FROM ps_orders o LEFT JOIN ps_customer cu ON o.id_customer = cu.id_customer LEFT JOIN ps_currency cur ON o.id_currency = cur.id_currency INNER JOIN ps_address a ON o.id_address_delivery = a.id_address LEFT JOIN ps_order_state os ON o.current_state = os.id_order_state LEFT JOIN ps_shop s ON o.id_shop = s.id_shop INNER JOIN ps_country c ON a.id_country = c.id_country INNER JOIN ps_country_lang cl ON c.id_country = cl.id_country AND cl.id_lang = 1 LEFT JOIN ps_order_state_lang osl ON os.id_order_state = osl.id_order_state AND osl.id_lang = 1 WHERE o.`id_shop` IN ('1') ORDER BY o.id_order DESC LIMIT 50

For now i went back to 1.7.6.9.image.thumb.png.33da5784c5a126f271864ced0b8b821c.png

WisQQ

WisQQ

Hello,
I would like to add 2 columns to orders listing to be able to sortby  phone number or email. It worked before 1.7.7.0 by just simply adding them to override adminordercontroller.php. but after upgrade nothing works. 

For now i went back to 1.7.6.9.image.thumb.png.33da5784c5a126f271864ced0b8b821c.png

×
×
  • Create New...