Bug 26352: (QA follow-up) Add additional tests
[koha.git] / Koha / Suggestion.pm
1 package Koha::Suggestion;
2
3 # Copyright ByWater Solutions 2015
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22
23 use Koha::Database;
24 use Koha::DateUtils qw( dt_from_string );
25 use Koha::Patrons;
26
27 use base qw(Koha::Object);
28
29 =head1 NAME
30
31 Koha::Suggestion - Koha Suggestion object class
32
33 =head1 API
34
35 =head2 Class methods
36
37 =cut
38
39 =head3 store
40
41 Override the default store behavior so that new suggestions have
42 a suggesteddate of today
43
44 =cut
45
46 sub store {
47     my ($self) = @_;
48
49     unless ( $self->suggesteddate() ) {
50         $self->suggesteddate( dt_from_string()->ymd );
51     }
52
53     return $self->SUPER::store();
54 }
55
56 =head3 suggester
57
58     my $patron = $suggestion->suggester
59
60 Returns the I<Koha::Patron> for the suggestion generator. I<undef> is
61 returned if no suggester is linked.
62
63 =cut
64
65 sub suggester {
66     my ($self) = @_;
67
68     my $suggester_rs = $self->_result->suggester;
69     return unless $suggester_rs;
70     return Koha::Patron->_new_from_dbic($suggester_rs);
71 }
72
73 =head3 manager
74
75 my $manager = $suggestion->manager;
76
77 Returns the manager of the suggestion (Koha::Patron for managedby field)
78
79 =cut
80
81 sub manager {
82     my ($self) = @_;
83     my $manager_rs = $self->_result->managedby;
84     return unless $manager_rs;
85     return Koha::Patron->_new_from_dbic($manager_rs);
86 }
87
88 =head3 rejecter
89
90 my $rejecter = $suggestion->rejecter;
91
92 Returns the rejecter of the suggestion (Koha::Patron for rejectebby field)
93
94 =cut
95
96 sub rejecter {
97     my ($self) = @_;
98     my $rejecter_rs = $self->_result->managedby;
99     return unless $rejecter_rs;
100     return Koha::Patron->_new_from_dbic($rejecter_rs);
101 }
102
103 =head3 last_modifier
104
105 my $last_modifier = $suggestion->last_modifier;
106
107 Returns the librarian who last modified the suggestion (Koha::Patron for lastmodificationby field)
108
109 =cut
110
111 sub last_modifier {
112     my ($self) = @_;
113     my $last_modifier_rs = $self->_result->managedby;
114     return unless $last_modifier_rs;
115     return Koha::Patron->_new_from_dbic($last_modifier_rs);
116 }
117
118 =head3 fund
119
120 my $fund = $suggestion->fund;
121
122 Return the fund associated to the suggestion
123
124 =cut
125
126 sub fund {
127     my ($self) = @_;
128     my $fund_rs = $self->_result->budgetid;
129     return unless $fund_rs;
130     return Koha::Acquisition::Fund->_new_from_dbic($fund_rs);
131 }
132
133 =head3 type
134
135 =cut
136
137 sub _type {
138     return 'Suggestion';
139 }
140
141 =head1 AUTHOR
142
143 Kyle M Hall <kyle@bywatersolutions.com>
144
145 =cut
146
147 1;