Revision e8ba1583
Von Moritz Bunkus vor fast 18 Jahren hinzugefügt
bin/mozilla/oe.pl | ||
---|---|---|
<input class=submit type=submit name=action value="|
|
||
. $locale->text('Purchase Order') . qq|">|;
|
||
}
|
||
if (1) {
|
||
print qq|
|
||
<input class=submit type=submit name=action value="|
|
||
. $locale->text('Invoice') . qq|">
|
||
|;
|
||
}
|
||
|
||
if ($form->{type} =~ /sales_order$/) {
|
||
print qq|
|
||
... | ... | |
$exchangerate =
|
||
$form->check_exchangerate(\%myconfig, $form->{currency}, $orddate,
|
||
$buysell);
|
||
print(STDERR "CURRENCY $form->{currency} DEFAULT: $form->{defaultcurrency} EXCHANGE $exchangerate\n");
|
||
|
||
if (!$exchangerate) {
|
||
&backorder_exchangerate($orddate, $buysell);
|
Auch abrufbar als: Unified diff
Kosmetik: Debugausgaben und eine überflüssige if-Zeile entfernt.