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

(-)a/admin/columns_settings.yml (+4 lines)
Lines 683-688 modules: Link Here
683
            -
683
            -
684
              columnname: date
684
              columnname: date
685
            -
685
            -
686
              columnname: updated_on
687
            -
688
              columnname: manager
689
            -
686
              columnname: credit_number
690
              columnname: credit_number
687
              is_hidden: 1
691
              is_hidden: 1
688
            -
692
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-1 / +3 lines)
Lines 62-67 Link Here
62
      <tr>
62
      <tr>
63
          <th>Created</th>
63
          <th>Created</th>
64
          <th>Updated</th>
64
          <th>Updated</th>
65
          <th>Managed by</th>
65
          <th>Credit number</th>
66
          <th>Credit number</th>
66
          <th>Account type</th>
67
          <th>Account type</th>
67
          <th>Description of charges</th>
68
          <th>Description of charges</th>
Lines 84-89 Link Here
84
   <tr>
85
   <tr>
85
   <td data-order="[% account.date | html %]">[% account.date | $KohaDates %]</td>
86
   <td data-order="[% account.date | html %]">[% account.date | $KohaDates %]</td>
86
   <td data-order="[% account.timestamp | html %]">[% account.timestamp | $KohaDates with_hours = 1 %]</td>
87
   <td data-order="[% account.timestamp | html %]">[% account.timestamp | $KohaDates with_hours = 1 %]</td>
88
        <td>[% loggedinuser.surname | html %], [% loggedinuser.firstname | html %]</td>
87
        <td>[% account.credit_number | html %]</td>
89
        <td>[% account.credit_number | html %]</td>
88
        <td>[% PROCESS account_type_description account=account %]</td>
90
        <td>[% PROCESS account_type_description account=account %]</td>
89
      <td>
91
      <td>
Lines 142-148 Link Here
142
  [% END %]
144
  [% END %]
143
<tfoot>
145
<tfoot>
144
  <tr>
146
  <tr>
145
    <td colspan="13">Total due</td>
147
    <td colspan="14">Total due</td>
146
    [% IF ( totalcredit ) %]
148
    [% IF ( totalcredit ) %]
147
        <td class="credit" style="text-align: right;">[% total | $Price %]</td>
149
        <td class="credit" style="text-align: right;">[% total | $Price %]</td>
148
        <td>
150
        <td>
(-)a/members/boraccount.pl (-1 / +2 lines)
Lines 205-210 my $csrf_token = Koha::Token->new->generate_csrf({ Link Here
205
    session_id => scalar $input->cookie('CGISESSID'),
205
    session_id => scalar $input->cookie('CGISESSID'),
206
});
206
});
207
207
208
warn 'LUCASTEST' . Data::Dumper::Dumper( $logged_in_user );
208
$template->param(
209
$template->param(
209
    patron              => $patron,
210
    patron              => $patron,
210
    finesview           => 1,
211
    finesview           => 1,
Lines 215-220 $template->param( Link Here
215
    change_given        => $change_given,
216
    change_given        => $change_given,
216
    renew_results       => $renew_results_display,
217
    renew_results       => $renew_results_display,
217
    csrf_token          => $csrf_token,
218
    csrf_token          => $csrf_token,
219
    loggedinuser        => $logged_in_user->unblessed,
218
);
220
);
219
221
220
output_html_with_http_headers $input, $cookie, $template->output;
222
output_html_with_http_headers $input, $cookie, $template->output;
221
- 

Return to bug 28452