Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEV-615 CRMS New Year prediction report #117

Merged
merged 1 commit into from
Nov 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions bin/newyear.pl
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ sub ProcessCommonwealthProject {
if (defined $new_rights) {
my ($a, $r) = split m/\//, $new_rights;
SubmitNewYearReview($id, $a, $r, 'Commonwealth', $record,
join(',', sort keys %alldates),
join(',', sort keys %predictions));
join(';', sort keys %alldates),
join(';', sort keys %predictions));
}
}
}
Expand Down Expand Up @@ -282,7 +282,7 @@ sub ProcessPubDateProject
}
if (defined $attr && $attr ne $acurr) {
SubmitNewYearReview($id, $attr, 'cdpp', 'Publication Date', $record,
join(',', sort keys %extracted_data), '');
join(';', sort keys %extracted_data), '');
}
}
}
Expand Down Expand Up @@ -366,8 +366,8 @@ sub ProcessCrownCopyrightProject {
if (defined $new_rights) {
my ($a, $r) = split m/\//, $new_rights;
SubmitNewYearReview($id, $a, $r, 'Crown Copyright', $record,
join(',', sort keys %alldates),
join(',', sort keys %predictions));
join(';', sort keys %alldates),
join(';', sort keys %predictions));
}
}
}
Expand Down
Loading