@@ -, +, @@ article_requests table --- Koha/ArticleRequest.pm | 1 + 1 file changed, 1 insertion(+) --- a/Koha/ArticleRequest.pm +++ a/Koha/ArticleRequest.pm @@ -49,6 +49,7 @@ sub open { my ($self) = @_; $self->status(Koha::ArticleRequest::Status::Pending); + $self->SUPER::store(); $self->notify(); return $self; } --