This question has been flagged
2 Replies
10001 Views

I like to export all companies in my contact list to CSV format, but I'm not sure how to do it:

  1. I click on contacts
  2. I click on list view
  3. I select the "companies" filter
  4. 80 of > 1000 companies are shown
  5. I click on the checkbox to select all (but only the 80 visible companies are selected)
  6. I click on export, but only 80 of > 1000 are exported

It seems, that I can only export what is currently visible (not very nice, btw) - so I probably need to set the list view to "unlimited". How can I do that?

Avatar
Discard
Author Best Answer

Double click on the string "1-80 of 1234" gives a drop down menu, incl. "unlimited". Just found here: https://accounts.openerp.com/forum/Help-1/question/3393

Avatar
Discard
Best Answer

Please go in to the addons paths thereafter to web/static/src/js/ just need to edit view_list.js file.

Comment from line no 324 to 328 and than add the below line.

.append('<option value="NaN">' + _t("Unlimited") + '</option>')

If it does not work try to restart the openerp service and than just logout than login to the db...

All records present in that table will be visible always than you not need to set the list view count manually to unlimited...

Avatar
Discard