Bug 13188: Add PatronSelfModificationMandatoryField system preference
[koha.git] / installer / data / mysql / en / optional / csv_profiles.yml
1 ---
2 #
3 #  Copyright 2020 Koha Development Team
4 #
5 #  This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 description:
21   - "CSV profiles"
22   - ""
23   - "Default CSV export profiles; including one for exporting serial claims."
24
25 tables:
26   - export_format:
27       translatable: [ profile, description ]
28       multiline: [ content ]
29       rows:
30         - profile: "issues to claim"
31           description: "Default CSV export for serial issue claims"
32           content:
33             - "SUPPLIER=aqbooksellers.name|TITLE=subscription.title|ISSUE NUMBER=serial.serialseq|LATE SINCE=serial.planneddate"
34           csv_separator: ","
35           type: sql
36           used_for: late_issues
37         - profile: "Late orders (CSV profile)"
38           description: "Default CSV export for late orders"
39           content:
40             - 'Title[% separator %]Author[% separator %]Publication year[% separator %]ISBN[% separator %]Quantity[% separator %]Number of claims'
41             - '[% FOR order IN orders ~%]'
42             - '[%~ SET biblio = order.biblio ~%]'
43             - '"[% biblio.title %]"[% separator ~%]'
44             - '"[% biblio.author %]"[% separator ~%]'
45             - '"[% bibio.biblioitem.publicationyear %]"[% separator ~%]'
46             - '"[% biblio.biblioitem.isbn %]"[% separator ~%]'
47             - '"[% order.quantity%]"[% separator ~%]'
48             - '"[% order.claims.count%][% IF order.claims.count %]([% FOR c IN order.claims %][% c.claimed_on | $KohaDates %][% UNLESS loop.last %], [% END %][% END %])[% END %]"'
49             - '[% END %]'
50           csv_separator: ","
51           type: sql
52           used_for: late_orders