Add Entity lookup.
This commit is contained in:
parent
81b6fcefc1
commit
9b7858843b
1 changed files with 5 additions and 1 deletions
|
@ -101,7 +101,11 @@ while (my $file = readdir $dh) {
|
|||
}
|
||||
|
||||
# Find the ticket number for this intern.
|
||||
|
||||
my $entity = LedgerTagFromTicket($ticket, 'Entity');
|
||||
if (not defined $entity) {
|
||||
print STDERR "\"$file\": \"$ticket\": Skipping: cannot determine Entity from ticket." ;
|
||||
next;
|
||||
}
|
||||
my(@nameComponents) = split(/\s*-\s*/, $name);
|
||||
my(@searchTerms);
|
||||
foreach my $name (@nameComponents) {
|
||||
|
|
Loading…
Reference in a new issue