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 928-933 function verify_images() { Link Here
928
    <table id="orders">
928
    <table id="orders">
929
      <thead>
929
      <thead>
930
        <tr>
930
        <tr>
931
          <th>Vendor</th>
931
          <th>Basket group</th>
932
          <th>Basket group</th>
932
          <th>Basket</th>
933
          <th>Basket</th>
933
          <th>Order number</th>
934
          <th>Order number</th>
Lines 941-946 function verify_images() { Link Here
941
      [% FOR order IN orders %]
942
      [% FOR order IN orders %]
942
          <tr>
943
          <tr>
943
            <td>
944
            <td>
945
            [% IF (order.id) %]
946
                [% order.name %]
947
            [% END %]
948
            </td>
949
            <td>
944
            [% IF (order.basketgroupid) %]
950
            [% IF (order.basketgroupid) %]
945
                [% IF CAN_user_acquisition_group_manage %]
951
                [% IF CAN_user_acquisition_group_manage %]
946
                    <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&booksellerid=[% order.id %]&basketgroupid=[% order.basketgroupid %]">[% order.groupname %] ([% order.basketgroupid %])</a>
952
                    <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&booksellerid=[% order.id %]&basketgroupid=[% order.basketgroupid %]">[% order.groupname %] ([% order.basketgroupid %])</a>
Lines 966-972 function verify_images() { Link Here
966
                [% CASE 'cancelled' %]Cancelled
972
                [% CASE 'cancelled' %]Cancelled
967
              [% END %]
973
              [% END %]
968
            </td>
974
            </td>
969
            <td>[% order.quantity %]</th>
975
            <td>[% order.quantity %]</td>
970
          </tr>
976
          </tr>
971
      [% END %]
977
      [% END %]
972
      </tbody>
978
      </tbody>
973
- 

Return to bug 13962