@@ -, +, @@ place on export pdf (layout3pages) --- acqui/pdfformat/layout3pages.pm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) --- a/acqui/pdfformat/layout3pages.pm +++ a/acqui/pdfformat/layout3pages.pm @@ -29,7 +29,7 @@ use strict; use warnings; use utf8; -use C4::Branch qw(GetBranchDetail); +use C4::Branch qw(GetBranchDetail GetBranchName); BEGIN { use Exporter (); @@ -92,7 +92,12 @@ sub printorders { $text->font( $pdf->corefont("Times", -encoding => "utf8"), 6/mm ); $text->translate(20/mm, ($height-15)/mm); $text->text("Order N°".$basketgroup->{'id'}.". Basket N° ".$basket->{basketno}.". ".$basket->{booksellernote}); - + $text->translate(20/mm, ($height-20)/mm); + $text->text( ( $basket->{billingplace} ? "Billing at " . C4::Branch::GetBranchName( $basket->{billingplace} ) : "" ) + . ( $basket->{billingplace} and $basket->{deliveryplace} ? " and " : "" ) + . ( $basket->{deliveryplace} ? "delivery at " . C4::Branch::GetBranchName( $basket->{deliveryplace}) : "" ) + ); + my $pdftable = new PDF::Table(); my $abaskets; my $arrbasket; --