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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-7 / +8 lines)
Lines 14-20 $(document).ready(function() { Link Here
14
        'aaSorting': [[0, 'desc']],
14
        'aaSorting': [[0, 'desc']],
15
        "sDom": 'C<"top pager"ilpf><"#filter_c">tr<"bottom pager"ip>',
15
        "sDom": 'C<"top pager"ilpf><"#filter_c">tr<"bottom pager"ip>',
16
        "aoColumnDefs": [
16
        "aoColumnDefs": [
17
            { "sType": "title-string", "aTargets" : [ "title-string" ] }
17
            { "sType": "title-string", "aTargets" : [ "title-string" ] },
18
            { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false }
18
        ]
19
        ]
19
    }));
20
    }));
20
    $("#filter_c").html('<p><a href="#" id="filter_transacs">'+txtActivefilter+'</a>');
21
    $("#filter_c").html('<p><a href="#" id="filter_transacs">'+txtActivefilter+'</a>');
Lines 66-74 $(document).ready(function() { Link Here
66
          <th>Amount</th>
67
          <th>Amount</th>
67
          <th>Outstanding</th>
68
          <th>Outstanding</th>
68
          [% IF ( reverse_col ) %]
69
          [% IF ( reverse_col ) %]
69
              <th>&nbsp;</th>
70
              <th colspan=2>Actions</th>
71
          [% ELSE %]
72
              <th>&nbsp</th>
70
          [% END %]
73
          [% END %]
71
          <th>Print</th>
72
        </tr>
74
        </tr>
73
    </thead>
75
    </thead>
74
76
Lines 107-113 $(document).ready(function() { Link Here
107
    [% IF ( reverse_col ) %]
109
    [% IF ( reverse_col ) %]
108
      <td>
110
      <td>
109
	[% IF ( account.payment ) %]
111
	[% IF ( account.payment ) %]
110
		<a href="boraccount.pl?action=reverse&amp;accountlines_id=[% account.accountlines_id %]&amp;borrowernumber=[% account.borrowernumber %]">Reverse</a>
112
		<a href="boraccount.pl?action=reverse&amp;accountlines_id=[% account.accountlines_id %]&amp;borrowernumber=[% account.borrowernumber %]" class="btn btn-mini"><i class="fa fa-undo"></i> Reverse</a>
111
	[% ELSE %]
113
	[% ELSE %]
112
		&nbsp;
114
		&nbsp;
113
	[% END %]
115
	[% END %]
Lines 115-123 $(document).ready(function() { Link Here
115
	[% END %]
117
	[% END %]
116
<td>
118
<td>
117
	[% IF ( account.payment ) %]
119
	[% IF ( account.payment ) %]
118
		<a target="_blank" href="printfeercpt.pl?action=print&amp;accountlines_id=[% account.accountlines_id %]&amp;borrowernumber=[% account.borrowernumber %]">Print</a>
120
		<a target="_blank" href="printfeercpt.pl?action=print&amp;accountlines_id=[% account.accountlines_id %]&amp;borrowernumber=[% account.borrowernumber %]" class="btn btn-mini"><i class="fa fa-print"></i> Print</a>
119
	[% ELSE %]
121
	[% ELSE %]
120
		<a target="_blank" href="printinvoice.pl?action=print&amp;accountlines_id=[% account.accountlines_id %]&amp;borrowernumber=[% account.borrowernumber %]">Print</a>
122
		<a target="_blank" href="printinvoice.pl?action=print&amp;accountlines_id=[% account.accountlines_id %]&amp;borrowernumber=[% account.borrowernumber %]" class="btn btn-mini"><i class="fa fa-print"></i> Print</a>
121
	[% END %]
123
	[% END %]
122
      </td>
124
      </td>
123
    </tr>
125
    </tr>
124
- 

Return to bug 16235