[Bug 16914] New: Export csv in item search, exports all items in one line
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Bug ID: 16914 Summary: Export csv in item search, exports all items in one line Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Staff Client Assignee: koha-bugs@lists.koha-community.org Reporter: hagud@orex.es QA Contact: testopia@bugs.koha-community.org CC: gmcharlt@gmail.com We have discovered thant when you try to export in csv (koha 3.22.7) in translated interface (es-ES and ca-ES) all items are located in just one file This is because a problem with a file itemsearch_item.csv that it doesn't include the order to break line for each item (at least is how we have fixed) For reproduce the error 1. Go to staff 2. Go to advance search -- item search 3. do whatever search and select csv to export 4. open with any textedior sudo diff /usr/share/koha/intranet/htdocs/intranet-tmpl/prog/es-ES/includes/catalogue/itemsearch_item.csv.inc /usr/share/koha/intranet/htdocs/intranet-tmpl/prog/es-ES/includes/catalogue/itemsearch_item.csv.inc-original < [%- USE Branches -%] < [%- USE Koha -%] < [%- biblio = item.biblio -%] < [%- biblioitem = item.biblioitem -%] < "[% biblio.title |html %] [% IF ( Koha.Preference( 'marcflavour' ) == 'UNIMARC' && biblio.author ) %]by [% END %][% biblio.author |html %]", "[% (biblioitem.publicationyear || biblio.copyrightdate) |html %]", "[% biblioitem.publishercode |html %]", "[% biblioitem.collectiontitle |html %]", "[% item.barcode |html %]", "[% item.itemcallnumber |html %]", "[% Branches.GetName(item.homebranch) |html %]", "[% Branches.GetName(item.holdingbranch) |html %]", "[% item.location |html %]", "[% item.stocknumber |html %]", "[% item.status |html %]", "[% (item.issues || 0) |html %]"[% INCLUDE 'empty_line.inc' %] ---
[%- USE Branches -%] [%- USE Koha -%] [%- biblio = item.biblio -%] [%- biblioitem = item.biblioitem -%] "[% biblio.title |html %] [% IF ( Koha.Preference( 'marcflavour' ) == 'UNIMARC' && biblio.author ) %]por [% END %][% biblio.author |html %]", "[% (biblioitem.publicationyear || biblio.copyrightdate) |html %]", "[% biblioitem.publishercode |html %]", "[% biblioitem.collectiontitle |html %]", "[% item.barcode |html %]", "[% item.itemcallnumber |html %]", "[% Branches.GetName(item.homebranch) |html %]", "[% Branches.GetName(item.holdingbranch) |html %]", "[% item.location |html %]", "[% item.stocknumber |html %]", "[% item.status |html %]", "[% (item.issues || 0) |html %]"[% INCLUDE 'empty_line.inc' %] \ No newline at end of file
-- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #1 from Josef Moravec <josef.moravec@gmail.com> --- Created attachment 57120 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=57120&action=edit Bug 16914: Insert end of line in CSV export of item search in translated templates Test plan: 0) Do not apply the patch 1) Install any translation 2) Go to item search and choose Output to be CSV 3) Search for at least 2 items in result set, open CSV in text editor -> in english, everything is ok -> in other languages are all data on one line 4) Apply the patch 5) Repeat steps 2 and 3, CSV should look OK either in english and other languages -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Josef Moravec <josef.moravec@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |josef.moravec@gmail.com Status|NEW |Needs Signoff Assignee|koha-bugs@lists.koha-commun |josef.moravec@gmail.com |ity.org | Version|unspecified |master --- Comment #2 from Josef Moravec <josef.moravec@gmail.com> --- I 've tried a quick patch -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Fridolin SOMERS <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers@biblibre.co | |m Severity|enhancement |normal --- Comment #3 from Fridolin SOMERS <fridolin.somers@biblibre.com> --- This is a bug, not enhancement. I also found it. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Fridolin SOMERS <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |14264 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14264 [Bug 14264] Export of CSV from late orders form does only work in English -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #4 from Fridolin SOMERS <fridolin.somers@biblibre.com> --- Bug 14264 managed export of late orders -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Fridolin SOMERS <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |ASSIGNED --- Comment #5 from Fridolin SOMERS <fridolin.somers@biblibre.com> --- (In reply to Josef Moravec from comment #1)
Created attachment 57120 [details] [review] Bug 16914: Insert end of line in CSV export of item search in translated templates
Test plan: 0) Do not apply the patch 1) Install any translation 2) Go to item search and choose Output to be CSV 3) Search for at least 2 items in result set, open CSV in text editor -> in english, everything is ok -> in other languages are all data on one line 4) Apply the patch 5) Repeat steps 2 and 3, CSV should look OK either in english and other languages
Nice try but this does not correct the bug. It only works because when you change the "en" file itemsearch_item.csv.inc, it will not be translated. I've tryed to add translation update and install after 4) and the bug is still there. I think problem comes from the empty_line.inc : wc -l koha-tmpl/intranet-tmpl/prog/en/includes/empty_line.inc 0 koha-tmpl/intranet-tmpl/prog/en/includes/empty_line.inc It is really empty, it should contain a line feed. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Fridolin SOMERS <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |Needs Signoff Patch complexity|--- |Trivial patch -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #6 from Fridolin SOMERS <fridolin.somers@biblibre.com> --- Created attachment 57388 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=57388&action=edit Bug 16914 - Export csv in item search, exports all items in one line - alternate Translation sets all TT vars on one line. That is why empty_line.inc whas introduced. But this file does not contain a line feed, it is realy empty. This patch adds a line feed in empty_line.inc. Test plan: 0) Do not apply the patch 1) Install any translation 2) Go to item search and choose Output to be CSV 3) Search for at least 2 items in result set, open CSV in text editor -> in english, everything is ok -> in other languages are all data on one line 4) Apply the patch 5) Repeat steps 1, 2 and 3, CSV should look OK either in english and other languages 6) Check it does not break Bug 14264 correction -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Fridolin SOMERS <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #57120|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #7 from Fridolin SOMERS <fridolin.somers@biblibre.com> --- Here is my alternate patch. Note to run also Bug 14264 test plan. To view the file empty_line.inc, do not use VIM, it will show no difference between empty and only a line feed. Use word count : wc -l koha-tmpl/intranet-tmpl/prog/en/includes/empty_line.inc 1 koha-tmpl/intranet-tmpl/prog/en/includes/empty_line.inc @Josef Moravec : If you could test this it would be great. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #8 from Josef Moravec <josef.moravec@gmail.com> --- I tried to test: this approach works for me, you were right... but I have problem with git-bz - the downloaded and applied patch doesn't make the desired change... What do you think about the solution similar to ICS export in OPAC - see bug 17322? -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |katrin.fischer@bsz-bw.de --- Comment #9 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- This is a bad bug, the export is an important feature of the item search. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |frederic@tamil.fr Component|Staff Client |I18N/L10N Severity|normal |major -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Jonathan Druart <jonathan.druart@bugs.koha-community.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart@bugs.koha-c | |ommunity.org -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 M. Tompsett <mtompset@hotmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mtompset@hotmail.com --- Comment #10 from M. Tompsett <mtompset@hotmail.com> --- I attempted to apply this on the kohadevbox and it didn't change the file size, even though this is supposed to add a line feed at least. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA --- Comment #11 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Git applies the patch, so there should be an existing change. But it doesn't fix the problem - maybe we need to apply this with some special setting? -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #57388|0 |1 is obsolete| | --- Comment #12 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Created attachment 58380 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=58380&action=edit Bug 16914 - Export csv in item search, exports all items in one line - alternate-alternate Test plan: 0) Do not apply the patch 1) Install any translation 2) Go to item search and choose Output to be CSV 3) Search for at least 2 items in result set, open CSV in text editor -> in english, everything is ok -> in other languages are all data on one line 4) Apply the patch 5) Repeat steps 1, 2 and 3, CSV should look OK either in english and other languages 6) Check it does not break Bug 14264 correction -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #13 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- With this patch German and English exporting of late orders AND item search results appears to be ok. (see also bug 17795) -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #58380|0 |1 is obsolete| | --- Comment #14 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Created attachment 58396 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=58396&action=edit Bug 16914: Rely on TT for newlines The translation scripts have an historical tendency to chomp newlines and we introduced an empty_line.inc file to force newlines when building CSV output out of our templates (in item search and late orders). This patch makes the mentioned templates use TT ability to force newlines plus some misuses of the 'minus' sign. Test plan: - Apply the patch - Do an item search that returns more than one result - Export as CSV => SUCCESS: The CSV file is correctly formed. - Install any translation: $ sudo koha-shell kohadev k$ cd kohaclone/misc/translator k$ perl translate install <chosen language> - Enable <chosen language> (e.g. es-ES) - Repeat the item search - Export as CSV => SUCCESS: The CSV file is correctly formed in your chosen language. - Have more than one late orders (bummer) - Go to late orders - Choose them - Export as CSV (in english) => SUCCESS: The CSV file is correctly formed. - Switch language - Go to late orders - Choose them - Export as CSV (in english) => SUCCESS: The CSV file is correctly formed in your chosen language. - Sign off :-D Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #15 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Created attachment 58397 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=58397&action=edit Bug 16914: Remove unused empty_lines.inc file Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #16 from M. Tompsett <mtompset@hotmail.com> --- While the concept is good. I'm suspect of the missing -'s and added +'s in all the right spots. And my kohadevbox hates me, so testing is going horribly. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #17 from M. Tompsett <mtompset@hotmail.com> --- (In reply to M. Tompsett from comment #16)
While the concept is good. I'm suspect of the missing -'s and added +'s in all the right spots. And my kohadevbox hates me, so testing is going horribly.
I couldn't get my kohadevbox nor my non-kohadevbox to output fr-FR search results on a new line in the CSV. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #18 from M. Tompsett <mtompset@hotmail.com> --- (In reply to M. Tompsett from comment #17)
(In reply to M. Tompsett from comment #16)
While the concept is good. I'm suspect of the missing -'s and added +'s in all the right spots. And my kohadevbox hates me, so testing is going horribly.
I couldn't get my kohadevbox nor my non-kohadevbox to output fr-FR search results on a new line in the CSV.
DOH! Translation issues! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #58396|0 |1 is obsolete| | Attachment #58397|0 |1 is obsolete| | --- Comment #19 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Created attachment 58400 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=58400&action=edit Bug 16914: Rely on TT for newlines The translation scripts have an historical tendency to chomp newlines and we introduced an empty_line.inc file to force newlines when building CSV output out of our templates (in item search and late orders). This patch makes the mentioned templates use TT ability to force newlines plus some misuses of the 'minus' sign. Test plan: - Apply the patch - Do an item search that returns more than one result - Export as CSV => SUCCESS: The CSV file is correctly formed. - Install any translation: $ sudo koha-shell kohadev k$ cd kohaclone/misc/translator k$ perl translate install <chosen language> - Enable <chosen language> (e.g. es-ES) - Repeat the item search - Export as CSV => SUCCESS: The CSV file is correctly formed in your chosen language. - Have more than one late orders (bummer) - Go to late orders - Choose them - Export as CSV (in english) => SUCCESS: The CSV file is correctly formed. - Switch language - Go to late orders - Choose them - Export as CSV (in english) => SUCCESS: The CSV file is correctly formed in your chosen language. - Sign off :-D Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #20 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Created attachment 58401 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=58401&action=edit Bug 16914: Remove unused empty_lines.inc file Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Nick Clemens <nick@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Nick Clemens <nick@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #58400|0 |1 is obsolete| | --- Comment #21 from Nick Clemens <nick@bywatersolutions.com> --- Created attachment 58402 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=58402&action=edit Bug 16914: Rely on TT for newlines The translation scripts have an historical tendency to chomp newlines and we introduced an empty_line.inc file to force newlines when building CSV output out of our templates (in item search and late orders). This patch makes the mentioned templates use TT ability to force newlines plus some misuses of the 'minus' sign. Test plan: - Apply the patch - Do an item search that returns more than one result - Export as CSV => SUCCESS: The CSV file is correctly formed. - Install any translation: $ sudo koha-shell kohadev k$ cd kohaclone/misc/translator k$ perl translate install <chosen language> - Enable <chosen language> (e.g. es-ES) - Repeat the item search - Export as CSV => SUCCESS: The CSV file is correctly formed in your chosen language. - Have more than one late orders (bummer) - Go to late orders - Choose them - Export as CSV (in english) => SUCCESS: The CSV file is correctly formed. - Switch language - Go to late orders - Choose them - Export as CSV (in english) => SUCCESS: The CSV file is correctly formed in your chosen language. - Sign off :-D Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Nick Clemens <nick@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #58401|0 |1 is obsolete| | --- Comment #22 from Nick Clemens <nick@bywatersolutions.com> --- Created attachment 58403 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=58403&action=edit Bug 16914: Remove unused empty_lines.inc file Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Brendan Gallagher <brendan@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to Master CC| |brendan@bywatersolutions.co | |m --- Comment #23 from Brendan Gallagher <brendan@bywatersolutions.com> --- Pushed to Master - Should be in the 17.05 release - Thanks! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to Master |Pushed to Stable --- Comment #24 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- These patches have been pushed to 16.11.x, will be in 16.11.01. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Julian Maurice <julian.maurice@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |julian.maurice@biblibre.com --- Comment #25 from Julian Maurice <julian.maurice@biblibre.com> --- Pushed to 3.22.x for 3.22.14 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #26 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- *** Bug 17795 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Mason James <mtj@kohaaloha.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mtj@kohaaloha.com --- Comment #27 from Mason James <mtj@kohaaloha.com> --- Pushed to 16.05.x, for 16.05.06 release -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #28 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- It appears that if you actually translate the file by having a translated version of the string %s %s %s %s "%s %svon %s%s", "%s", "%s", "%s", "%s", "%s", "%s", "%s", "%s", "%s", "%s", "%s" then the csv export is broken again because the line breaks in itemsearch_item.csv.inc get destroyed. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #29 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Easiest way to test: Install German, look for the string (search for the file name), mark it as 'fuzzy' - Export works, remove 'fuzzy' - export is broken. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |18331 Referenced Bugs: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18331 [Bug 18331] Export csv in item search, exports all items in one line (see Bug 16914) -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16914 --- Comment #30 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Filed bug 18331 for this. -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org