Lines 461-467
$sth2->execute($language, $branch);
Link Here
|
461 |
|
461 |
|
462 |
while (my $row = $sth2->fetchrow_hashref) { |
462 |
while (my $row = $sth2->fetchrow_hashref) { |
463 |
$row->{'current_branch'} ||= $row->{'branchcode'}; |
463 |
$row->{'current_branch'} ||= $row->{'branchcode'}; |
464 |
$row->{translated_description} ||= $row->{translated_description}; |
464 |
$row->{humanitemtype} ||= $row->{itemtype}; |
465 |
$row->{default_translated_description} = 1 if $row->{humanitemtype} eq '*'; |
465 |
$row->{default_translated_description} = 1 if $row->{humanitemtype} eq '*'; |
466 |
$row->{'humancategorycode'} ||= $row->{'categorycode'}; |
466 |
$row->{'humancategorycode'} ||= $row->{'categorycode'}; |
467 |
$row->{'default_humancategorycode'} = 1 if $row->{'humancategorycode'} eq '*'; |
467 |
$row->{'default_humancategorycode'} = 1 if $row->{'humancategorycode'} eq '*'; |
468 |
- |
|
|