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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt (-3 / +2 lines)
Lines 67-73 Link Here
67
                                <th class="NoSort">&nbsp;</th>
67
                                <th class="NoSort">&nbsp;</th>
68
                                <th class="anti-the">Title</th>
68
                                <th class="anti-the">Title</th>
69
                                <th>Note</th>
69
                                <th>Note</th>
70
                                <th class="title-string">Date</th>
70
                                <th>Date</th>
71
                                <th>Set by</th>
71
                                <th>Set by</th>
72
                                <th>Status</th>
72
                                <th>Status</th>
73
                                <th class="NoSort noExport">Actions</th>
73
                                <th class="NoSort noExport">Actions</th>
Lines 79-85 Link Here
79
                                    <td><input type="checkbox" name="issue_ids" value="[% note.issue_id | html %]"></td>
79
                                    <td><input type="checkbox" name="issue_ids" value="[% note.issue_id | html %]"></td>
80
                                    <td>[% note.item.biblio.title | html %] - [% note.item.biblio.author | html %] (<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% note.item.biblionumber | uri %]">[% note.item.barcode | html %]</a>)</td>
80
                                    <td>[% note.item.biblio.title | html %] - [% note.item.biblio.author | html %] (<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% note.item.biblionumber | uri %]">[% note.item.barcode | html %]</a>)</td>
81
                                    <td>[% note.note | html %]</td>
81
                                    <td>[% note.note | html %]</td>
82
                                    <td><span title="[% note.notedate | html %]">[% note.notedate | $KohaDates %]</span></td>
82
                                    <td data-order="[% note.notedate | html %]">[% note.notedate | $KohaDates %]</td>
83
                                    <td>[% INCLUDE 'patron-title.inc' patron => note.patron hide_patron_infos_if_needed=1 %]</td>
83
                                    <td>[% INCLUDE 'patron-title.inc' patron => note.patron hide_patron_infos_if_needed=1 %]</td>
84
                                    <td class="seen[% note.noteseen | html %]">
84
                                    <td class="seen[% note.noteseen | html %]">
85
                                        [% IF ( note.noteseen == 0 ) %]
85
                                        [% IF ( note.noteseen == 0 ) %]
Lines 131-137 Link Here
131
                "order": [[ 1, "asc" ]],
131
                "order": [[ 1, "asc" ]],
132
                "aoColumnDefs": [
132
                "aoColumnDefs": [
133
                    { "orderable": false, "searchable": false, 'targets': [ 'NoSort' ] },
133
                    { "orderable": false, "searchable": false, 'targets': [ 'NoSort' ] },
134
                    { "type": "title-string", "targets" : [ "title-string" ] },
135
                    { "type": "anti-the", "targets": [ "anti-the" ] }
134
                    { "type": "anti-the", "targets": [ "anti-the" ] }
136
                ],
135
                ],
137
                "pagingType": "full"
136
                "pagingType": "full"
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/on-site_checkouts.tt (-16 / +3 lines)
Lines 39-47 Link Here
39
            <tbody>
39
            <tbody>
40
              [% FOREACH item IN pending_onsite_checkouts %]
40
              [% FOREACH item IN pending_onsite_checkouts %]
41
                <tr>
41
                <tr>
42
                  <td>
42
                  <td data-order="[% item.date_due | html %]">
43
                    [% IF item.is_overdue %]<span class="overdue">[% END %]
43
                    [% IF item.is_overdue %]<span class="overdue">[% END %]
44
                    <span title="[% item.date_due | html %]">[% item.date_due | $KohaDates %]</span>
44
                    [% item.date_due | $KohaDates %]
45
                    [% IF item.is_overdue %]</span>[% END %]
45
                    [% IF item.is_overdue %]</span>[% END %]
46
                  </td>
46
                  </td>
47
                  <td>
47
                  <td>
Lines 83-102 Link Here
83
    <script>
83
    <script>
84
        $(document).ready(function(){
84
        $(document).ready(function(){
85
            if ( $("#pending_onsite_checkout").length ) {
85
            if ( $("#pending_onsite_checkout").length ) {
86
                $("#pending_onsite_checkout").dataTable($.extend(true, {}, dataTablesDefaults, {
86
                $("#pending_onsite_checkout").dataTable($.extend(true, {}, dataTablesDefaults));
87
                    "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
88
                    "aoColumns": [
89
                        { "sType": "title-string" },
90
                        { "sType": "html" },
91
                        { "sType": "html" },
92
                        null,
93
                        { "sType": "html" },
94
                        null,
95
                        null,
96
                    ],
97
                    'bAutoWidth': false,
98
                    "sPaginationType": "full"
99
                }));
100
            }
87
            }
101
        });
88
        });
102
    </script>
89
    </script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt (-2 / +2 lines)
Lines 52-58 Link Here
52
    <table id="overduest">
52
    <table id="overduest">
53
      <thead>
53
      <thead>
54
        <tr>
54
        <tr>
55
          <th class="title-string">Due date</th>
55
          <th>Due date</th>
56
          <th>Patron</th>
56
          <th>Patron</th>
57
          <th>Patron category</th>
57
          <th>Patron category</th>
58
          <th>Patron library</th>
58
          <th>Patron library</th>
Lines 70-76 Link Here
70
      <tbody>
70
      <tbody>
71
      [% FOREACH overdueloo IN overdueloop %]
71
      [% FOREACH overdueloo IN overdueloop %]
72
        <tr>
72
        <tr>
73
          <td><span title="[% overdueloo.duedate | html %]">[% overdueloo.duedate | $KohaDates %]</span></td>
73
          <td data-order="[% overdueloo.duedate | html %]">[% overdueloo.duedate | $KohaDates %]</td>
74
          <td>
74
          <td>
75
            [% INCLUDE 'patron-title.inc' patron=overdueloo.patron hide_patron_infos_if_needed=1 %]
75
            [% INCLUDE 'patron-title.inc' patron=overdueloo.patron hide_patron_infos_if_needed=1 %]
76
            [% IF logged_in_user.can_see_patron_infos( overdueloo.patron ) %]
76
            [% IF logged_in_user.can_see_patron_infos( overdueloo.patron ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt (-3 / +3 lines)
Lines 63-69 Link Here
63
        <th>Available enumeration</th>
63
        <th>Available enumeration</th>
64
        <th class="string-sort">Available item types</th>
64
        <th class="string-sort">Available item types</th>
65
        <th class="string-sort">Available locations</th>
65
        <th class="string-sort">Available locations</th>
66
        <th class="title-string">Earliest hold date</th>
66
        <th>Earliest hold date</th>
67
        <th>Action</th>
67
        <th>Action</th>
68
        </tr>
68
        </tr>
69
    </thead>
69
    </thead>
Lines 160-167 Link Here
160
            [% END %]
160
            [% END %]
161
            </ul>
161
            </ul>
162
        </td>
162
        </td>
163
        <td>
163
        <td data-order="[% hold.reservedate | html %]">
164
            <span title="[% hold.reservedate | html %]">[% hold.reservedate | $KohaDates %] in [% Branches.GetName ( hold.branchcode ) | html %]</span>
164
            [% hold.reservedate | $KohaDates %] in [% Branches.GetName ( hold.branchcode ) | html %]
165
        </td>
165
        </td>
166
        <td>
166
        <td>
167
            <form name="cancelReserve" action="/cgi-bin/koha/circ/pendingreserves.pl" method="post">
167
            <form name="cancelReserve" action="/cgi-bin/koha/circ/pendingreserves.pl" method="post">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transfers_to_send.tt (-4 / +5 lines)
Lines 40-46 Link Here
40
                                    <caption>Sending to [% library.branchname | html %]</caption>
40
                                    <caption>Sending to [% library.branchname | html %]</caption>
41
                                    <thead>
41
                                    <thead>
42
                                        <tr>
42
                                        <tr>
43
                                            <th class="title-string">Date of request</th>
43
                                            <th>Date of request</th>
44
                                            <th class="anti-the">Title</th>
44
                                            <th class="anti-the">Title</th>
45
                                            <th>Reason</th>
45
                                            <th>Reason</th>
46
                                            <th>On loan</th>
46
                                            <th>On loan</th>
Lines 53-59 Link Here
53
                                        [% FOREACH transfer IN library.inbound_transfers %]
53
                                        [% FOREACH transfer IN library.inbound_transfers %]
54
                                            [% UNLESS transfer.datesent %]
54
                                            [% UNLESS transfer.datesent %]
55
                                            <tr>
55
                                            <tr>
56
                                                <td><p><span title="[% transfer.daterequested | html %]">[% transfer.daterequested | $KohaDates %]</span></p></td>
56
                                                <td data-order="[% transfer.daterequested | html %]">
57
                                                    [% transfer.daterequested | $KohaDates %]
58
                                                </td>
57
                                                <td>
59
                                                <td>
58
                                                    [% INCLUDE 'biblio-title.inc' biblio = transfer.item.biblio link = 1 %][% IF ( transfer.item.biblio.author ) %] by [% transfer.item.biblio.author | html %][% END %]
60
                                                    [% INCLUDE 'biblio-title.inc' biblio = transfer.item.biblio link = 1 %][% IF ( transfer.item.biblio.author ) %] by [% transfer.item.biblio.author | html %][% END %]
59
                                                    [% IF ( transfer.item.effective_itemtype ) %] (<b>[% ItemTypes.GetDescription( transfer.item.effective_itemtype ) | html %]</b>)[% END %]
61
                                                    [% IF ( transfer.item.effective_itemtype ) %] (<b>[% ItemTypes.GetDescription( transfer.item.effective_itemtype ) | html %]</b>)[% END %]
Lines 103-110 Link Here
103
            $("#transferst[% library.branchcode | html %]").dataTable($.extend(true, {}, dataTablesDefaults, {
105
            $("#transferst[% library.branchcode | html %]").dataTable($.extend(true, {}, dataTablesDefaults, {
104
                "aoColumnDefs": [
106
                "aoColumnDefs": [
105
                    { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
107
                    { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
106
                    { "sType": "anti-the", "aTargets" : [ "anti-the" ] },
108
                    { "sType": "anti-the", "aTargets" : [ "anti-the" ] }
107
                    { "sType": "title-string", "aTargets" : [ "title-string" ] }
108
                ],
109
                ],
109
                "sDom": 't',
110
                "sDom": 't',
110
                "bPaginate": false
111
                "bPaginate": false
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt (-4 / +3 lines)
Lines 37-43 Link Here
37
            <table style="width: 100%" id="transferst[% branchesloo.branchcode | html %]">
37
            <table style="width: 100%" id="transferst[% branchesloo.branchcode | html %]">
38
            <caption>Coming from [% branchesloo.branchname | html %]</caption>
38
            <caption>Coming from [% branchesloo.branchname | html %]</caption>
39
            <thead><tr>
39
            <thead><tr>
40
                <th class="title-string">Date of transfer</th>
40
                <th>Date of transfer</th>
41
                <th class="anti-the">Title</th>
41
                <th class="anti-the">Title</th>
42
                <th>On hold for</th>
42
                <th>On hold for</th>
43
                <th>Home library</th>
43
                <th>Home library</th>
Lines 50-56 Link Here
50
                [% ELSE %]
50
                [% ELSE %]
51
                <tr>
51
                <tr>
52
                [% END %]
52
                [% END %]
53
                    <td><p><span title="[% reser.datetransfer | html %]">[% reser.datetransfer | $KohaDates %]</span></p> [% IF ( reser.messcompa ) %]<span class="error">Transfer is [% reser.diff | html %] days late</span>[% END %]</td>
53
                    <td data-order="[% reser.datetransfer | html %]"><p>[% reser.datetransfer | $KohaDates %]</p> [% IF ( reser.messcompa ) %]<span class="error">Transfer is [% reser.diff | html %] days late</span>[% END %]</td>
54
                    <td>
54
                    <td>
55
                        [% INCLUDE 'biblio-title.inc' biblio=reser link = 1 %] [% IF ( reser.author ) %]by [% reser.author | html %][% END %]
55
                        [% INCLUDE 'biblio-title.inc' biblio=reser link = 1 %] [% IF ( reser.author ) %]by [% reser.author | html %][% END %]
56
                            [% IF ( reser.itemtype ) %] (<strong>[% reser.itemtype | html %]</strong>)[% END %]
56
                            [% IF ( reser.itemtype ) %] (<strong>[% reser.itemtype | html %]</strong>)[% END %]
Lines 107-114 Link Here
107
            $("#transferst[% branchesloo.branchcode | html %]").dataTable($.extend(true, {}, dataTablesDefaults, {
107
            $("#transferst[% branchesloo.branchcode | html %]").dataTable($.extend(true, {}, dataTablesDefaults, {
108
                "aoColumnDefs": [
108
                "aoColumnDefs": [
109
                    { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
109
                    { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
110
                    { "sType": "anti-the", "aTargets" : [ "anti-the" ] },
110
                    { "sType": "anti-the", "aTargets" : [ "anti-the" ] }
111
                    { "sType": "title-string", "aTargets" : [ "title-string" ] }
112
                ],
111
                ],
113
                "sDom": 't',
112
                "sDom": 't',
114
                "bPaginate": false
113
                "bPaginate": false
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt (-3 / +2 lines)
Lines 59-65 Link Here
59
        <th class="hq-barcode">Barcode</th>
59
        <th class="hq-barcode">Barcode</th>
60
        <th class="hq-patron">Patron</th>
60
        <th class="hq-patron">Patron</th>
61
        <th class="hq-sendto">Send to</th>
61
        <th class="hq-sendto">Send to</th>
62
        <th class="hq-date title-string">Date</th>
62
        <th class="hq-date">Date</th>
63
        <th class="hq-notes">Notes</th>
63
        <th class="hq-notes">Notes</th>
64
    </tr>
64
    </tr>
65
    <tr>
65
    <tr>
Lines 168-174 Link Here
168
              [% END %]
168
              [% END %]
169
            </td>
169
            </td>
170
            <td class="hq-sendto">[% Branches.GetName( itemsloo.pickbranch ) | html %]</td>
170
            <td class="hq-sendto">[% Branches.GetName( itemsloo.pickbranch ) | html %]</td>
171
            <td class="hq-date"><span title="[% itemsloo.reservedate | html %]">[% itemsloo.reservedate | $KohaDates %]</span></td>
171
            <td class="hq-date" data-order="[% itemsloo.reservedate | html %]">[% itemsloo.reservedate | $KohaDates %]</td>
172
            <td class="hq-notes">[% itemsloo.notes | html %]</td>
172
            <td class="hq-notes">[% itemsloo.notes | html %]</td>
173
        </tr>
173
        </tr>
174
    [% END %]</tbody>
174
    [% END %]</tbody>
175
- 

Return to bug 27974