From 0a95ba06f31cd9b648e01047126e2d2a93704209 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 24 Aug 2015 13:19:28 +0100 Subject: [PATCH] Bug 14710: Make the export checkout list export only the checked out item infos This has been introduced by bug 11703. Bug 13190 should have been fixed it. If the pref ExportWithCsvProfile is defined with a MARC CSV profile and it contains item infos to display, only info from the checked out item should be displayed. Test plan: 0/ Don't apply this patch 1/ Create a biblio with 1+ items 2/ Check one of the item out to a patron 3/ Define a CSV profile which contains item fields ("245$a|952$p" for instance) 4/ Export the item (from circ/circulation/pl) using the CSV option Note that the csv contains the barcode from all items 5/ Apply this patch and repeat 4. 6/ Note that the csv contains only the barcode from the checked out item. Signed-off-by: Hector Castro Works as advertised Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js index 485c29216e..358a4d04be 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js @@ -374,7 +374,10 @@ $(document).ready(function() { "bVisible": exports_enabled ? true : false, "bSortable": false, "mDataProp": function ( oObj ) { - return ""; + var s = ""; + + s += ""; + return s; } } ], -- 2.39.2