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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt (-3 / +5 lines)
Lines 21-26 $(document).ready(function() { Link Here
21
        'bPaginate': false,
21
        'bPaginate': false,
22
        'bFilter': false,
22
        'bFilter': false,
23
        'bInfo': false,
23
        'bInfo': false,
24
        "aaSorting": [[ 1, "asc" ]],
24
        'aoColumnDefs': [
25
        'aoColumnDefs': [
25
            { 'aTargets': [-1], 'bSortable': false }
26
            { 'aTargets': [-1], 'bSortable': false }
26
        ]
27
        ]
Lines 87-93 $(document).ready(function() { Link Here
87
                        <table class="baskets">
88
                        <table class="baskets">
88
                            <thead>
89
                            <thead>
89
                                <tr>
90
                                <tr>
90
                                    <th>Basket (#)</th>
91
                                    <th>N°</th>
92
                                    <th>Name</th>
91
                                    <th>Item count</th>
93
                                    <th>Item count</th>
92
                                    <th>Biblio count</th>
94
                                    <th>Biblio count</th>
93
                                    <th>Items expected</th>
95
                                    <th>Items expected</th>
Lines 103-109 $(document).ready(function() { Link Here
103
                                    [% ELSE %]
105
                                    [% ELSE %]
104
                                        <tr>
106
                                        <tr>
105
                                    [% END %]
107
                                    [% END %]
106
                                        <td>[% basket.basketname %] (#[% basket.basketno %])</td>
108
                                        <td>[% basket.basketno %]</td>
109
                                        <td>[% basket.basketname %]</td>
107
                                        <td>[% basket.total_items %]</td>
110
                                        <td>[% basket.total_items %]</td>
108
                                        <td>[% basket.total_biblios %]</td>
111
                                        <td>[% basket.total_biblios %]</td>
109
                                        <td>[% basket.expected_items %]</td>
112
                                        <td>[% basket.expected_items %]</td>
110
- 

Return to bug 9685