X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=circ%2Ftransferstoreceive.pl;h=86f799275c20e7609296f7fc65ad4a1e40561fe4;hb=bfcb2fff456aa3c9c3d160fba39dd09e40341122;hp=ddb7f4a0da7edba5d8bb020069c224cad9a6cc42;hpb=8e0b1fe58f7e4f6e595b18d43c939c203833dac1;p=koha.git diff --git a/circ/transferstoreceive.pl b/circ/transferstoreceive.pl index ddb7f4a0da..86f799275c 100755 --- a/circ/transferstoreceive.pl +++ b/circ/transferstoreceive.pl @@ -14,9 +14,9 @@ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with -# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. use strict; use warnings; @@ -91,10 +91,13 @@ foreach my $br ( keys %$branches ) { $getransf{'datetransfer'} = format_date( $num->{'datesent'} ); $getransf{'itemtype'} = $itemtypeinfo ->{'description'}; - foreach (qw(title biblionumber itemnumber barcode homebranch holdingbranch itemcallnumber)) { + foreach (qw(title author biblionumber itemnumber barcode homebranch holdingbranch itemcallnumber)) { $getransf{$_} = $gettitle->{$_}; } + my $record = GetMarcBiblio($gettitle->{'biblionumber'}); + $getransf{'subtitle'} = GetRecordValue('subtitle', $record, GetFrameworkCode($gettitle->{'biblionumber'})); + # we check if we have a reserv for this transfer my @checkreserv = GetReservesFromItemnumber($num->{'itemnumber'} ); if ( $checkreserv[0] ) {