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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt (-2 / +2 lines)
Lines 40-46 Link Here
40
                <table id="table_account_fines">
40
                <table id="table_account_fines">
41
                    <thead>
41
                    <thead>
42
                        <tr>
42
                        <tr>
43
                            <th class="title-string">Date</th>
43
                            <th>Date</th>
44
                            <th>Description of charges</th>
44
                            <th>Description of charges</th>
45
                            <th>Barcode</th>
45
                            <th>Barcode</th>
46
                            <th>Due date</th>
46
                            <th>Due date</th>
Lines 54-60 Link Here
54
                    <tbody>
54
                    <tbody>
55
                        <tr>
55
                        <tr>
56
                            <td>
56
                            <td>
57
                                <span title="[% accountline.date | html %]">[% accountline.date |$KohaDates %]</span>
57
                                [% accountline.date |$KohaDates %]
58
                            </td>
58
                            </td>
59
                            <td>
59
                            <td>
60
                                [%- PROCESS account_type_description account=accountline -%]
60
                                [%- PROCESS account_type_description account=accountline -%]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-2 / +2 lines)
Lines 46-52 Link Here
46
<table id="table_account_fines">
46
<table id="table_account_fines">
47
    <thead>
47
    <thead>
48
      <tr>
48
      <tr>
49
          <th class="title-string">Date</th>
49
          <th>Date</th>
50
          <th>Credit number</th>
50
          <th>Credit number</th>
51
          <th>Account type</th>
51
          <th>Account type</th>
52
          <th>Description of charges</th>
52
          <th>Description of charges</th>
Lines 67-73 Link Here
67
  [% FOREACH account IN accounts %]
67
  [% FOREACH account IN accounts %]
68
68
69
   <tr>
69
   <tr>
70
   <td><span title="[% account.date | html %]">[% account.date |$KohaDates %]</span></td>
70
   <td data-order="[% account.date | html %]">[% account.date |$KohaDates %]</td>
71
        <td>[% account.credit_number | html %]</td>
71
        <td>[% account.credit_number | html %]</td>
72
        <td>[% PROCESS account_type_description account=account %]</td>
72
        <td>[% PROCESS account_type_description account=account %]</td>
73
      <td>
73
      <td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt (-25 / +12 lines)
Lines 44-53 Link Here
44
        <th>Author</th>
44
        <th>Author</th>
45
        <th>Barcode</th>
45
        <th>Barcode</th>
46
        <th>Library</th>
46
        <th>Library</th>
47
        <th class="title-string">Hold date</th>
47
        <th>Hold date</th>
48
        <th class="title-string">Expiration date</th>
48
        <th>Expiration date</th>
49
        <th class="title-string">Waiting date</th>
49
        <th>Waiting date</th>
50
        <th class="title-string">Cancellation date</th>
50
        <th>Cancellation date</th>
51
        [% IF show_itemtype_column %]
51
        [% IF show_itemtype_column %]
52
          <th>Requested item type</th>
52
          <th>Requested item type</th>
53
        [% END %]
53
        [% END %]
Lines 61-87 Link Here
61
          <td>[% hold.biblio.author | html %]</td>
61
          <td>[% hold.biblio.author | html %]</td>
62
          <td>[% hold.item.barcode | html %]</td>
62
          <td>[% hold.item.barcode | html %]</td>
63
          <td>[% Branches.GetName( hold.branchcode ) | html %]</td>
63
          <td>[% Branches.GetName( hold.branchcode ) | html %]</td>
64
          <td><span title="[% hold.reservedate | html %]">[% hold.reservedate | $KohaDates %]</span></td>
64
          <td data-order="[% hold.reservedate | html %]">[% hold.reservedate | $KohaDates %]</td>
65
          <td>
65
          <td data-order="[% hold.expirationdate | html %]">
66
              [% IF hold.expirationdate %]
66
                [% hold.expirationdate | $KohaDates %]
67
                  <span title="[% hold.expirationdate | html %]">[% hold.expirationdate | $KohaDates %]</span>
68
              [% ELSE %]
69
                  <span title="0000-00-00"></span>
70
              [% END %]
71
          </td>
67
          </td>
72
          <td>
68
          <td data-order="[% hold.waitingdate | html %]">
73
              [% IF hold.waitingdate %]
69
                [% hold.waitingdate | $KohaDates %]
74
                  <span title="[% hold.waitingdate | html %]">[% hold.waitingdate | $KohaDates %]</span>
75
              [% ELSE %]
76
                  <span title="0000-00-00"></span>
77
              [% END %]
78
          </td>
70
          </td>
79
          <td>
71
          <td data-order="[% hold.cancellationdate | html %]">
80
              [% IF hold.cancellationdate %]
72
                [% hold.cancellationdate | $KohaDates %]
81
                  <span title="[% hold.cancellationdate | html %]">[% hold.cancellationdate | $KohaDates %]</span>
82
              [% ELSE %]
83
                  <span title="0000-00-00"></span>
84
              [% END %]
85
          </td>
73
          </td>
86
          [% IF show_itemtype_column %]
74
          [% IF show_itemtype_column %]
87
            <td>
75
            <td>
Lines 142-149 Link Here
142
            [% END %]
130
            [% END %]
143
            var table = KohaTable("table_holdshistory", {
131
            var table = KohaTable("table_holdshistory", {
144
                "sPaginationType": "full",
132
                "sPaginationType": "full",
145
                "aaSorting": [[4, 'desc']],
133
                "aaSorting": [[4, 'desc']]
146
                "sDom": 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>',
147
            }, columns_settings);
134
            }, columns_settings);
148
        });
135
        });
149
    </script>
136
    </script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-11 lines)
Lines 968-984 Link Here
968
                    $('#'+ui.newTab.context.id).click();
968
                    $('#'+ui.newTab.context.id).click();
969
                }
969
                }
970
            } );
970
            } );
971
            $("#holdst").dataTable($.extend(true, {}, dataTablesDefaults, {
972
                "sDom": 't',
973
                "aoColumnDefs": [
974
                    { "aTargets": [ -1,-2 ], "bSortable": false, "bSearchable": false }
975
                ],
976
                "aoColumns": [
977
                    { "sType": "title-string" },{ "sType": "anti-the" },null,null,null,null,null,null
978
                ],
979
                "bPaginate": false
980
            }));
981
982
971
983
            $("#view_restrictions").on("click",function(){
972
            $("#view_restrictions").on("click",function(){
984
                $('#debarments-tab-link').click();
973
                $('#debarments-tab-link').click();
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt (-5 / +4 lines)
Lines 35-42 Link Here
35
                <th>Notice</th>
35
                <th>Notice</th>
36
                <th>Type</th>
36
                <th>Type</th>
37
                <th>Status</th>
37
                <th>Status</th>
38
                <th class="title-string">Updated on</th>
38
                <th>Updated on</th>
39
                <th class="title-string">Time created</th>
39
                <th>Time created</th>
40
            </tr>
40
            </tr>
41
        </thead>
41
        </thead>
42
	<tbody>
42
	<tbody>
Lines 74-81 Link Here
74
            </div>
74
            </div>
75
            [% END %]
75
            [% END %]
76
        </td>
76
        </td>
77
        <td><span title="[% QUEUED_MESSAGE.updated_on | html %]">[% QUEUED_MESSAGE.updated_on | $KohaDates  with_hours => 1 %]</span></td>
77
        <td data-order="[% QUEUED_MESSAGE.updated_on | html %]">[% QUEUED_MESSAGE.updated_on | $KohaDates  with_hours => 1 %]</td>
78
        <td><span title="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</span></td>
78
        <td data-order="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</td>
79
	    </tr>
79
	    </tr>
80
	    [% END %]
80
	    [% END %]
81
	</tbody>
81
	</tbody>
Lines 100-106 Link Here
100
        $(document).ready(function() {
100
        $(document).ready(function() {
101
            $("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, {
101
            $("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, {
102
                "aaSorting": [[ 3, "desc" ]],
102
                "aaSorting": [[ 3, "desc" ]],
103
                "aoColumns": [ null,null,null, { "sType": "title-string" } ,{ "sType": "title-string" } ],
104
                "sPaginationType": "full"
103
                "sPaginationType": "full"
105
            }));
104
            }));
106
105
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt (-3 / +3 lines)
Lines 48-54 Link Here
48
    <th class="NoSort noExport">Actions</th>
48
    <th class="NoSort noExport">Actions</th>
49
    <th>Account type</th>
49
    <th>Account type</th>
50
    <th>Description</th>
50
    <th>Description</th>
51
    <th class="title-string">Date</th>
51
    <th>Date</th>
52
    <th>Barcode</th>
52
    <th>Barcode</th>
53
    <th>Due date</th>
53
    <th>Due date</th>
54
    <th>Checkin date</th>
54
    <th>Checkin date</th>
Lines 90-97 Link Here
90
        [%- IF line.description %][% line.description | html %][% END %]
90
        [%- IF line.description %][% line.description | html %][% END %]
91
        [% IF line.itemnumber %]([% line.item.biblio.title | html %])[% END %]
91
        [% IF line.itemnumber %]([% line.item.biblio.title | html %])[% END %]
92
    </td>
92
    </td>
93
    <td>
93
    <td data-order="[% line.date | html %]">
94
        <span title="[% line.date | html %]">[% line.date | $KohaDates %]</span>
94
        [% line.date | $KohaDates %]
95
    </td>
95
    </td>
96
    <td>
96
    <td>
97
        [% IF line.itemnumber %]
97
        [% IF line.itemnumber %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt (-20 / +15 lines)
Lines 50-68 Link Here
50
      <thead>
50
      <thead>
51
        <tr>
51
        <tr>
52
        <th style="display:none;">Type</th>
52
        <th style="display:none;">Type</th>
53
        <th class="title-string">Date</th>
53
        <th>Date</th>
54
        <th class="anti-the">Title</th>
54
        <th class="anti-the">Title</th>
55
        <th>Author</th>
55
        <th>Author</th>
56
        <th>Call no.</th>
56
        <th>Call no.</th>
57
        <th>Barcode</th>
57
        <th>Barcode</th>
58
        <th>Number of renewals</th>
58
        <th>Number of renewals</th>
59
        <th class="title-string">Checked out on</th>
59
        <th>Checked out on</th>
60
        <th>Checked out from</th>
60
        <th>Checked out from</th>
61
        [% IF Koha.Preference('RecordStaffUserOnCheckout') %]
61
        [% IF Koha.Preference('RecordStaffUserOnCheckout') %]
62
        <th>Checked out by</th>
62
        <th>Checked out by</th>
63
        [% END %]
63
        [% END %]
64
        <th class="title-string">Date due</th>
64
        <th>Date due</th>
65
        <th class="title-string">Return date</th>
65
        <th>Return date</th>
66
        </tr>
66
        </tr>
67
      </thead>
67
      </thead>
68
      <tbody>
68
      <tbody>
Lines 74-81 Link Here
74
            [% END %]
74
            [% END %]
75
            [% issuetype | html %]
75
            [% issuetype | html %]
76
          </td>
76
          </td>
77
          <td>
77
          <td data-order="[% issue.issuestimestamp | html %]">
78
            <span title="[% issue.issuestimestamp | html %]">[% issue.issuestimestamp | $KohaDates  with_hours => 1 %]</span>
78
              [% issue.issuestimestamp | $KohaDates  with_hours => 1 %]
79
          </td>
79
          </td>
80
          <td>
80
          <td>
81
            [% INCLUDE 'biblio-title.inc' biblio=issue link = 1 %]
81
            [% INCLUDE 'biblio-title.inc' biblio=issue link = 1 %]
Lines 93-117 Link Here
93
93
94
          <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% issue.itemnumber | uri %]&amp;biblionumber=[% issue.biblionumber | uri %]&amp;bi=[% issue.biblioitemnumber | uri %]#item[% issue.itemnumber | uri %]">[% issue.barcode | html %]</a></td>
94
          <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% issue.itemnumber | uri %]&amp;biblionumber=[% issue.biblionumber | uri %]&amp;bi=[% issue.biblioitemnumber | uri %]#item[% issue.itemnumber | uri %]">[% issue.barcode | html %]</a></td>
95
          <td>[% issue.renewals | html %]</td>
95
          <td>[% issue.renewals | html %]</td>
96
          <td>
96
          <td data-order="[% issue.issuedate | html %]">
97
            <span title="[% issue.issuedate | html %]">[% issue.issuedate |$KohaDates  with_hours => 1 %]</span>
97
              [% issue.issuedate |$KohaDates  with_hours => 1 %]
98
          </td>
98
          </td>
99
          <td>[% Branches.GetName( issue.branchcode ) | html %]</td>
99
          <td>[% Branches.GetName( issue.branchcode ) | html %]</td>
100
          [% IF Koha.Preference('RecordStaffUserOnCheckout') %]
100
          [% IF Koha.Preference('RecordStaffUserOnCheckout') %]
101
          <td><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% issue.issuer_id | uri %]">[% issue.firstname | html %] [% issue.surname | html %]</a></td>
101
          <td><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% issue.issuer_id | uri %]">[% issue.firstname | html %] [% issue.surname | html %]</a></td>
102
          [% END %]
102
          [% END %]
103
          <td>
103
          <td data-order="[% issue.date_due | html %]">
104
            [% IF issue.date_due %]
104
              [% issue.date_due |$KohaDates  with_hours => 1 %]
105
                <span title="[% issue.date_due | html %]">[% issue.date_due |$KohaDates  with_hours => 1 %]</span>
106
            [% ELSE %]
107
                <span title="0000-00-00"></span>
108
            [% END %]
109
          </td>
105
          </td>
110
          <td>
111
            [% IF  issue.returndate %]
106
            [% IF  issue.returndate %]
112
              <span title="[% issue.returndate | html %]">[% issue.returndate |$KohaDates  with_hours => 1 %]</span>
107
                <td data-order="[% issue.returndate | html %]">
108
                [% issue.returndate |$KohaDates  with_hours => 1 %]
113
            [% ELSE %]
109
            [% ELSE %]
114
              <span title="Checked out"><small>Checked out</small></span>
110
                <td data-order="checked out">
111
                <small>Checked out</small>
115
            [% END %]
112
            [% END %]
116
          </td>
113
          </td>
117
        </tr>
114
        </tr>
Lines 142-149 Link Here
142
            var columns_settings = [% TablesSettings.GetColumns('members', 'checkouthistory', 'checkouthistory-table', 'json') %];
139
            var columns_settings = [% TablesSettings.GetColumns('members', 'checkouthistory', 'checkouthistory-table', 'json') %];
143
            var table = KohaTable("table_readingrec", {
140
            var table = KohaTable("table_readingrec", {
144
                "sPaginationType": "full",
141
                "sPaginationType": "full",
145
                "aaSorting": [[10, 'desc']],
142
                "aaSorting": [[10, 'desc']]
146
                "sDom": 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>',
147
            }, columns_settings);
143
            }, columns_settings);
148
144
149
            var tabs = $("#tabs").tabs({
145
            var tabs = $("#tabs").tabs({
150
- 

Return to bug 27990