From 2592cd71f45914d8140a70f65dfb43f76d2b3cd2 Mon Sep 17 00:00:00 2001
From: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Date: Thu, 3 Oct 2024 15:32:51 +0100
Subject: [PATCH] Bug 33260: (follow-up) Alternative print button in modal

This adds a simple print option to the modal preview display on the
members page.  It simply prints the content of the display modal and
doesn't set the status change.

This might be useful to allow pending notices to still be printed.
---
 koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt
index 784d5569530..35774a97dd7 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt
@@ -145,7 +145,7 @@
         </div> <!-- /.row -->
 
         <!-- Modal -->
-        <div class="modal" id="noticeModal" tabindex="-1" aria-labelledby="noticeModalLabel" aria-hidden="true">
+        <div class="modal printable" id="noticeModal" tabindex="-1" aria-labelledby="noticeModalLabel" aria-hidden="true">
             <div class="modal-dialog">
                 <div class="modal-content">
                     <div class="modal-header">
@@ -163,6 +163,7 @@
                             <input type="hidden" name="message_id" value="" />
                             <button type="submit" id="resend_notice_button" class="btn btn-default"><i class="fa-solid fa-rotate" aria-hidden="true"></i> Resend</button>
                         </form>
+                        <button type="button" class="printModal btn btn-primary"><i class="fa fa-print"></i> Print</button>
                         <button type="button" class="btn btn-default deny cancel" data-bs-dismiss="modal"><i class="fa fa-remove"></i> Close</button>
                     </div>
                 </div> <!-- /.modal-content -->
@@ -171,6 +172,7 @@
 
 [% MACRO jsinclude BLOCK %]
     [% INCLUDE 'datatables.inc' %]
+    [% Asset.js("js/modal_printer.js") | $raw %]
     <script>
         $(document).ready(function() {
             $("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, {
-- 
2.47.1