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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt (-8 / +6 lines)
Lines 9-22 Link Here
9
<script type="text/javascript">
9
<script type="text/javascript">
10
//<![CDATA[
10
//<![CDATA[
11
$(document).ready(function() {
11
$(document).ready(function() {
12
    [% IF (dateformat == 'metric') %]
13
        dt_add_type_uk_date();
14
    [% END %]
15
    $("#resultst").dataTable($.extend(true, {}, dataTablesDefaults, {
12
    $("#resultst").dataTable($.extend(true, {}, dataTablesDefaults, {
16
        bInfo: false,
17
        bPaginate: false,
18
        bFilter: false,
19
        sDom: "t",
13
        sDom: "t",
14
        "aoColumns": [
15
            null,null,{ "sType": "title-string" },null,null,null,null
16
        ],
20
        aoColumnDefs: [
17
        aoColumnDefs: [
21
            { "bSortable": false, "aTargets": [6] }
18
            { "bSortable": false, "aTargets": [6] }
22
        ]
19
        ]
Lines 59-65 $(document).ready(function() { Link Here
59
                  <td><a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% invoice.booksellerid %]">[% invoice.suppliername %]</a></td>
56
                  <td><a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% invoice.booksellerid %]">[% invoice.suppliername %]</a></td>
60
                  <td>
57
                  <td>
61
                    [% IF invoice.billingdate %]
58
                    [% IF invoice.billingdate %]
62
                      [% invoice.billingdate | $KohaDates %]
59
                      <span title="[% invoice.billingdate %]">[% invoice.billingdate | $KohaDates %]</span>
60
                    [% ELSE %]
61
                      <span title="0000-00-00"></span>
63
                    [% END %]
62
                    [% END %]
64
                  </td>
63
                  </td>
65
                  <td>[% invoice.receivedbiblios %]</td>
64
                  <td>[% invoice.receivedbiblios %]</td>
66
- 

Return to bug 10794