|
Lines 76-82
my $article_request = Koha::ArticleRequest->new(
Link Here
|
| 76 |
itemnumber => $item->itemnumber, |
76 |
itemnumber => $item->itemnumber, |
| 77 |
title => $article_request_title, |
77 |
title => $article_request_title, |
| 78 |
} |
78 |
} |
| 79 |
)->store(); |
79 |
)->request(); |
| 80 |
|
80 |
|
| 81 |
my $notify_message = Koha::Notice::Messages->search->next; |
81 |
my $notify_message = Koha::Notice::Messages->search->next; |
| 82 |
is( $notify_message->letter_code, "AR_".Koha::ArticleRequest::Status::Requested); |
82 |
is( $notify_message->letter_code, "AR_".Koha::ArticleRequest::Status::Requested); |
| 83 |
- |
|
|