http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12404 --- Comment #14 from Jonathan Druart <jonathan.druart@biblibre.com> --- (In reply to Frédéric Demians from comment #13)
For me, there is a design error in you dev. You send to TT a representation of MARC record which is not correct. You loose the field order in the record, and subfields order inside each field. The fields object sent to TT is a hashref of arrayref of hashref of array. The valid representation is an arrayref (1 per tag) of arrayref (1 per subfield) of arrayref (1 per pair letter/value).
It's easier to manipulate hashref than arrayref in this case. If you want to access to the $b subfield, you don't need to process all subfields. Could you give me an where this structure would be a problem for a CSV export? -- You are receiving this mail because: You are watching all bug changes.