Bugzilla – Attachment 19650 Details for
Bug 10504
C4::Acquisition::ModOrderItem is unused
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 10504: Remove the unused C4::Acq::ModOrderItem routine
Bug-10504-Remove-the-unused-C4AcqModOrderItem-rout.patch (text/plain), 2.65 KB, created by
Kyle M Hall (khall)
on 2013-07-15 12:26:16 UTC
(
hide
)
Description:
Bug 10504: Remove the unused C4::Acq::ModOrderItem routine
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2013-07-15 12:26:16 UTC
Size:
2.65 KB
patch
obsolete
>From 66a6a97049b4f444b99912de847546c4c2ca4390 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Tue, 25 Jun 2013 09:09:38 +0200 >Subject: [PATCH] Bug 10504: Remove the unused C4::Acq::ModOrderItem routine > >This routine has been introduced by commit >2d90fb22d43db986547bbaa945873d6dd78aab71. >The only call has been removed by commit >9eba7dc594fc0d4698da5e791d5f6f8682b2712a. > >So now, this routine is useless. > >Signed-off-by: Srdjan <srdjan@catalyst.net.nz> >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > C4/Acquisition.pm | 33 +-------------------------------- > cataloguing/moveitem.pl | 2 +- > 2 files changed, 2 insertions(+), 33 deletions(-) > >diff --git a/C4/Acquisition.pm b/C4/Acquisition.pm >index b7ba2e1..1a210b5 100644 >--- a/C4/Acquisition.pm >+++ b/C4/Acquisition.pm >@@ -59,7 +59,7 @@ BEGIN { > &ModReceiveOrder &CancelReceipt > &GetCancelledOrders > &GetLastOrderNotReceivedFromSubscriptionid &GetLastOrderReceivedFromSubscriptionid >- &NewOrderItem &ModOrderItem &ModItemOrder >+ &NewOrderItem &ModItemOrder > > &GetParcels &GetParcel > &GetContracts &GetContract >@@ -1225,37 +1225,6 @@ sub ModOrder { > > #------------------------------------------------------------# > >-=head3 ModOrderItem >- >- &ModOrderItem(\%hashref); >- >-Modifies the itemnumber in the aqorders_items table. The input hash needs three entities: >- >-=over >- >-=item - itemnumber: the old itemnumber >-=item - ordernumber: the order this item is attached to >-=item - newitemnumber: the new itemnumber we want to attach the line to >- >-=back >- >-=cut >- >-sub ModOrderItem { >- my $orderiteminfo = shift; >- if (! $orderiteminfo->{'ordernumber'} || ! $orderiteminfo->{'itemnumber'} || ! $orderiteminfo->{'newitemnumber'}){ >- die "Ordernumber, itemnumber and newitemnumber is required"; >- } >- >- my $dbh = C4::Context->dbh; >- >- my $query = "UPDATE aqorders_items set itemnumber=? where itemnumber=? and ordernumber=?"; >- my @params = ($orderiteminfo->{'newitemnumber'}, $orderiteminfo->{'itemnumber'}, $orderiteminfo->{'ordernumber'}); >- my $sth = $dbh->prepare($query); >- $sth->execute(@params); >- return 0; >-} >- > =head3 ModItemOrder > > ModItemOrder($itemnumber, $ordernumber); >diff --git a/cataloguing/moveitem.pl b/cataloguing/moveitem.pl >index 24414cc..2622c36 100755 >--- a/cataloguing/moveitem.pl >+++ b/cataloguing/moveitem.pl >@@ -30,7 +30,7 @@ use C4::Context; > use C4::Koha; > use C4::Branch; > use C4::ClassSource; >-use C4::Acquisition qw/GetOrderFromItemnumber ModOrder GetOrder ModOrderItem/; >+use C4::Acquisition qw/GetOrderFromItemnumber ModOrder GetOrder/; > > use Date::Calc qw(Today); > >-- >1.7.2.5
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 10504
:
19220
|
19305
|
19537
|
19650
|
19652
|
19653