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

(-)a/installer/data/mysql/atomicupdate/bug_31713.pl (-2 / +3 lines)
Lines 8-15 return { Link Here
8
        my ($dbh, $out) = @$args{qw(dbh out)};
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
9
10
        my $slip_content = <<~'END_CONTENT';
10
        my $slip_content = <<~'END_CONTENT';
11
[% USE Koha %]
12
[% USE Branches %]
11
[% USE Branches %]
12
[% USE Koha %]
13
[% USE KohaDates %]
13
[% USE Price %]
14
[% USE Price %]
14
[% PROCESS 'accounts.inc' %]
15
[% PROCESS 'accounts.inc' %]
15
<table>
16
<table>
Lines 85-91 return { Link Here
85
86
86
  <tfoot>
87
  <tfoot>
87
    <tr>
88
    <tr>
88
      <td colspan='3'>Total outstanding dues as on date: </td>
89
      <td colspan='3'>Total outstanding dues as of [% today | $KohaDates  %]: </td>
89
      [% IF ( borrower.account.balance <= 0 ) %]<td class='credit'>[% ELSE %]<td class='debit'>[% END %][% borrower.account.balance | $Price %]</td>
90
      [% IF ( borrower.account.balance <= 0 ) %]<td class='credit'>[% ELSE %]<td class='debit'>[% END %][% borrower.account.balance | $Price %]</td>
90
    </tr>
91
    </tr>
91
  </tfoot>
92
  </tfoot>
(-)a/installer/data/mysql/en/mandatory/sample_notices.yml (-3 / +3 lines)
Lines 1292-1299 tables: Link Here
1292
          message_transport_type: print
1292
          message_transport_type: print
1293
          lang: default
1293
          lang: default
1294
          content:
1294
          content:
1295
            - "[% USE Koha %]"
1296
            - "[% USE Branches %]"
1295
            - "[% USE Branches %]"
1296
            - "[% USE Koha %]"
1297
            - "[% USE KohaDates %]"
1297
            - "[% USE Price %]"
1298
            - "[% USE Price %]"
1298
            - "[% PROCESS 'accounts.inc' %]"
1299
            - "[% PROCESS 'accounts.inc' %]"
1299
            - "<table>"
1300
            - "<table>"
Lines 1369-1375 tables: Link Here
1369
            - ""
1370
            - ""
1370
            - "  <tfoot>"
1371
            - "  <tfoot>"
1371
            - "    <tr>"
1372
            - "    <tr>"
1372
            - "      <td colspan='3'>Total outstanding dues as on date: </td>"
1373
            - "      <td colspan='3'>Total outstanding dues as of [% today | $KohaDates %]: </td>"
1373
            - "      [% IF ( borrower.account.balance <= 0 ) %]<td class='credit'>[% ELSE %]<td class='debit'>[% END %][% borrower.account.balance | $Price %]</td>"
1374
            - "      [% IF ( borrower.account.balance <= 0 ) %]<td class='credit'>[% ELSE %]<td class='debit'>[% END %][% borrower.account.balance | $Price %]</td>"
1374
            - "    </tr>"
1375
            - "    </tr>"
1375
            - "  </tfoot>"
1376
            - "  </tfoot>"
1376
- 

Return to bug 31713