Bug 20581: Provide status_alias on IllRequest
This patch provides status_alias support for the Koha::Illrequest object. - New 'statusalias' getter method, returns the request's status_alias authorised value object if set, otherwise undef - Overloads existing 'status' method, getter/setter accessors intact, but setting the request's status now implicitly removes any status_alias that has been set Signed-off-by: Niamh.Walker-Headon@it-tallaght.ie Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
e631207eaa
commit
f808923e67
1 changed files with 30 additions and 0 deletions
|
@ -31,6 +31,7 @@ use Koha::Email;
|
||||||
use Koha::Exceptions::Ill;
|
use Koha::Exceptions::Ill;
|
||||||
use Koha::Illcomments;
|
use Koha::Illcomments;
|
||||||
use Koha::Illrequestattributes;
|
use Koha::Illrequestattributes;
|
||||||
|
use Koha::AuthorisedValue;
|
||||||
use Koha::Patron;
|
use Koha::Patron;
|
||||||
|
|
||||||
use base qw(Koha::Object);
|
use base qw(Koha::Object);
|
||||||
|
@ -109,6 +110,19 @@ available for request.
|
||||||
|
|
||||||
=head2 Class methods
|
=head2 Class methods
|
||||||
|
|
||||||
|
=head3 statusalias
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
sub statusalias {
|
||||||
|
my ( $self ) = @_;
|
||||||
|
return $self->status_alias ?
|
||||||
|
Koha::AuthorisedValue->_new_from_dbic(
|
||||||
|
scalar $self->_result->status_alias
|
||||||
|
) :
|
||||||
|
undef;
|
||||||
|
}
|
||||||
|
|
||||||
=head3 illrequestattributes
|
=head3 illrequestattributes
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
@ -142,6 +156,22 @@ sub patron {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
=head3 status
|
||||||
|
|
||||||
|
Overloaded getter/setter for request status,
|
||||||
|
also nullifies status_alias
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
sub status {
|
||||||
|
my ( $self, $newval) = @_;
|
||||||
|
if ($newval) {
|
||||||
|
$self->status_alias(undef);
|
||||||
|
return $self->SUPER::status($newval);
|
||||||
|
}
|
||||||
|
return $self->SUPER::status;
|
||||||
|
}
|
||||||
|
|
||||||
=head3 load_backend
|
=head3 load_backend
|
||||||
|
|
||||||
Require "Base.pm" from the relevant ILL backend.
|
Require "Base.pm" from the relevant ILL backend.
|
||||||
|
|
Loading…
Reference in a new issue