Lines 376-381
my $sth2 = $dbh->prepare("
Link Here
|
376 |
$sth2->execute($branch); |
376 |
$sth2->execute($branch); |
377 |
|
377 |
|
378 |
while (my $row = $sth2->fetchrow_hashref) { |
378 |
while (my $row = $sth2->fetchrow_hashref) { |
|
|
379 |
$row->{'current_branch'} ||= $row->{'branchcode'}; |
379 |
$row->{'humanitemtype'} ||= $row->{'itemtype'}; |
380 |
$row->{'humanitemtype'} ||= $row->{'itemtype'}; |
380 |
$row->{'default_humanitemtype'} = 1 if $row->{'humanitemtype'} eq '*'; |
381 |
$row->{'default_humanitemtype'} = 1 if $row->{'humanitemtype'} eq '*'; |
381 |
$row->{'humancategorycode'} ||= $row->{'categorycode'}; |
382 |
$row->{'humancategorycode'} ||= $row->{'categorycode'}; |
382 |
- |
|
|