Bugzilla – Attachment 116550 Details for
Bug 25767
Add Koha::Item::Transfer->receive method
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 25767: Add Koha::Item::Transfer->receipt method
Bug-25767-Add-KohaItemTransfer-receipt-method.patch (text/plain), 1.22 KB, created by
Martin Renvoize (ashimema)
on 2021-02-09 11:00:51 UTC
(
hide
)
Description:
Bug 25767: Add Koha::Item::Transfer->receipt method
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2021-02-09 11:00:51 UTC
Size:
1.22 KB
patch
obsolete
>From e51b73bf6de76dcce4f0db88f338d4793a8ce5e9 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Mon, 20 Jan 2020 15:51:39 +0000 >Subject: [PATCH] Bug 25767: Add Koha::Item::Transfer->receipt method >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Signed-off-by: Kathleen Milne <kathleen.milne@cne-siar.gov.uk> >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >Signed-off-by: Joonas Kylmälä <joonas.kylmala@helsinki.fi> >--- > Koha/Item/Transfer.pm | 19 +++++++++++++++++++ > 1 file changed, 19 insertions(+) > >diff --git a/Koha/Item/Transfer.pm b/Koha/Item/Transfer.pm >index 2928480c0a..e2e62087da 100644 >--- a/Koha/Item/Transfer.pm >+++ b/Koha/Item/Transfer.pm >@@ -84,6 +84,25 @@ sub transit { > return $self; > } > >+=head3 receipt >+ >+Receive the transfer by setting the datearrived time. >+ >+=cut >+ >+sub receipt { >+ my ($self) = @_; >+ >+ # Throw exception if item is checked out >+ Koha::Exceptions::Item::Transfer::Out->throw() if ($self->item->checkout); >+ >+ # Update the receipt state >+ $self->set({ datearrived => dt_from_string })->store; >+ >+ ModDateLastSeen( $self->item->itemnumber ); >+ return $self; >+} >+ > =head3 type > > =cut >-- >2.20.1
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 25767
:
105905
|
105906
|
107244
|
107245
|
107299
|
107300
|
110277
|
110278
|
110299
|
110300
|
110397
|
110398
|
110399
|
110510
|
110511
|
110512
|
116550
|
116551
|
116552
|
117571
|
117583