Got a quick hack for you.
Add this line:
PHP Code:
$GLOBALS['sugar_config']['list_max_entries_per_page'] = 1000000;
After
PHP Code:
if ($this->_getOption('view_print')) {
(About line 105)
So you get this:
PHP Code:
if ($this->_getOption('view_print')) {
$GLOBALS['sugar_config']['list_max_entries_per_page'] = 1000000;
echo ('<link href="themes/Sugar/print.css" media="all" type="text/css" rel="stylesheet">');
}
in \include\MVC\ViewSugarView.php
Testing seems to have stressed the hell out of the server, and not too sure if Sugar Heros are going to be happy that I recommend changing a MVC file like that.
I too would recommend a file export, but if you want to use SugarCRM, there is the code that will do it.
Bookmarks