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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-4 / +9 lines)
Lines 295-303 function verify_images() { Link Here
295
                'sDom': 't',
295
                'sDom': 't',
296
                'bPaginate': false,
296
                'bPaginate': false,
297
                'bAutoWidth': false,
297
                'bAutoWidth': false,
298
                "aaSorting": [[ 3, "desc" ]],
298
                "aaSorting": [[ 4, "desc" ]],
299
                "aoColumnDefs": [
299
                "aoColumnDefs": [
300
                    { "aTargets": [ 3, 4 ], "sType": "title-string" }
300
                    { "aTargets": [ 4, 5 ], "sType": "title-string" }
301
                ]
301
                ]
302
            }));
302
            }));
303
303
Lines 932-937 function verify_images() { Link Here
932
    <table id="orders">
932
    <table id="orders">
933
      <thead>
933
      <thead>
934
        <tr>
934
        <tr>
935
          <th>Vendor</th>
935
          <th>Basket group</th>
936
          <th>Basket group</th>
936
          <th>Basket</th>
937
          <th>Basket</th>
937
          <th>Order number</th>
938
          <th>Order number</th>
Lines 945-950 function verify_images() { Link Here
945
      [% FOR order IN orders %]
946
      [% FOR order IN orders %]
946
          <tr>
947
          <tr>
947
            <td>
948
            <td>
949
            [% IF (order.id) %]
950
                [% order.name %]
951
            [% END %]
952
            </td>
953
            <td>
948
            [% IF (order.basketgroupid) %]
954
            [% IF (order.basketgroupid) %]
949
                [% IF CAN_user_acquisition_group_manage %]
955
                [% IF CAN_user_acquisition_group_manage %]
950
                    <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&booksellerid=[% order.id %]&basketgroupid=[% order.basketgroupid %]">[% order.groupname %] ([% order.basketgroupid %])</a>
956
                    <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&booksellerid=[% order.id %]&basketgroupid=[% order.basketgroupid %]">[% order.groupname %] ([% order.basketgroupid %])</a>
Lines 970-976 function verify_images() { Link Here
970
                [% CASE 'cancelled' %]Cancelled
976
                [% CASE 'cancelled' %]Cancelled
971
              [% END %]
977
              [% END %]
972
            </td>
978
            </td>
973
            <td>[% order.quantity %]</th>
979
            <td>[% order.quantity %]</td>
974
          </tr>
980
          </tr>
975
      [% END %]
981
      [% END %]
976
      </tbody>
982
      </tbody>
977
- 

Return to bug 13962