I upgraded my clients site to the 4.0.4 level and found a couple problems.
The version in the sql is being set to 4.0.2. Easily fixed in the admin/config but incorrect none the less.
The new version fixed the problem with the add on admin profiles not having the authority to print. That's the good news. The bad news is that for some reason I was not able to update existing profiles to select the new checkboxes for SO. I clicked update and when I accessed the profile again the checkboxes were blank. I ended up creating brand new profiles which saved fine.
Batch form print generates html that will not page break in IE. It worked fine in Firefox. The pages just run together. I had to make a change to invoice.php and packingslip.php removing the div and replacing it with br. The old code was:
PHP Code:
<div style="page-break-before:always"><span style="display: none;"> </span></div>
and the change was:
PHP Code:
<br style="page-break-before:always"><span style="display: none;"> </span>
Bookmarks