From 0da36977311a7e091df7fb0576dfadaca96b5ecb Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 24 Aug 2015 13:19:28 +0100 Subject: [PATCH] [PASSED QA] 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 --- 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 485c292..358a4d0 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; } } ], -- 1.9.1