Bug 28813: Rename delivery_note to failure_code
[koha-ffzg.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / notices.tt
index e396f69..31bd2db 100644 (file)
@@ -49,8 +49,9 @@
                 <th>Notice</th>
                 <th>Type</th>
                 <th>Status</th>
-                <th class="title-string">Updated on</th>
-                <th class="title-string">Time created</th>
+                <th>Updated on</th>
+                <th>Time created</th>
+                <th>Delivery note</th>
             </tr>
         </thead>
        <tbody>
             </div>
             [% END %]
         </td>
-        <td><span title="[% QUEUED_MESSAGE.updated_on | html %]">[% QUEUED_MESSAGE.updated_on | $KohaDates  with_hours => 1 %]</span></td>
-        <td><span title="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</span></td>
-           </tr>
+        <td data-order="[% QUEUED_MESSAGE.updated_on | html %]">[% QUEUED_MESSAGE.updated_on | $KohaDates  with_hours => 1 %]</td>
+        <td data-order="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</td>
+        <td>
+        [% IF ( QUEUED_MESSAGE.failure_code ) %]
+            [% IF ( QUEUED_MESSAGE.failure_code == "INVALID_BORNUMBER" ) %]Invalid borrowernumber [% borrowernumber | html %]
+            [% ELSIF ( QUEUED_MESSAGE.failure_code == 'NO_EMAIL' ) %]Unable to find an email address for this borrower
+            [% ELSIF ( QUEUED_MESSAGE.failure_code == 'NO_FROM' ) %]Missing from email address
+            [% ELSIF ( QUEUED_MESSAGE.failure_code == 'MISSING_SMS' ) %]Missing SMS number
+            [% ELSIF ( QUEUED_MESSAGE.failure_code == 'DUPLICATE_MESSAGE' ) %]Message is duplicate
+            [% ELSIF ( QUEUED_MESSAGE.failure_code == 'NO_NOTES' ) %]No notes from SMS driver
+            [% ELSIF ( QUEUED_MESSAGE.failure_code == 'SENDMAIL' ) %]Unhandled email failure, check the logs for further details
+            [% ELSE %]Error occurred while sending email.
+            [% END %]
+        [% END %]
+        </td>
+        </tr>
            [% END %]
        </tbody>
     </table>
         $(document).ready(function() {
             $("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, {
                 "aaSorting": [[ 3, "desc" ]],
-                "aoColumns": [ null,null,null, { "sType": "title-string" } ,{ "sType": "title-string" } ],
                 "sPaginationType": "full"
             }));