FrederikF Posted June 14, 2021 Share Posted June 14, 2021 I'm having trouble with the export function on the backend order page. I'd like to export all orders within a certain time period. But for some reason prestashop only allows me to export what is on page 1, while I want all 20 pages of orders that's within my search parameter. If anyone knows what code to modify I'd appreciate your expertise. I'm using Prestashop 1.7.6.9 Link to comment Share on other sites More sharing options...
Constantino Posted June 17, 2021 Share Posted June 17, 2021 if you don't mind using third-party tools for this, you can export order for the predefined period of time using trial version of Store Manager Link to comment Share on other sites More sharing options...
mgo3 Posted March 8, 2022 Share Posted March 8, 2022 I have the same problem. I modified this->getList($this->context->language->id); to this->getList($this->context->language->id, null, null, 0, false); at AdminController.php but it didn't work. Any clue? Thank you! Link to comment Share on other sites More sharing options...
knacky Posted March 28, 2022 Share Posted March 28, 2022 Only what is visible is exported. Because the sql query already contains a paging condition. So sql contains, for example, the where filter and LIMIT 10, 20. You can click on the "create sql query" button and see how Prestashop creates sql. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now