Bugzilla – Attachment 6925 Details for
Bug 6842
Branch transfer limits broken
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
followup patch : assigns a problem of deleted information when editing an other branch
0001-Bug-6842-FU-library-transfer-limits-edits-not-stored.patch (text/plain), 1.71 KB, created by
laurenthdl
on 2011-12-22 16:15:33 UTC
(
hide
)
Description:
followup patch : assigns a problem of deleted information when editing an other branch
Filename:
MIME Type:
Creator:
laurenthdl
Created:
2011-12-22 16:15:33 UTC
Size:
1.71 KB
patch
obsolete
>From 39393b13b36aeea112dfd49253ae13de930ecb11 Mon Sep 17 00:00:00 2001 >From: Henri-Damien LAURENT <henridamien.laurent@biblibre.com> >Date: Thu, 22 Dec 2011 06:23:35 +0100 >Subject: [PATCH] Bug 6842 FU : library transfer limits edits not stored > >Followup : >Changes the DeleteBranchTransferLimits signature : >one now needs to delete only the limits for ONE branch >--- > C4/Circulation.pm | 11 +++++++---- > admin/branch_transfer_limits.pl | 3 ++- > 2 files changed, 9 insertions(+), 5 deletions(-) > >diff --git a/C4/Circulation.pm b/C4/Circulation.pm >index 02e13c0..efd7dc0 100644 >--- a/C4/Circulation.pm >+++ b/C4/Circulation.pm >@@ -2938,14 +2938,17 @@ sub CreateBranchTransferLimit { > > =head2 DeleteBranchTransferLimits > >- DeleteBranchTransferLimits(); >+DeleteBranchTransferLimits($frombranch); >+ >+Deletes all the branch transfer limits for one branch > > =cut > > sub DeleteBranchTransferLimits { >- my $dbh = C4::Context->dbh; >- my $sth = $dbh->prepare("TRUNCATE TABLE branch_transfer_limits"); >- $sth->execute(); >+ my $branch = shift; >+ my $dbh = C4::Context->dbh; >+ my $sth = $dbh->prepare("DELETE FROM branch_transfer_limits WHERE fromBranch = ?"); >+ $sth->execute($branch); > } > > sub ReturnLostItem{ >diff --git a/admin/branch_transfer_limits.pl b/admin/branch_transfer_limits.pl >index 8c6f42e..e7422a6 100755 >--- a/admin/branch_transfer_limits.pl >+++ b/admin/branch_transfer_limits.pl >@@ -93,7 +93,8 @@ while ( my $row = $sth->fetchrow_hashref ) { > > ## If Form Data Passed, Update the Database > if ( $input->param('updateLimits') ) { >- DeleteBranchTransferLimits(); >+ DeleteBranchTransferLimits($branchcode); >+ > > foreach my $code ( @codes ) { > foreach my $toBranch ( @branchcodes ) { >-- >1.7.7.3 >
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 6842
:
5438
|
5471
|
6923
|
6925
|
6944
|
6960
|
7477
|
7484