Lines 1651-1661
sub get_notice {
Link Here
|
1651 |
} |
1651 |
} |
1652 |
my $metastring = join("\n", @metaarray); |
1652 |
my $metastring = join("\n", @metaarray); |
1653 |
|
1653 |
|
1654 |
my $illrequestattributes = {}; |
1654 |
my $illrequestattributes = { |
1655 |
my $attributes = $self->illrequestattributes; |
1655 |
map { $_->type => $_->value } $self->illrequestattributes->as_list |
1656 |
while ( my $attribute = $attributes->next ) { |
1656 |
}; |
1657 |
$illrequestattributes->{$attribute->type} = $attribute->value; |
|
|
1658 |
} |
1659 |
|
1657 |
|
1660 |
my $letter = C4::Letters::GetPreparedLetter( |
1658 |
my $letter = C4::Letters::GetPreparedLetter( |
1661 |
module => 'ill', |
1659 |
module => 'ill', |
1662 |
- |
|
|