From: Bill Erickson Date: Mon, 23 Apr 2018 16:35:41 +0000 (-0400) Subject: JBAS-1998 College barcodes upper case district code X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b0f3e59b5a751dc75b34f7da2260f517525a94bc;p=working%2FEvergreen.git JBAS-1998 College barcodes upper case district code Signed-off-by: Bill Erickson --- diff --git a/KCLS/utility-scripts/import_students/generate-patrons-from-csv.pl b/KCLS/utility-scripts/import_students/generate-patrons-from-csv.pl index 3a4590af11..ce22ae9671 100755 --- a/KCLS/utility-scripts/import_students/generate-patrons-from-csv.pl +++ b/KCLS/utility-scripts/import_students/generate-patrons-from-csv.pl @@ -294,6 +294,7 @@ sub iterate_csv_rows { $seen{$phash->{student_id}} = 1; $phash->{barcode} = $district_code; + $phash->{barcode} = uc($district_code) if $is_college; $phash->{barcode} .= 't' if $is_teacher; $phash->{barcode} .= $phash->{student_id};