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

(-)a/Koha/Library.pm (-1 / +12 lines)
Lines 77-82 sub library_groups { Link Here
77
    return Koha::Library::Groups->_new_from_dbic( $rs );
77
    return Koha::Library::Groups->_new_from_dbic( $rs );
78
}
78
}
79
79
80
=head3 cash_registers
81
82
Return Cash::Registers associated with this Library
83
84
=cut
85
86
sub cash_registers {
87
    my ( $self ) = @_;
88
    my $rs = $self->_result->cash_registers;
89
    return Koha::Cash::Registers->_new_from_dbic( $rs );
90
}
91
80
=head2 Internal methods
92
=head2 Internal methods
81
93
82
=head3 _type
94
=head3 _type
83
- 

Return to bug 23321