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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/orders_by_budget.tt (-6 / +6 lines)
Lines 7-13 Link Here
7
[% INCLUDE 'header.inc' %]
7
[% INCLUDE 'header.inc' %]
8
[% INCLUDE 'cat-search.inc' %]
8
[% INCLUDE 'cat-search.inc' %]
9
9
10
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
10
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
11
[% INCLUDE 'datatables.inc' %]
11
[% INCLUDE 'datatables.inc' %]
12
<script type="text/javascript">
12
<script type="text/javascript">
13
    $(document).ready( function () {
13
    $(document).ready( function () {
Lines 17-26 Link Here
17
        $('#budgetfilter .b_inactive').remove();
17
        $('#budgetfilter .b_inactive').remove();
18
18
19
        $('#showbudgets').click(function(){
19
        $('#showbudgets').click(function(){
20
            if ($(this).is(":checked"))
20
            if ($(this).is(":checked")) {
21
                $('#budgetfilter').html(showallbudgets);
21
                $('#budgetfilter').html(showallbudgets);
22
            else
22
            } else {
23
                $('#budgetfilter .b_inactive').remove();
23
                $('#budgetfilter .b_inactive').remove();
24
            }
24
        });
25
        });
25
    } );
26
    } );
26
</script>
27
</script>
Lines 61-67 Link Here
61
        <th>Total RRP</th>
62
        <th>Total RRP</th>
62
        <th>Total cost</th>
63
        <th>Total cost</th>
63
        <th>Entry date</th>
64
        <th>Entry date</th>
64
        <th>Date deceived</th>
65
        <th>Date received</th>
65
        <th>Internal note</th>
66
        <th>Internal note</th>
66
        <th>Vendor note</th>
67
        <th>Vendor note</th>
67
        </tr>
68
        </tr>
Lines 90-96 Link Here
90
            </tr>
91
            </tr>
91
        [% END %]
92
        [% END %]
92
        </tbody>
93
        </tbody>
93
        <tfoot><tr><th>TOTAL</th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th>[% total_quantity  %]</th><th>[% total_rrp | $Price %]</th><th>[% total_ecost | $Price %]</th><th></th><th></th><th></th></tr></tfoot>
94
        <tfoot><tr><th>TOTAL</th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th></th><th>[% total_quantity  %]</th><th>[% total_rrp | $Price %]</th><th>[% total_ecost | $Price %]</th><th></th><th></th><th></th><th></th></tr></tfoot>
94
        </table>
95
        </table>
95
    [% END %]
96
    [% END %]
96
    [% ELSE %]
97
    [% ELSE %]
97
- 

Return to bug 16594