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

Return to bug 11435