1 package Koha
::StockRotationItem
;
3 # Copyright PTFS Europe 2016
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 use DateTime
::Duration
;
25 use Koha
::DateUtils qw
/dt_from_string/;
26 use Koha
::Item
::Transfer
;
28 use Koha
::StockRotationStage
;
30 use base
qw(Koha::Object);
34 StockRotationItem - Koha StockRotationItem Object class
38 StockRotationItem class used primarily by stockrotation .pls and the stock
43 Standard Koha::Objects definitions, and additional methods.
56 return 'Stockrotationitem';
61 my $item = Koha::StockRotationItem->itemnumber;
63 Returns the item associated with the current stock rotation item.
69 my $rs = $self->_result->itemnumber;
70 return Koha
::Item
->_new_from_dbic( $rs );
75 my $stage = Koha::StockRotationItem->stage;
77 Returns the stage associated with the current stock rotation item.
83 my $rs = $self->_result->stage;
84 return Koha
::StockRotationStage
->_new_from_dbic( $rs );
87 =head3 needs_repatriating
89 1|0 = $item->needs_repatriating;
91 Return 1 if this item is currently not at the library it should be at
92 according to our stockrotation plan.
96 sub needs_repatriating
{
98 my ( $item, $stage ) = ( $self->itemnumber, $self->stage );
99 if ( $self->itemnumber->get_transfer ) {
100 return 0; # We're in transit.
101 } elsif ( $item->holdingbranch ne $stage->branchcode_id
102 || $item->homebranch ne $stage->branchcode_id ) {
103 return 1; # We're not where we should be.
105 return 0; # We're at home.
109 =head3 needs_advancing
111 1|0 = $item->needs_advancing;
113 Return 1 if this item is ready to be moved on to the next stage in its rota.
117 sub needs_advancing
{
119 return 0 if $self->itemnumber->get_transfer; # intransfer: don't advance.
120 return 1 if $self->fresh; # Just on rota: advance.
121 my $completed = $self->itemnumber->_result->branchtransfers->search(
122 { 'comments' => "StockrotationAdvance" },
123 { order_by
=> { -desc
=> 'datearrived' } }
125 # Do maths on whether we need to be moved on.
126 if ( $completed->count ) {
127 my $arrival = dt_from_string
(
128 $completed->next->datearrived, 'iso'
130 my $duration = DateTime
::Duration
131 ->new( days
=> $self->stage->duration );
132 if ( $arrival + $duration le DateTime
->now ) {
138 die "We have no historical branch transfer; this should not have happened!";
144 1|0 = $sritem->repatriate
146 Put this item into branch transfer with 'StockrotationCorrection' comment, so
147 that it may return to it's stage.branch to continue its rota as normal.
152 my ( $self, $msg ) = @_;
153 # Create the transfer.
154 my $transfer_stored = Koha
::Item
::Transfer
->new({
155 'itemnumber' => $self->itemnumber_id,
156 'frombranch' => $self->itemnumber->holdingbranch,
157 'tobranch' => $self->stage->branchcode_id,
158 'datesent' => DateTime
->now,
159 'comments' => $msg || "StockrotationRepatriation",
161 $self->itemnumber->homebranch($self->stage->branchcode_id)->store;
162 return $transfer_stored;
167 1|0 = $sritem->advance;
169 Put this item into branch transfer with 'StockrotationAdvance' comment, to
170 transfer it to the next stage in its rota.
172 If this is the last stage in the rota and this rota is cyclical, we return to
173 the first stage. If it is not cyclical, then we delete this
176 If this item is 'indemand', and advance is invoked, we disable 'indemand' and
177 advance the item as per usual.
183 my $item = $self->itemnumber;
184 my $transfer = Koha
::Item
::Transfer
->new({
185 'itemnumber' => $self->itemnumber_id,
186 'frombranch' => $item->holdingbranch,
187 'datesent' => DateTime
->now,
188 'comments' => "StockrotationAdvance"
191 if ( $self->indemand && !$self->fresh ) {
192 $self->indemand(0)->store; # De-activate indemand
193 $transfer->tobranch($self->stage->branchcode_id);
194 $transfer->datearrived(DateTime
->now);
196 # Find and update our stage.
197 my $stage = $self->stage;
199 if ( $self->fresh ) { # Just added to rota
200 $new_stage = $self->stage->first_sibling || $self->stage;
201 $transfer->tobranch($new_stage->branchcode_id);
202 $transfer->datearrived(DateTime
->now) # Already at first branch
203 if $item->holdingbranch eq $new_stage->branchcode_id;
204 $self->fresh(0)->store; # Reset fresh
205 } elsif ( !$stage->last_sibling ) { # Last stage
206 if ( $stage->rota->cyclical ) { # Cyclical rota?
207 # Revert to first stage.
208 $new_stage = $stage->first_sibling || $stage;
209 $transfer->tobranch($new_stage->branchcode_id);
210 $transfer->datearrived(DateTime
->now);
212 $self->delete; # StockRotationItem is done.
217 $new_stage = $self->stage->next_sibling;
219 $self->stage_id($new_stage->stage_id)->store; # Set new stage
220 $item->homebranch($new_stage->branchcode_id)->store; # Update homebranch
221 $transfer->tobranch($new_stage->branchcode_id); # Send to new branch
224 return $transfer->store;
229 my $report = $item->investigate;
231 Return the base set of information, namely this individual item's report, for
232 generating stockrotation reports about this stockrotationitem.
239 title
=> $self->itemnumber->_result->biblioitem
240 ->biblionumber->title,
241 author
=> $self->itemnumber->_result->biblioitem
242 ->biblionumber->author,
243 callnumber
=> $self->itemnumber->itemcallnumber,
244 location
=> $self->itemnumber->location,
245 onloan
=> $self->itemnumber->onloan,
246 barcode
=> $self->itemnumber->barcode,
247 itemnumber
=> $self->itemnumber_id,
248 branch
=> $self->itemnumber->_result->holdingbranch,
252 if ( $self->fresh ) {
253 $reason = 'initiation';
254 } elsif ( $self->needs_repatriating ) {
255 $reason = 'repatriation';
256 } elsif ( $self->needs_advancing ) {
257 $reason = 'advancement';
258 $reason = 'in-demand' if $self->indemand;
260 $reason = 'not-ready';
262 $item_report->{reason
} = $reason;
271 Alex Sassmannshausen <alex.sassmannshausen@ptfs-europe.com>