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

(-)a/Koha/Acquisition/Order.pm (-1 / +13 lines)
Lines 32-37 Koha::Acquisition::Order Object class Link Here
32
32
33
=head2 Class Methods
33
=head2 Class Methods
34
34
35
=head3 new
36
37
Overloaded I<new> method for backwards compatibility.
38
35
=cut
39
=cut
36
40
37
sub new {
41
sub new {
Lines 45-50 sub new { Link Here
45
    return $self->SUPER::new($values);
49
    return $self->SUPER::new($values);
46
}
50
}
47
51
52
=head3 store
53
54
Overloaded I<store> method for backwards compatibility.
55
56
=cut
57
48
sub store {
58
sub store {
49
    my ($self) = @_;
59
    my ($self) = @_;
50
60
Lines 88-94 sub add_item { Link Here
88
    $rs->create({ ordernumber => $self->ordernumber, itemnumber => $itemnumber });
98
    $rs->create({ ordernumber => $self->ordernumber, itemnumber => $itemnumber });
89
}
99
}
90
100
91
=head3 _type
101
=head2 Internal methods
102
103
=head3 _type (internal)
92
104
93
=cut
105
=cut
94
106
(-)a/Koha/Acquisition/Orders.pm (-5 / +6 lines)
Lines 31-41 Koha::Acquisition::Orders object set class Link Here
31
31
32
=head1 API
32
=head1 API
33
33
34
=head2 Class Methods
34
=head2 Internal methods
35
35
36
=cut
36
=head3 _type (internal)
37
38
=head3 type
39
37
40
=cut
38
=cut
41
39
Lines 43-48 sub _type { Link Here
43
    return 'Aqorder';
41
    return 'Aqorder';
44
}
42
}
45
43
44
=head3 object_class (internal)
45
46
=cut
47
46
sub object_class {
48
sub object_class {
47
    return 'Koha::Acquisition::Order';
49
    return 'Koha::Acquisition::Order';
48
}
50
}
49
- 

Return to bug 19256