Bugzilla – Attachment 53101 Details for
Bug 12063
Change date calculation for reserve expiration to skip all holidays
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 12063 - Remove Koha::Hold::waiting_expires_on since dateexpiration is set on database
Bug-12063---Remove-KohaHoldwaitingexpireson-since-.patch (text/plain), 7.75 KB, created by
Biblibre Sandboxes
on 2016-07-05 11:11:51 UTC
(
hide
)
Description:
Bug 12063 - Remove Koha::Hold::waiting_expires_on since dateexpiration is set on database
Filename:
MIME Type:
Creator:
Biblibre Sandboxes
Created:
2016-07-05 11:11:51 UTC
Size:
7.75 KB
patch
obsolete
>From 15db1aa1fa88922bd4fed38a85f674a5b1359c9e Mon Sep 17 00:00:00 2001 >From: Alex Arnaud <alex.arnaud@biblibre.com> >Date: Thu, 30 Jun 2016 10:00:26 +0200 >Subject: [PATCH] Bug 12063 - Remove Koha::Hold::waiting_expires_on since > dateexpiration is set on database > >Signed-off-by: sonia BOUIS <sonia.bouis@univ-lyon3.fr> >--- > Koha/Hold.pm | 24 -------------------- > .../prog/en/modules/circ/circulation.tt | 4 ++-- > .../prog/en/modules/reserve/request.tt | 8 +------ > .../opac-tmpl/bootstrap/en/modules/opac-user.tt | 4 ++-- > reserve/request.pl | 1 - > svc/holds | 5 ---- > t/db_dependent/Hold.t | 14 +----------- > 7 files changed, 6 insertions(+), 54 deletions(-) > >diff --git a/Koha/Hold.pm b/Koha/Hold.pm >index aa231f7..61f8747 100644 >--- a/Koha/Hold.pm >+++ b/Koha/Hold.pm >@@ -82,30 +82,6 @@ sub resume { > return $self; > } > >-=head3 waiting_expires_on >- >-Returns a DateTime for the date a waiting holds expires on. >-Returns undef if the system peference ReservesMaxPickUpDelay is not set. >-Returns undef if the hold is not waiting ( found = 'W' ). >- >-=cut >- >-sub waiting_expires_on { >- my ($self) = @_; >- >- my $found = $self->found; >- return unless $found && $found eq 'W'; >- >- my $ReservesMaxPickUpDelay = C4::Context->preference('ReservesMaxPickUpDelay'); >- return unless $ReservesMaxPickUpDelay; >- >- my $dt = dt_from_string( $self->waitingdate() ); >- >- $dt->add( days => $ReservesMaxPickUpDelay ); >- >- return $dt; >-} >- > =head3 set_waiting > > =cut >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index 0056dfc..f9b4671 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -802,8 +802,8 @@ No patron matched <span class="ex">[% message %]</span> > > <br/> > [% IF ( w.branch.branchcode == Branches.GetLoggedInBranchcode() ) %]<strong class="waitinghere">[% ELSE %]<strong>[% END %] >- [% SET waiting_expires_on = w.waiting_expires_on %] >- Waiting at [% w.branch.branchname | html %] [% IF waiting_expires_on %] until [% waiting_expires_on | $KohaDates %] [% END %] >+ [% SET expires_on = w.expirationdate %] >+ Waiting at [% w.branch.branchname | html %] [% IF expires_on %] until [% expires_on | $KohaDates %] [% END %] > </strong> > </li> > </ul> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >index bcca2d2..c0c0af5 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >@@ -720,13 +720,7 @@ function checkMultiHold() { > </td> > <td>[% reserveloo.notes %]</td> > <td>[% reserveloo.date %]</td> >- <td> >- [% IF reserveloo.waiting_until %] >- [% reserveloo.waiting_until | $KohaDates %] >- [% ELSE %] >- [% reserveloo.expirationdate %] >- [% END %] >- </td> >+ <td>[% reserveloo.expirationdate %]</td> > <td> > [% IF ( reserveloo.found ) %] > [% IF ( reserveloo.atdestination ) %] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt >index 264641f..98e80ae 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt >@@ -591,8 +591,8 @@ > Item waiting at <b> [% RESERVE.branch.branchname %]</b> > [% IF ( RESERVE.waitingdate ) %] > since [% RESERVE.waitingdate | $KohaDates %] >- [% IF RESERVE.waiting_expires_on %] >- until [% RESERVE.waiting_expires_on | $KohaDates %] >+ [% IF RESERVE.expirationdate %] >+ until [% RESERVE.expirationdate | $KohaDates %] > [% END %] > [% END %] > <input type="hidden" name="pickup" value="[% RESERVE.branchcode %]" /> >diff --git a/reserve/request.pl b/reserve/request.pl >index 1826e00..1d595d5 100755 >--- a/reserve/request.pl >+++ b/reserve/request.pl >@@ -558,7 +558,6 @@ foreach my $biblionumber (@biblionumbers) { > $reserve{'surname'} = $res->borrower()->surname(); > $reserve{'notes'} = $res->reservenotes(); > $reserve{'waiting_date'} = $res->waitingdate(); >- $reserve{'waiting_until'} = $res->is_waiting() ? $res->waiting_expires_on() : undef; > $reserve{'ccode'} = $res->item() ? $res->item()->ccode() : undef; > $reserve{'barcode'} = $res->item() ? $res->item()->barcode() : undef; > $reserve{'priority'} = $res->priority(); >diff --git a/svc/holds b/svc/holds >index 1db9338..2723af8 100755 >--- a/svc/holds >+++ b/svc/holds >@@ -114,11 +114,6 @@ while ( my $h = $holds_rs->next() ) { > : q{}, > }; > >- if ( my $e = $h->waiting_expires_on() ) { >- $hold->{expirationdate} = $e->ymd(); >- $hold->{expirationdate_formatted} = output_pref( { dt => $e, dateonly => 1 }); >- } >- > $hold->{transfered} = 0; > $hold->{not_transfered} = 0; > >diff --git a/t/db_dependent/Hold.t b/t/db_dependent/Hold.t >index 9604bd8..1bd932e 100755 >--- a/t/db_dependent/Hold.t >+++ b/t/db_dependent/Hold.t >@@ -27,7 +27,7 @@ use Koha::Item; > use Koha::DateUtils; > use t::lib::TestBuilder; > >-use Test::More tests => 32; >+use Test::More tests => 28; > use Test::Warn; > > use_ok('Koha::Hold'); >@@ -97,29 +97,17 @@ my $hold_borrower = $hold->borrower(); > ok( $hold_borrower, 'Got hold borrower' ); > is( $hold_borrower->borrowernumber(), $borrower->{borrowernumber}, 'Hold borrower matches correct borrower' ); > >-t::lib::Mocks::mock_preference( 'ReservesMaxPickUpDelay', '' ); >-$dt = $hold->waiting_expires_on(); >-is( $dt, undef, "Koha::Hold->waiting_expires_on returns undef if ReservesMaxPickUpDelay is not set" ); >- > is( $hold->is_waiting, 1, 'The hold is waiting' ); > is( $hold->is_found, 1, 'The hold is found'); > ok( !$hold->is_in_transit, 'The hold is not in transit' ); > > t::lib::Mocks::mock_preference( 'ReservesMaxPickUpDelay', '5' ); >-$dt = $hold->waiting_expires_on(); >-is( $dt->ymd, "2000-01-06", >- "Koha::Hold->waiting_expires_on returns DateTime of waitingdate + ReservesMaxPickUpDelay if set" ); >- > $hold->found('T'); >-$dt = $hold->waiting_expires_on(); >-is( $dt, undef, "Koha::Hold->waiting_expires_on returns undef if found is not 'W' ( Set to 'T' )" ); > isnt( $hold->is_waiting, 1, 'The hold is not waiting (T)' ); > is( $hold->is_found, 1, 'The hold is found'); > is( $hold->is_in_transit, 1, 'The hold is in transit' ); > > $hold->found(q{}); >-$dt = $hold->waiting_expires_on(); >-is( $dt, undef, "Koha::Hold->waiting_expires_on returns undef if found is not 'W' ( Set to empty string )" ); > isnt( $hold->is_waiting, 1, 'The hold is not waiting (W)' ); > is( $hold->is_found, 0, 'The hold is not found' ); > ok( !$hold->is_in_transit, 'The hold is not in transit' ); >-- >1.7.10.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 12063
:
26966
|
52558
|
52949
|
52950
|
53100
|
53101
|
59161
|
59162
|
59163
|
59165
|
61401
|
61440
|
61461
|
61735
|
62001
|
62002
|
62003
|
62004
|
62005
|
62474
|
63057
|
63091
|
63092
|
63093
|
63094
|
63095
|
63096
|
63097
|
63098
|
63099