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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt (-18 / +18 lines)
Lines 18-27 $(document).ready(function() { Link Here
18
        'bFilter': false,
18
        'bFilter': false,
19
        'bInfo': false,
19
        'bInfo': false,
20
        "aaSorting": [[ 1, "asc" ]],
20
        "aaSorting": [[ 1, "asc" ]],
21
        "aoColumns": [
21
        "aoColumnDefs": [
22
            null,null,null,null,null,null,{ "sType": "title-string" },null,{ "sType": "title-string" },null
22
            { "sType": "title-string", "aTargets" : [ "title-string" ] },
23
        ],
23
            { "sType": "title-numeric", "aTargets" : [ "title-numeric" ] },
24
        'aoColumnDefs': [
25
            { 'aTargets': [-1], 'bSortable': false }
24
            { 'aTargets': [-1], 'bSortable': false }
26
        ]
25
        ]
27
    }));
26
    }));
Lines 97-109 $(document).ready(function() { Link Here
97
                                <tr>
96
                                <tr>
98
                                    <th>No.</th>
97
                                    <th>No.</th>
99
                                    <th>Name</th>
98
                                    <th>Name</th>
100
                                    <th>Item count</th>
99
                                    <th class="title-numeric">Item count</th>
101
                                    <th>Biblio count</th>
100
                                    <th class="title-numeric">Biblio count</th>
102
                                    <th>Items expected</th>
101
                                    <th>Items expected</th>
103
                                    <th>Created by</th>
102
                                    <th>Created by</th>
104
                                    <th>Date</th>
103
                                    <th class="title-string">Date</th>
105
                                    <th>Basket group</th>
104
                                    <th>Basket group</th>
106
                                    <th>Closed</th>
105
                                    <th class="title-string">Closed</th>
107
                                    <th>&nbsp;</th>
106
                                    <th>&nbsp;</th>
108
                                </tr>
107
                                </tr>
109
                            </thead>
108
                            </thead>
Lines 117-132 $(document).ready(function() { Link Here
117
                                        <td>[% basket.basketno %]</td>
116
                                        <td>[% basket.basketno %]</td>
118
                                        <td>[% basket.basketname %]</td>
117
                                        <td>[% basket.basketname %]</td>
119
                                        <td>
118
                                        <td>
120
                                            [% basket.total_items %]
119
                                            <span title="[% basket.total_items %]">[% basket.total_items %]
121
                                            [% IF basket.total_items_cancelled %]
120
                                                [% IF basket.total_items_cancelled %]
122
                                                ([% basket.total_items_cancelled %] cancelled)
121
                                                    ([% basket.total_items_cancelled %] cancelled)
123
                                            [% END %]
122
                                                [% END %]
123
                                            </span>
124
                                        </td>
124
                                        </td>
125
                                        <td>
125
                                        <td>
126
                                            [% basket.total_biblios %]
126
                                            <span title="[% basket.total_biblios %]">[% basket.total_biblios %]
127
                                            [% IF basket.total_biblios_cancelled %]
127
                                                [% IF basket.total_biblios_cancelled %]
128
                                                ([% basket.total_biblios_cancelled %] cancelled)
128
                                                    ([% basket.total_biblios_cancelled %] cancelled)
129
                                            [% END %]
129
                                                [% END %]
130
                                            </span>
130
                                        </td>
131
                                        </td>
131
                                        <td>[% basket.expected_items %]</td>
132
                                        <td>[% basket.expected_items %]</td>
132
                                        <td>
133
                                        <td>
Lines 140-146 $(document).ready(function() { Link Here
140
                                            [% IF basketgroup.closed %]
141
                                            [% IF basketgroup.closed %]
141
                                              [% basketgroup.name %] (closed)
142
                                              [% basketgroup.name %] (closed)
142
                                            [% ELSE %]
143
                                            [% ELSE %]
143
                                              <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&booksellerid=[% basket.booksellerid %]&basketgroupid=[% basketgroup.id %]">[% basketgroup.name %]</a>
144
                                              <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&amp;booksellerid=[% basket.booksellerid %]&amp;basketgroupid=[% basketgroup.id %]">[% basketgroup.name %]</a>
144
                                            [% END %]
145
                                            [% END %]
145
                                          [% END %]
146
                                          [% END %]
146
                                        </td>
147
                                        </td>
147
- 

Return to bug 13039