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

(-)a/acqui/pdfformat/layout2pages.pm (-1 / +1 lines)
Lines 113-119 sub printorders { Link Here
113
            }
113
            }
114
            push( @$arrbasket,
114
            push( @$arrbasket,
115
                $basket->{basketno},
115
                $basket->{basketno},
116
                $titleinfo. ($line->{order_vendornote} ? "\n----------------\nNotes for vendor : " . $line->{order_vendornote} : '' ),
116
                $titleinfo. ($line->{order_vendornote} ? "\n----------------\nNote for vendor : " . $line->{order_vendornote} : '' ),
117
                $line->{quantity},
117
                $line->{quantity},
118
                $num->format_price($line->{rrpgsti}),
118
                $num->format_price($line->{rrpgsti}),
119
                $num->format_price($line->{discount}).'%',
119
                $num->format_price($line->{discount}).'%',
(-)a/acqui/pdfformat/layout2pagesde.pm (-1 / +1 lines)
Lines 113-119 sub printorders { Link Here
113
            }
113
            }
114
            push( @$arrbasket,
114
            push( @$arrbasket,
115
                $basket->{basketno},
115
                $basket->{basketno},
116
                $titleinfo,
116
                $titleinfo. ($line->{order_vendornote} ? "\n----------------\nLieferantennotiz : ". $line->{order_vendornote} : '' ),                $line->{quantity},
117
                $line->{quantity},
117
                $line->{quantity},
118
                $num->format_price($line->{rrpgsti}),
118
                $num->format_price($line->{rrpgsti}),
119
                $num->format_price($line->{discount}).'%',
119
                $num->format_price($line->{discount}).'%',
(-)a/acqui/pdfformat/layout3pages.pm (-1 / +1 lines)
Lines 132-138 sub printorders { Link Here
132
                    ( $line->{copyrightdate} ? ' '. $line->{copyrightdate} : '');
132
                    ( $line->{copyrightdate} ? ' '. $line->{copyrightdate} : '');
133
            }
133
            }
134
            push( @$arrbasket,
134
            push( @$arrbasket,
135
                $titleinfo. ($line->{order_vendornote} ? "\n----------------\nNotes for vendor : " . $line->{order_vendornote} : '' ),
135
                $titleinfo. ($line->{order_vendornote} ? "\n----------------\nNote for vendor : " . $line->{order_vendornote} : '' ),
136
                $line->{quantity},
136
                $line->{quantity},
137
                $num->format_price($line->{rrpgste}),
137
                $num->format_price($line->{rrpgste}),
138
                $num->format_price($line->{rrpgsti}),
138
                $num->format_price($line->{rrpgsti}),
(-)a/acqui/pdfformat/layout3pagesfr.pm (-4 / +2 lines)
Lines 102-108 sub printorders { Link Here
102
        my $pdftable = new PDF::Table();
102
        my $pdftable = new PDF::Table();
103
        my $abaskets;
103
        my $abaskets;
104
        my $arrbasket;
104
        my $arrbasket;
105
        my @keys = ('Document', 'Qte', 'Prix', 'Prix net', '% Remise', 'Remise', 'Taux TVA', 'Total HT', 'Total TTC');
105
        my @keys = ('Document', 'Qté', 'Prix', 'Prix net', '% Remise', 'Remise', 'Taux TVA', 'Total HT', 'Total TTC');
106
        for my $bkey (@keys) {
106
        for my $bkey (@keys) {
107
            push(@$arrbasket, $bkey);
107
            push(@$arrbasket, $bkey);
108
        }
108
        }
Lines 132-139 sub printorders { Link Here
132
            }
132
            }
133
133
134
            push( @$arrbasket,
134
            push( @$arrbasket,
135
                $titleinfo,
135
                $titleinfo. ($line->{order_vendornote} ? "\n----------------\nNote pour le fournisseur : ". $line->{order_vendornote} : '' ),                $line->{quantity},
136
                $line->{quantity},
137
                $num->format_price($line->{rrpgste}),
136
                $num->format_price($line->{rrpgste}),
138
                $num->format_price($line->{rrpgsti}),
137
                $num->format_price($line->{rrpgsti}),
139
                $num->format_price($line->{discount}).'%',
138
                $num->format_price($line->{discount}).'%',
140
- 

Return to bug 12110