@@ -, +, @@ - Search for invoices in the acquisition module - Verify the results table shows the shipment date - Verify that sorting works correctly --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoices.tt @@ -12,7 +12,7 @@ $(document).ready(function() { var resultst = $("#resultst").dataTable($.extend(true, {}, dataTablesDefaults, { bPaginate: false, aoColumnDefs: [ - { "bSortable": false, "aTargets": [1, 8] }, + { "bSortable": false, "aTargets": [1, 9] }, { "bVisible": false, "aTargets": [0] }, { "sType": "title-string", "aTargets" : [ "title-string" ] } ] @@ -106,6 +106,7 @@ $(document).ready(function() {   Invoice no. Vendor + Shipment date Billing date Received biblios Received items @@ -121,6 +122,13 @@ $(document).ready(function() { [% invoice.invoicenumber %] [% invoice.suppliername %] + [% IF invoice.shipmentdate %] + [% invoice.shipmentdate | $KohaDates %] + [% ELSE %] + + [% END %] + + [% IF invoice.billingdate %] [% invoice.billingdate | $KohaDates %] [% ELSE %] --