Revision e13f403e
Von Sven Schöling vor mehr als 2 Jahren hinzugefügt
SL/Controller/Order.pm | ||
---|---|---|
|
||
my $rows_as_html;
|
||
foreach my $tax (sort { $a->{tax}->rate cmp $b->{tax}->rate } @{ $self->{taxes} }) {
|
||
$rows_as_html .= $self->p->render('order/tabs/_tax_row', TAX => $tax, TAXINCLUDED => $self->order->taxincluded);
|
||
$rows_as_html .= $self->p->render(
|
||
'order/tabs/_tax_row',
|
||
TAX => $tax,
|
||
TAXINCLUDED => $self->order->taxincluded,
|
||
QUOTATION => $self->order->quotation
|
||
);
|
||
}
|
||
return $rows_as_html;
|
||
}
|
Auch abrufbar als: Unified diff
design40: quotation flag in _tax.html