Bug 10854: (follow-up) language tweaks
- adjust description of the default profile - adjust description of the sample data SQL - adjust description of the download link Signed-off-by: Galen Charlton <gmc@esilibrary.com>
This commit is contained in:
parent
21b54e7da7
commit
412995b522
4 changed files with 10 additions and 6 deletions
|
@ -1 +1,2 @@
|
|||
INSERT IGNORE INTO export_format( profile, description, content, csv_separator, type ) VALUES ( "issues to claim", "default csv export for issues claims", "SUPPLIER=aqbooksellers.name|TITLE=subscription.title|ISSUE NUMBER=serial.serialseq|LATE SINCE=serial.planneddate", ",", "sql" );
|
||||
INSERT IGNORE INTO export_format( profile, description, content, csv_separator, type )
|
||||
VALUES ( "issues to claim", "default CSV export for serial issue claims", "SUPPLIER=aqbooksellers.name|TITLE=subscription.title|ISSUE NUMBER=serial.serialseq|LATE SINCE=serial.planneddate", ",", "sql" );
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
csv profiles
|
||||
CSV profiles
|
||||
|
||||
issues to claim: Bug 10854 allows to choose a csv profile for exporting claims. This profile is the default one.
|
||||
Default CSV export profiles; including one for exporting serial claims.
|
||||
|
|
|
@ -7220,9 +7220,12 @@ if ( CheckVersion($DBversion) ) {
|
|||
$DBversion = "3.13.00.XXX";
|
||||
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
|
||||
$dbh->do(q{
|
||||
INSERT IGNORE INTO export_format( profile, description, content, csv_separator, type ) VALUES ( "issues to claim", "default csv export for issues claims", "SUPPLIER=aqbooksellers.name|TITLE=subscription.title|ISSUE NUMBER=serial.serialseq|LATE SINCE=serial.planneddate", ",", "sql" )
|
||||
INSERT IGNORE INTO export_format( profile, description, content, csv_separator, type )
|
||||
VALUES ( "issues to claim", "efault CSV export for serial issue claims",
|
||||
"SUPPLIER=aqbooksellers.name|TITLE=subscription.title|ISSUE NUMBER=serial.serialseq|LATE SINCE=serial.planneddate",
|
||||
",", "sql" )
|
||||
});
|
||||
print "Upgrade to $DBversion done (Bug 10854: Add the default csv profile for claiming issues)\n";
|
||||
print "Upgrade to $DBversion done (Bug 10854: Add the default CSV profile for claiming issues)\n";
|
||||
SetVersion($DBversion);
|
||||
}
|
||||
|
||||
|
|
|
@ -305,7 +305,7 @@
|
|||
<option value="[% csv.export_format_id %]">[% csv.profile %]</option>
|
||||
[% END %]
|
||||
</select>
|
||||
<span class="exportSelected"><a id="ExportSelected" href="/cgi-bin/koha/serials/claims.pl">Export selected items data</a></span>
|
||||
<span class="exportSelected"><a id="ExportSelected" href="/cgi-bin/koha/serials/claims.pl">Download selected claims</a></span>
|
||||
[% END %]
|
||||
|
||||
[% IF ( letter ) %]
|
||||
|
|
Loading…
Reference in a new issue