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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-5 / +14 lines)
Lines 261-269 function verify_images() { Link Here
261
                'sDom': 't',
261
                'sDom': 't',
262
                'bPaginate': false,
262
                'bPaginate': false,
263
                'bAutoWidth': false,
263
                'bAutoWidth': false,
264
                "aaSorting": [[ 2, "desc" ]],
264
                "aaSorting": [[ 3, "desc" ]],
265
                "aoColumnDefs": [
265
                "aoColumnDefs": [
266
                    { "aTargets": [ 2, 3 ], "sType": "title-string" }
266
                    { "aTargets": [ 3, 4 ], "sType": "title-string" }
267
                ]
267
                ]
268
            }));
268
            }));
269
269
Lines 831-836 function verify_images() { Link Here
831
    <table id="orders">
831
    <table id="orders">
832
      <thead>
832
      <thead>
833
        <tr>
833
        <tr>
834
          <th>Basket group</th>
834
          <th>Basket</th>
835
          <th>Basket</th>
835
          <th>Order number</th>
836
          <th>Order number</th>
836
          <th>Creation date</th>
837
          <th>Creation date</th>
Lines 842-851 function verify_images() { Link Here
842
      <tbody>
843
      <tbody>
843
      [% FOR order IN orders %]
844
      [% FOR order IN orders %]
844
          <tr>
845
          <tr>
846
            <td>
847
            [% IF (order.basketgroupid) %]
848
                [% IF CAN_user_acquisition_group_manage %]
849
                    <a href="/cgi-bin/koha/acqui/basketgroup.pl?op=add&booksellerid=[% order.id %]&basketgroupid=[% order.basketgroupid %]">[% order.groupname %] ([% order.basketgroupid %])</a>
850
                [% ELSE %]
851
                    [% order.groupname %] ([% order.basketgroupid %])
852
                [% END %]
853
            [% END %]
854
            </td>
845
            <td>[% IF CAN_user_acquisition_order_manage %]
855
            <td>[% IF CAN_user_acquisition_order_manage %]
846
                <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% order.basketno %]">[% order.basketname %]</a>
856
                <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% order.basketno %]">[% order.basketname %] ([% order.basketno %])</a>
847
            [% ELSE %]
857
            [% ELSE %]
848
                [% order.basketname %]
858
                [% order.basketname %] ([% order.basketno %])
849
            [% END %]</td>
859
            [% END %]</td>
850
            <td>[% order.ordernumber %]</td>
860
            <td>[% order.ordernumber %]</td>
851
            <td><span title="[% order.creationdate %]">[% order.creationdate | $KohaDates%]</span></td>
861
            <td><span title="[% order.creationdate %]">[% order.creationdate | $KohaDates%]</span></td>
852
- 

Return to bug 11435