View | Details | Raw Unified | Return to bug 10023
Collapse All | Expand All

(-)a/acqui/pdfformat/layout2pages.pm (-1 / +1 lines)
Lines 82-88 sub printorders { Link Here
82
    
82
    
83
    my $abaskets;
83
    my $abaskets;
84
    my $arrbasket;
84
    my $arrbasket;
85
    my @keys = ('Basket (N°)', 'Document', 'Qty', 'RRP tax inc.', 'Discount', 'GST', 'Total tax exc.', 'Total tax inc.');
85
    my @keys = ('Basket (No.)', 'Document', 'Qty', 'RRP tax inc.', 'Discount', 'GST', 'Total tax exc.', 'Total tax inc.');
86
    for my $bkey (@keys) {
86
    for my $bkey (@keys) {
87
        push(@$arrbasket, $bkey);
87
        push(@$arrbasket, $bkey);
88
    }
88
    }
(-)a/acqui/pdfformat/layout3pages.pm (-1 / +1 lines)
Lines 92-98 sub printorders { Link Here
92
        # add basketgroup number
92
        # add basketgroup number
93
        $text->font( $pdf->corefont("Times", -encoding => "utf8"), 6/mm );
93
        $text->font( $pdf->corefont("Times", -encoding => "utf8"), 6/mm );
94
        $text->translate(20/mm,  ($height-15)/mm);
94
        $text->translate(20/mm,  ($height-15)/mm);
95
        $text->text("Order N°".$basketgroup->{'id'}.". Basket N° ".$basket->{basketno}.". ".$basket->{booksellernote});
95
        $text->text("Order no. ".$basketgroup->{'id'}.". Basket no. ".$basket->{basketno}.". ".$basket->{booksellernote});
96
        $text->translate(20/mm,  ($height-20)/mm);
96
        $text->translate(20/mm,  ($height-20)/mm);
97
        $text->font( $pdf->corefont("Times", -encoding => "utf8"), 4/mm );
97
        $text->font( $pdf->corefont("Times", -encoding => "utf8"), 4/mm );
98
        $text->text( ( $basket->{billingplace} ? "Billing at " . C4::Branch::GetBranchName( $basket->{billingplace} ) : "" )
98
        $text->text( ( $basket->{billingplace} ? "Billing at " . C4::Branch::GetBranchName( $basket->{billingplace} ) : "" )
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt (-2 / +1 lines)
Lines 87-93 $(document).ready(function() { Link Here
87
                        <table class="baskets">
87
                        <table class="baskets">
88
                            <thead>
88
                            <thead>
89
                                <tr>
89
                                <tr>
90
                                    <th>N°</th>
90
                                    <th>No.</th>
91
                                    <th>Name</th>
91
                                    <th>Name</th>
92
                                    <th>Item count</th>
92
                                    <th>Item count</th>
93
                                    <th>Biblio count</th>
93
                                    <th>Biblio count</th>
94
- 

Return to bug 10023