https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42709 Bug ID: 42709 Summary: Template Toolkit for ACQCLAIM Notice to claim vendors Initiative type: --- Sponsorship --- status: Product: Koha Version: Main Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Notices Assignee: koha-bugs@lists.koha-community.org Reporter: michaela.sieber@kit.edu QA Contact: testopia@bugs.koha-community.org CC: martin.renvoize@openfifth.co.uk Unfortunately, the most important ACQ data cannot be used in this ACQCLAIM letter. Order information are missing. It is therefor not possible to use the FOREACH loop which we use in the ACQORDER Notice. See also Bug 28732. This can be verified by generating the following DUMPER output. % USE Dumper %] [% IF basket || baskets %]<br> aqbasket:<br> singular: basket<br> [% Dumper.dump_html(basket.unblessed) %]<br> plural: baskets<br> [% Dumper.dump_html(baskets.unblessed) %]<br> aqbooksellers:<br> [% END %] [% IF bookseller || booksellers %]<br> aqbooksellers:<br> singular: bookseller<br> [% Dumper.dump_html(bookseller.unblessed) %]<br> plural: booksellers<br> [% Dumper.dump_html(booksellers.unblessed) %]<br> <br> [% END %] [% IF biblio || biblios %]<br> biblio:<br> singular: biblio<br> [% Dumper.dump_html(biblio.unblessed) %]<br> plural: biblios<br> [% Dumper.dump_html(biblios.unblessed) %]<br> [% END %] [% IF biblioitem || biblioitems %]<br> biblioitems:<br> singular: biblioitem<br> [% Dumper.dump_html(biblioitem.unblessed) %]<br> plural: biblioitems<br> [% Dumper.dump_html(biblioitems.unblessed) %]<br> <br> [% END %] [% IF branch || branches %]<br> branches:<br> singular: branch<br> [% Dumper.dump_html(branch.unblessed) %]<br> plural: branches<br> [% Dumper.dump_html(branches.unblessed) %]<br> <br> [% END %] [% IF order || orders %]<br> aqorders:<br> singular: order<br> [% Dumper.dump_html(order.unblessed) %]<br> plural: orders<br> [% Dumper.dump_html(orders.unblessed) %]<br> <br> [% END %] -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.