View | Details | Raw Unified | Return to bug 39711
Collapse All | Expand All

(-)a/Koha/Acquisition/Contract.pm (-14 lines)
Lines 31-49 Koha::Acquisition::Contract - Koha Acquisition Contract Object class Link Here
31
31
32
=cut
32
=cut
33
33
34
=head3 store
35
36
=cut
37
38
sub store {
39
    my ($self) = @_;
40
41
    Koha::Exceptions::MissingParameter->throw("Missing mandatory parameter: booksellerid")
42
        unless $self->booksellerid;
43
44
    return $self->SUPER::store();
45
}
46
47
=head3 _type
34
=head3 _type
48
35
49
=cut
36
=cut
50
- 

Return to bug 39711