Lines 117-129
sub printorders {
Link Here
|
117 |
push( @$arrbasket, |
117 |
push( @$arrbasket, |
118 |
$titleinfo. ($line->{order_vendornote} ? "\n----------------\nNote pour le fournisseur : ". $line->{order_vendornote} : '' ), |
118 |
$titleinfo. ($line->{order_vendornote} ? "\n----------------\nNote pour le fournisseur : ". $line->{order_vendornote} : '' ), |
119 |
$line->{quantity}, |
119 |
$line->{quantity}, |
120 |
Koha::Number::Price->new( $line->{rrpgste}), |
120 |
Koha::Number::Price->new( $line->{rrpgste})->format, |
121 |
Koha::Number::Price->new( $line->{rrpgsti}), |
121 |
Koha::Number::Price->new( $line->{rrpgsti})->format, |
122 |
Koha::Number::Price->new( $line->{discount}).'%', |
122 |
Koha::Number::Price->new( $line->{discount})->format.'%', |
123 |
Koha::Number::Price->new( $line->{rrpgste} - $line->{ecostgste}), |
123 |
Koha::Number::Price->new( $line->{rrpgste} - $line->{ecostgste})->format, |
124 |
Koha::Number::Price->new( $line->{gstrate} * 100).'%', |
124 |
Koha::Number::Price->new( $line->{gstrate} * 100)->format.'%', |
125 |
Koha::Number::Price->new( $line->{totalgste}), |
125 |
Koha::Number::Price->new( $line->{totalgste})->format, |
126 |
Koha::Number::Price->new( $line->{totalgsti}), |
126 |
Koha::Number::Price->new( $line->{totalgsti})->format, |
127 |
); |
127 |
); |
128 |
push(@$abaskets, $arrbasket); |
128 |
push(@$abaskets, $arrbasket); |
129 |
} |
129 |
} |
130 |
- |
|
|