View | Details | Raw Unified | Return to bug 33260
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt (-114 / +141 lines)
Lines 49-165 Link Here
49
49
50
    [% IF ( QUEUED_MESSAGES ) %]
50
    [% IF ( QUEUED_MESSAGES ) %]
51
        <div class="page-section">
51
        <div class="page-section">
52
            <table id="noticestable">
52
            <span id="checkbox_actions"
53
                <thead>
53
                ><a href="#" class="select_all"><i class="fa fa-check"></i> Select all</a> | <a href="#" class="clear_all"><i class="fa fa-remove"></i> Clear all</a></span
54
                    <tr>
54
            >
55
                        <th>Notice</th>
55
            <form id="print_multiple" action="/cgi-bin/koha/tools/print_notice.pl" method="post" target="_blank">
56
                        <th>Type</th>
56
                [% INCLUDE 'csrf-token.inc' %]
57
                        <th>Status</th>
57
58
                        <th>Updated on</th>
58
                <table id="noticestable">
59
                        <th>Time created</th>
59
                    <thead>
60
                        <th>Delivery note</th>
61
                        [% IF CAN_user_tools_view_generated_notices %]
62
                            <th>Actions</th>
63
                        [% END %]
64
                    </tr>
65
                </thead>
66
                <tbody>
67
                    [% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %]
68
                        <tr>
60
                        <tr>
69
                            <td>
61
                            <th class="nosort">&nbsp;</th>
70
                                <a
62
                            <th>Time created</th>
71
                                    class="notice-title"
63
                            <th>Notice</th>
72
                                    data-noticeid="[% QUEUED_MESSAGE.message_id | html %]"
64
                            <th>Type</th>
73
                                    href="/cgi-bin/koha/members/notices.pl?borrowernumber=[% borrowernumber | uri %]&amp;noticeid=[% QUEUED_MESSAGE.message_id | uri %]"
65
                            <th>Status</th>
74
                                    >[% QUEUED_MESSAGE.subject | html %]</a
66
                            <th>Updated on</th>
75
                                >
67
                            <th>Delivery note</th>
76
                                <iframe class="notice" id="notice[% QUEUED_MESSAGE.message_id | html %]" srcdoc="[% QUEUED_MESSAGE.html_content | html %]"></iframe>
68
                            <th>Actions</th>
77
                            </td>
69
                        </tr>
78
                            <td>
70
                    </thead>
79
                                [% IF ( QUEUED_MESSAGE.message_transport_type == 'email' ) %]
71
                    <tbody>
80
                                    <span>email</span>
72
                        [% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %]
81
                                [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'print' ) %]
73
                            <tr>
82
                                    <span>print</span>
74
                                <td><input type="checkbox" name="message_ids" value="[% QUEUED_MESSAGE.message_id | html %]" [% IF QUEDUE_MESSAGE.status == 'pending' %]disabled="disabled"[% END %] /></td>
83
                                [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'feed' ) %]
75
                                <td data-order="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</td>
84
                                    <span>feed</span>
76
                                <td>
85
                                [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'sms' ) %]
77
                                    <a
86
                                    <span>sms</span>
78
                                        class="notice-title"
87
                                [% ELSE %]
79
                                        data-noticeid="[% QUEUED_MESSAGE.message_id | html %]"
88
                                    [% QUEUED_MESSAGE.message_transport_type | html %]
80
                                        data-status="[% QUEUED_MESSAGE.status | html %]"
89
                                [% END %]
81
                                        data-borrowernumber="[% borrowernumber | html %]"
90
                            </td>
82
                                        href="/cgi-bin/koha/members/notices.pl?borrowernumber=[% borrowernumber | uri %]&amp;noticeid=[% QUEUED_MESSAGE.message_id | uri %]"
91
                            <td>
83
                                        >[% QUEUED_MESSAGE.subject | html %]</a
92
                                [% IF ( QUEUED_MESSAGE.status == 'sent' ) %]
84
                                    >
93
                                    <span>sent</span>
85
                                    <iframe class="notice" id="notice[% QUEUED_MESSAGE.message_id | html %]" srcdoc="[% QUEUED_MESSAGE.html_content | html %]"></iframe>
94
                                [% ELSIF ( QUEUED_MESSAGE.status == 'pending' ) %]
86
                                </td>
95
                                    <span>pending</span>
87
                                <td>
96
                                [% ELSIF ( QUEUED_MESSAGE.status == 'failed' ) %]
88
                                    [% IF ( QUEUED_MESSAGE.message_transport_type == 'email' ) %]
97
                                    <span>failed</span>
89
                                        <span>email</span>
98
                                [% ELSIF ( QUEUED_MESSAGE.status == 'deleted' ) %]
90
                                    [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'print' ) %]
99
                                    <span>deleted</span>
91
                                        <span>print</span>
100
                                [% ELSE %]
92
                                    [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'feed' ) %]
101
                                    [% QUEUED_MESSAGE.status | html %]
93
                                        <span>feed</span>
102
                                [% END %]
94
                                    [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'sms' ) %]
103
                                [% IF ( QUEUED_MESSAGE.status != 'pending' ) %]
95
                                        <span>sms</span>
104
                                    <div class="notice">
105
                                        <form id="resend_notice[% QUEUED_MESSAGE.message_id | html %]" action="/cgi-bin/koha/members/notices.pl?borrowernumber=[% borrowernumber | html %]" method="POST">
106
                                            [% INCLUDE 'csrf-token.inc' %]
107
                                            <input type="hidden" name="op" value="cud-resend_notice" />
108
                                            <input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]" />
109
                                            <input type="hidden" name="message_id" value="[% QUEUED_MESSAGE.message_id | html %]" />
110
                                        </form>
111
                                    </div>
112
                                [% END %]
113
                            </td>
114
                            <td data-order="[% QUEUED_MESSAGE.updated_on | html %]">[% QUEUED_MESSAGE.updated_on | $KohaDates  with_hours => 1 %]</td>
115
                            <td data-order="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</td>
116
                            <td>
117
                                [% IF ( QUEUED_MESSAGE.failure_code ) %]
118
                                    [% IF ( QUEUED_MESSAGE.failure_code == "INVALID_BORNUMBER" ) %]
119
                                        <span class="clearfix">Invalid borrowernumber [% borrowernumber | html %]</span>
120
                                    [% ELSIF ( QUEUED_MESSAGE.failure_code == 'NO_EMAIL' ) %]
121
                                        <span class="clearfix">Unable to find an email address for this patron</span>
122
                                    [% ELSIF (matches = QUEUED_MESSAGE.failure_code.match('INVALID_EMAIL:(\w+)') ) %]
123
                                        <span class="clearfix">Invalid [% matches.0 | html %] email address found [% borrowernumber | html %]</span>
124
                                    [% ELSIF ( QUEUED_MESSAGE.failure_code == 'NO_FROM' ) %]
125
                                        <span class="clearfix">Missing from email address</span>
126
                                    [% ELSIF ( QUEUED_MESSAGE.failure_code == 'MISSING_SMS' ) %]
127
                                        <span class="clearfix">Missing SMS number</span>
128
                                    [% ELSIF ( QUEUED_MESSAGE.failure_code == 'DUPLICATE_MESSAGE' ) %]
129
                                        <span class="clearfix">Message is duplicate</span>
130
                                    [% ELSIF ( QUEUED_MESSAGE.failure_code == 'NO_NOTES' ) %]
131
                                        <span class="clearfix">No notes from SMS driver</span>
132
                                    [% ELSIF ( QUEUED_MESSAGE.failure_code == 'SMS_SEND_DRIVER_MISSING' ) %]
133
                                        <span class="clearfix">The SMS driver could not be loaded</span>
134
                                    [% ELSIF ( QUEUED_MESSAGE.failure_code == 'SENDMAIL' ) %]
135
                                        <span class="clearfix">Unhandled email failure, check the logs for further details</span>
136
                                    [% ELSIF ( QUEUED_MESSAGE.failure_code == "UNKNOWN_ERROR" ) %]
137
                                        <span class="clearfix">Unknown error</span>
138
                                    [% ELSE %]
96
                                    [% ELSE %]
139
                                        <span class="clearfix">Message failed to send with the following error: [% QUEUED_MESSAGE.failure_code | html %]</span>
97
                                        [% QUEUED_MESSAGE.message_transport_type | html %]
140
                                    [% END %]
98
                                    [% END %]
141
                                [% END %]
99
                                </td>
142
                                [% IF ( QUEUED_MESSAGE.status == 'sent' ) %]
100
                                <td>
143
                                    [% IF ( QUEUED_MESSAGE.from_address ) %]
101
                                    [% IF ( QUEUED_MESSAGE.status == 'sent' ) %]
144
                                        <span class="clearfix"><span class="label">From:</span> [% QUEUED_MESSAGE.from_address | html %]</span>
102
                                        <span>sent</span>
103
                                    [% ELSIF ( QUEUED_MESSAGE.status == 'pending' ) %]
104
                                        <span>pending</span>
105
                                    [% ELSIF ( QUEUED_MESSAGE.status == 'failed' ) %]
106
                                        <span>failed</span>
107
                                    [% ELSIF ( QUEUED_MESSAGE.status == 'deleted' ) %]
108
                                        <span>deleted</span>
109
                                    [% ELSE %]
110
                                        [% QUEUED_MESSAGE.status | html %]
145
                                    [% END %]
111
                                    [% END %]
146
                                    [% IF ( QUEUED_MESSAGE.to_address ) %]
112
                                </td>
147
                                        <span class="clearfix"><span class="label">To:</span> [% QUEUED_MESSAGE.to_address | html %]</span>
113
                                <td data-order="[% QUEUED_MESSAGE.updated_on | html %]">[% QUEUED_MESSAGE.updated_on | $KohaDates  with_hours => 1 %]</td>
114
                                <td>
115
                                    [% IF ( QUEUED_MESSAGE.failure_code ) %]
116
                                        [% IF ( QUEUED_MESSAGE.failure_code == "INVALID_BORNUMBER" ) %]
117
                                            <span class="clearfix">Invalid borrowernumber [% borrowernumber | html %]</span>
118
                                        [% ELSIF ( QUEUED_MESSAGE.failure_code == 'NO_EMAIL' ) %]
119
                                            <span class="clearfix">Unable to find an email address for this patron</span>
120
                                        [% ELSIF (matches = QUEUED_MESSAGE.failure_code.match('INVALID_EMAIL:(\w+)') ) %]
121
                                            <span class="clearfix">Invalid [% matches.0 | html %] email address found [% borrowernumber | html %]</span>
122
                                        [% ELSIF ( QUEUED_MESSAGE.failure_code == 'NO_FROM' ) %]
123
                                            <span class="clearfix">Missing from email address</span>
124
                                        [% ELSIF ( QUEUED_MESSAGE.failure_code == 'MISSING_SMS' ) %]
125
                                            <span class="clearfix">Missing SMS number</span>
126
                                        [% ELSIF ( QUEUED_MESSAGE.failure_code == 'DUPLICATE_MESSAGE' ) %]
127
                                            <span class="clearfix">Message is duplicate</span>
128
                                        [% ELSIF ( QUEUED_MESSAGE.failure_code == 'NO_NOTES' ) %]
129
                                            <span class="clearfix">No notes from SMS driver</span>
130
                                        [% ELSIF ( QUEUED_MESSAGE.failure_code == 'SMS_SEND_DRIVER_MISSING' ) %]
131
                                            <span class="clearfix">The SMS driver could not be loaded</span>
132
                                        [% ELSIF ( QUEUED_MESSAGE.failure_code == 'SENDMAIL' ) %]
133
                                            <span class="clearfix">Unhandled email failure, check the logs for further details</span>
134
                                        [% ELSIF ( QUEUED_MESSAGE.failure_code == "UNKNOWN_ERROR" ) %]
135
                                            <span class="clearfix">Unknown error</span>
136
                                        [% ELSE %]
137
                                            <span class="clearfix">Message failed to send with the following error: [% QUEUED_MESSAGE.failure_code | html %]</span>
138
                                        [% END %]
148
                                    [% END %]
139
                                    [% END %]
149
                                    [% IF ( QUEUED_MESSAGE.cc_address ) %]
140
                                    [% IF ( QUEUED_MESSAGE.status != 'pending' ) %]
150
                                        <span class="clearfix"><span class="label">CC:</span> [% QUEUED_MESSAGE.cc_address | html %]</span>
141
                                        [% IF ( QUEUED_MESSAGE.from_address ) %]
142
                                            <span class="clearfix"><span class="label">From:</span> [% QUEUED_MESSAGE.from_address | html %]</span>
143
                                        [% END %]
144
                                        [% IF ( QUEUED_MESSAGE.to_address ) %]
145
                                            <span class="clearfix"><span class="label">To:</span> [% QUEUED_MESSAGE.to_address | html %]</span>
146
                                        [% END %]
147
                                        [% IF ( QUEUED_MESSAGE.cc_address ) %]
148
                                            <span class="clearfix"><span class="label">CC:</span> [% QUEUED_MESSAGE.cc_address | html %]</span>
149
                                        [% END %]
151
                                    [% END %]
150
                                    [% END %]
152
                                [% END %]
151
                                </td>
153
                            </td>
154
                            [% IF CAN_user_tools_view_generated_notices %]
155
                                <td class="actions"
152
                                <td class="actions"
156
                                    ><a target="_blank" class="btn btn-default btn-xs" href="/cgi-bin/koha/tools/print_notice.pl?message_ids=[% QUEUED_MESSAGE.message_id | uri %]"><i class="fa fa-print"></i> Print</a></td
153
                                    ><a target="_blank" class="btn btn-default btn-xs" href="/cgi-bin/koha/tools/print_notice.pl?message_ids=[% QUEUED_MESSAGE.message_id | uri %]"><i class="fa fa-print"></i> Print</a></td
157
                                >
154
                                >
158
                            [% END %]
155
                            </tr>
159
                        </tr>
156
                        [% END %]
160
                    [% END %]
157
                    </tbody>
161
                </tbody>
158
                </table>
162
            </table>
159
                <fieldset class="action">
160
                    <input type="submit" class="btn btn-primary" value="Print selected notices" id="print_multiple_button" />
161
                </fieldset>
162
            </form>
163
        </div>
163
        </div>
164
        <!-- /.page-section -->
164
        <!-- /.page-section -->
165
    [% ELSE %]
165
    [% ELSE %]
Lines 176-183 Link Here
176
            </div>
176
            </div>
177
            <div class="modal-body"> ... </div>
177
            <div class="modal-body"> ... </div>
178
            <div class="modal-footer">
178
            <div class="modal-footer">
179
                <button type="button" id="resend-notice" class="btn btn-default" style="display:none"><i class="fa-solid fa-rotate" aria-hidden="true"></i> Resend</button>
179
                <form id="resend_notice" action="/cgi-bin/koha/members/notices.pl" method="POST" style="display:none">
180
                <button type="button" class="btn btn-default deny cancel" data-bs-dismiss="modal"><i class="fa fa-times"></i> Close</button>
180
                    [% INCLUDE 'csrf-token.inc' %]
181
                    <input type="hidden" name="op" value="cud-resend_notice" />
182
                    <input type="hidden" name="borrowernumber" value="" />
183
                    <input type="hidden" name="message_id" value="" />
184
                    <button type="submit" id="resend_notice_button" class="btn btn-default"><i class="fa-solid fa-rotate" aria-hidden="true"></i> Resend</button>
185
                </form>
186
                <button type="button" class="btn btn-default deny cancel" data-bs-dismiss="modal"><i class="fa fa-remove"></i> Close</button>
181
            </div>
187
            </div>
182
        </div>
188
        </div>
183
        <!-- /.modal-content -->
189
        <!-- /.modal-content -->
Lines 200-225 Link Here
200
                var title = $(this).text();
206
                var title = $(this).text();
201
                var noticeid = $(this).data("noticeid");
207
                var noticeid = $(this).data("noticeid");
202
                var body = $("#notice" + noticeid).attr("srcdoc");
208
                var body = $("#notice" + noticeid).attr("srcdoc");
203
                if ($("#resend_notice" + noticeid).length) {
209
                if ($(this).data("status") !== "pending") {
204
                    $("#resend-notice").show();
210
                    let borrowerNumber = $(this).data("borrowernumber");
211
                    $('#resend_notice input[name="borrowernumber"]').val(borrowerNumber);
212
                    $('#resend_notice input[name="message_id"]').val(noticeid);
213
                    $("#resend_notice").show();
205
                }
214
                }
206
                $("#resend-notice").data("noticeid", noticeid);
207
                $("#noticeModalLabel").text(title);
215
                $("#noticeModalLabel").text(title);
208
                $("#noticeModal .modal-body").html(body);
216
                $("#noticeModal .modal-body").html(body);
209
                $("#noticeModal").modal("show");
217
                $("#noticeModal").modal("show");
210
            });
218
            });
211
219
212
            $("#resend-notice").on("click", function (e) {
213
                e.preventDefault();
214
                var noticeid = $(this).data("noticeid");
215
                $("#resend_notice" + noticeid).submit();
216
            });
217
218
            $("#noticeModal").on("hide.bs.modal", function () {
220
            $("#noticeModal").on("hide.bs.modal", function () {
219
                $("#resend-notice").removeData("noticeid").hide();
221
                $('#resend_notice input[name="borrowernumber"]').val("");
222
                $('#resend_notice input[name="message_id"]').val("");
223
                $("#resend_notice").hide();
220
                $("#noticeModalLabel").text("");
224
                $("#noticeModalLabel").text("");
221
                $("#noticeModal .modal-body").html("");
225
                $("#noticeModal .modal-body").html("");
222
            });
226
            });
227
228
            $("#print_multiple_button").click(function (e) {
229
                var selected_notices = $("#print_multiple").find("input[name='message_ids']:checked");
230
                if (selected_notices.length == 0) {
231
                    alert(_("Please select at least one sent notice."));
232
                    e.preventDefault();
233
                    return false;
234
                }
235
            });
236
237
            $(".select_all").click(function (e) {
238
                e.preventDefault();
239
                $("input[name='message_ids']").each(function () {
240
                    $(this).prop("checked", true);
241
                });
242
            });
243
244
            $(".clear_all").click(function (e) {
245
                e.preventDefault();
246
                $("input[name='message_ids']").each(function () {
247
                    $(this).prop("checked", false);
248
                });
249
            });
223
        });
250
        });
224
    </script>
251
    </script>
225
    [% INCLUDE 'str/members-menu.inc' %]
252
    [% INCLUDE 'str/members-menu.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/notices.tt (-13 / +93 lines)
Lines 47-53 Link Here
47
47
48
                <h1>Notices management</h1>
48
                <h1>Notices management</h1>
49
49
50
                <div class="page-section bg-warning">Printing a notice will mark it as sent.</div>
50
                <div class="alert alert-warning">Printing a notice will mark it as sent.</div>
51
51
52
                [% IF notices.count == 0 %]
52
                [% IF notices.count == 0 %]
53
                    <div class="page-section bg-info"> No sent notices were found with those search parameters. </div>
53
                    <div class="page-section bg-info"> No sent notices were found with those search parameters. </div>
Lines 68-73 Link Here
68
                                        <th>Type</th>
68
                                        <th>Type</th>
69
                                        <th>Status</th>
69
                                        <th>Status</th>
70
                                        <th>Updated on</th>
70
                                        <th>Updated on</th>
71
                                        <th>Delivery note</th>
71
                                        <th class="nosort">Actions</th>
72
                                        <th class="nosort">Actions</th>
72
                                    </tr>
73
                                    </tr>
73
                                </thead>
74
                                </thead>
Lines 75-94 Link Here
75
                                    [% FOREACH notice IN notices %]
76
                                    [% FOREACH notice IN notices %]
76
                                        <tr>
77
                                        <tr>
77
                                            <td><input type="checkbox" name="message_ids" value="[% notice.message_id | html %]" /></td>
78
                                            <td><input type="checkbox" name="message_ids" value="[% notice.message_id | html %]" /></td>
78
                                            <td>[% notice.time_queued | $KohaDates with_hours = 1 %]</td>
79
                                            <td data-order="[% notice.time_queued | html %]">[% notice.time_queued | $KohaDates with_hours = 1 %]</td>
79
                                            <td>[% INCLUDE 'patron-title.inc' patron=notice.patron hide_patron_infos_if_needed=1 %]</td>
80
                                            <td>[% INCLUDE 'patron-title.inc' patron=notice.patron hide_patron_infos_if_needed=1 %]</td>
80
                                            <td>
81
                                            <td>
81
                                                <a
82
                                                <a
82
                                                    class="notice-title"
83
                                                    class="notice-title"
83
                                                    data-noticeid="[% notice.message_id | html %]"
84
                                                    data-noticeid="[% notice.message_id | html %]"
85
                                                    data-status="[% notice.status | html %]"
86
                                                    data-borrowernumber="[% notice.borrowernumber | html %]"
84
                                                    href="/cgi-bin/koha/members/notices.pl?borrowernumber=[% notice.borrowernumber | uri %]&amp;noticeid=[% notice.message_id | uri %]"
87
                                                    href="/cgi-bin/koha/members/notices.pl?borrowernumber=[% notice.borrowernumber | uri %]&amp;noticeid=[% notice.message_id | uri %]"
85
                                                    >[% notice.subject | html %]</a
88
                                                    >[% notice.subject | html %]</a
86
                                                >
89
                                                >
87
                                                <iframe class="notice" id="notice[% notice.message_id | html %]" srcdoc="[% notice.html_content | html %]"></iframe>
90
                                                <iframe class="notice" id="notice[% notice.message_id | html %]" srcdoc="[% notice.html_content | html %]"></iframe>
88
                                            </td>
91
                                            </td>
89
                                            <td>[% notice.message_transport_type | html %]</td>
92
                                            <td>
90
                                            <td>[% notice.status | html %]</td>
93
                                                [% IF ( notice.message_transport_type == 'email' ) %]
91
                                            <td>[% notice.updated_on | $KohaDates with_hours = 1 %]</td>
94
                                                    <span>email</span>
95
                                                [% ELSIF ( notice.message_transport_type == 'print' ) %]
96
                                                    <span>print</span>
97
                                                [% ELSIF ( notice.message_transport_type == 'feed' ) %]
98
                                                    <span>feed</span>
99
                                                [% ELSIF ( notice.message_transport_type == 'sms' ) %]
100
                                                    <span>sms</span>
101
                                                [% ELSE %]
102
                                                    [% notice.message_transport_type | html %]
103
                                                [% END %]
104
                                            </td>
105
                                            <td>
106
                                                [% IF ( notice.status == 'sent' ) %]
107
                                                    <span>sent</span>
108
                                                [% ELSIF ( notice.status == 'pending' ) %]
109
                                                    <span>pending</span>
110
                                                [% ELSIF ( notice.status == 'failed' ) %]
111
                                                    <span>failed</span>
112
                                                [% ELSIF ( notice.status == 'deleted' ) %]
113
                                                    <span>deleted</span>
114
                                                [% ELSE %]
115
                                                    [% notice.status | html %]
116
                                                [% END %]
117
                                            </td>
118
                                            <td data-order="[% noice.updated_on | html %]">[% notice.updated_on | $KohaDates with_hours = 1 %]</td>
119
                                            <td>
120
                                                [% IF ( notice.failure_code ) %]
121
                                                    [% IF ( notice.failure_code == "INVALID_BORNUMBER" ) %]
122
                                                        <span class="clearfix">Invalid borrowernumber [% notice.borrowernumber | html %]</span>
123
                                                    [% ELSIF ( notice.failure_code == 'NO_EMAIL' ) %]
124
                                                        <span class="clearfix">Unable to find an email address for this patron</span>
125
                                                    [% ELSIF ( matches = notice.failure_code.match('INVALID_EMAIL:(\w+)') ) %]
126
                                                        <span class="clearfix">Invalid [% matches.0 | html %] email address found [% borrowernumber | html %]</span>
127
                                                    [% ELSIF ( notice.failure_code == 'NO_FROM' ) %]
128
                                                        <span class="clearfix">Missing from email address</span>
129
                                                    [% ELSIF ( notice.failure_code == 'MISSING_SMS' ) %]
130
                                                        <span class="clearfix">Missing SMS number</span>
131
                                                    [% ELSIF ( notice.failure_code == 'DUPLICATE_MESSAGE' ) %]
132
                                                        <span class="clearfix">Message is duplicate</span>
133
                                                    [% ELSIF ( notice.failure_code == 'NO_NOTES' ) %]
134
                                                        <span class="clearfix">No notes from SMS driver</span>
135
                                                    [% ELSIF ( notice.failure_code == 'SMS_SEND_DRIVER_MISSING' ) %]
136
                                                        <span class="clearfix">The SMS driver could not be loaded</span>
137
                                                    [% ELSIF ( notice.failure_code == 'SENDMAIL' ) %]
138
                                                        <span class="clearfix">Unhandled email failure, check the logs for further details</span>
139
                                                    [% ELSIF ( notice.failure_code == "UNKNOWN_ERROR" ) %]
140
                                                        <span class="clearfix">Unknown error</span>
141
                                                    [% ELSE %]
142
                                                        <span class="clearfix">Message failed to send with the following error: [% notice.failure_code | html %]</span>
143
                                                    [% END %]
144
                                                [% END %]
145
                                                [% IF ( notice.status == 'sent' ) %]
146
                                                    [% IF ( notice.from_address ) %]
147
                                                        <span class="clearfix"><span class="label">From:</span> [% notice.from_address | html %]</span>
148
                                                    [% END %]
149
                                                    [% IF ( notice.to_address ) %]
150
                                                        <span class="clearfix"><span class="label">To:</span> [% notice.to_address | html %]</span>
151
                                                    [% END %]
152
                                                    [% IF ( notice.cc_address ) %]
153
                                                        <span class="clearfix"><span class="label">CC:</span> [% notice.cc_address | html %]</span>
154
                                                    [% END %]
155
                                                [% END %]
156
                                            </td>
92
                                            <td class="actions"
157
                                            <td class="actions"
93
                                                ><a target="_blank" class="btn btn-default btn-xs print" href="/cgi-bin/koha/tools/print_notice.pl?message_ids=[% notice.message_id | uri %]"><i class="fa fa-print"></i> Print</a></td
158
                                                ><a target="_blank" class="btn btn-default btn-xs print" href="/cgi-bin/koha/tools/print_notice.pl?message_ids=[% notice.message_id | uri %]"><i class="fa fa-print"></i> Print</a></td
94
                                            >
159
                                            >
Lines 96-102 Link Here
96
                                    [% END %]
161
                                    [% END %]
97
                                </tbody>
162
                                </tbody>
98
                            </table>
163
                            </table>
99
                            <input type="submit" class="btn btn-primary" value="Print selected notices" id="print_multiple_button" />
164
                            <fieldset class="action">
165
                                <input type="submit" class="btn btn-primary" value="Print selected notices" id="print_multiple_button" />
166
                            </fieldset>
100
                        </form>
167
                        </form>
101
                    </div>
168
                    </div>
102
                [% END %]
169
                [% END %]
Lines 210-223 Link Here
210
        <div class="modal-dialog">
277
        <div class="modal-dialog">
211
            <div class="modal-content">
278
            <div class="modal-content">
212
                <div class="modal-header">
279
                <div class="modal-header">
213
                    <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close">
280
                    <h1 class="modal-title" id="noticeModalLabel">Notice</h1>
214
                        <span aria-hidden="true">&times;</span>
281
                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
215
                    </button>
216
                    <h5 class="modal-title" id="noticeModalLabel">Notice</h5>
217
                </div>
282
                </div>
218
                <div class="modal-body"> ... </div>
283
                <div class="modal-body"> ... </div>
219
                <div class="modal-footer">
284
                <div class="modal-footer">
220
                    <button type="button" class="btn btn-default deny cancel" data-dismiss="modal"><i class="fa fa-remove"></i> Close</button>
285
                    <form id="resend_notice" action="/cgi-bin/koha/members/notices.pl" method="POST" style="display:none">
286
                        [% INCLUDE 'csrf-token.inc' %]
287
                        <input type="hidden" name="op" value="cud-resend_notice" />
288
                        <input type="hidden" name="borrowernumber" value="" />
289
                        <input type="hidden" name="message_id" value="" />
290
                        <button type="submit" id="resend_notice_button" class="btn btn-default"><i class="fa-solid fa-rotate" aria-hidden="true"></i> Resend</button>
291
                    </form>
292
                    <button type="button" class="btn btn-default deny cancel" data-bs-dismiss="modal"><i class="fa fa-remove"></i> Close</button>
221
                </div>
293
                </div>
222
            </div>
294
            </div>
223
            <!-- /.modal-content -->
295
            <!-- /.modal-content -->
Lines 245-262 Link Here
245
                    var title = $(this).text();
317
                    var title = $(this).text();
246
                    var noticeid = $(this).data("noticeid");
318
                    var noticeid = $(this).data("noticeid");
247
                    var body = $("#notice" + noticeid).attr("srcdoc");
319
                    var body = $("#notice" + noticeid).attr("srcdoc");
320
                    if ($(this).data("status") !== "pending") {
321
                        let borrowerNumber = $(this).data("borrowernumber");
322
                        $('#resend_notice input[name="borrowernumber"]').val(borrowerNumber);
323
                        $('#resend_notice input[name="message_id"]').val(noticeid);
324
                        $("#resend_notice").show();
325
                    }
248
                    $("#noticeModalLabel").text(title);
326
                    $("#noticeModalLabel").text(title);
249
                    $("#noticeModal .modal-body").html(body);
327
                    $("#noticeModal .modal-body").html(body);
250
                    $("#noticeModal").modal("show");
328
                    $("#noticeModal").modal("show");
251
                });
329
                });
252
330
253
                $("#noticeModal").on("hide.bs.modal", function () {
331
                $("#noticeModal").on("hide.bs.modal", function () {
332
                    $('#resend_notice input[name="borrowernumber"]').val("");
333
                    $('#resend_notice input[name="message_id"]').val("");
334
                    $("#resend_notice").hide();
254
                    $("#noticeModalLabel").text("");
335
                    $("#noticeModalLabel").text("");
255
                    $("#noticeModal .modal-body").html("");
336
                    $("#noticeModal .modal-body").html("");
256
                });
337
                });
257
338
258
                $("#print_multiple_button").click(function (e) {
339
                $("#print_multiple_button").click(function (e) {
259
                    var selected_notices = $("#print_multiple").find("input[name='message_ids']:checked");
340
                    var selected_notices = $("#notices").find("input[name='message_ids']:checked");
260
                    if (selected_notices.length == 0) {
341
                    if (selected_notices.length == 0) {
261
                        alert(_("Please select at least one sent notice."));
342
                        alert(_("Please select at least one sent notice."));
262
                        e.preventDefault();
343
                        e.preventDefault();
263
- 

Return to bug 33260