[Bug 13032] New: Feature Request -- command line switch to add page breaks to overdue_notices.pl
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13032 Bug ID: 13032 Summary: Feature Request -- command line switch to add page breaks to overdue_notices.pl Change sponsored?: --- Product: Koha Version: 3.14 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs@lists.koha-community.org Reporter: barton@bywatersolutions.com QA Contact: testopia@bugs.koha-community.org When overdue_notices.pl is run using the '-n' option, form feed characters are inserted between notices. This is currently the only way of inserting page breaks between notices. I've had several partners request that page breaks be added for the email sent to the library containing all notices for patrons who do not have email. This could be added via a command line switch -- perhaps '--page-break'. The behavior of this switch should be aware of whether the notices are html formatted or not -- if they are, page breaks must be added via CSS/html, if they are not, they should be inserted as form-feeds. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13032 --- Comment #1 from Barton Chittenden <barton@bywatersolutions.com> --- HTML page breaks can be added as follows: CSS: @media all { .page-break { display: none; } } @media print { .page-break { display: block; page-break-before: always; } } HTML: <div class="page-break"></div> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org