Revision 2174b7ba
Von Thomas Heck vor mehr als 12 Jahren hinzugefügt
bin/mozilla/is.pl | ||
---|---|---|
my ($tax, $subtotal);
|
||
$form->{taxaccounts_array} = [ split(/ /, $form->{taxaccounts}) ];
|
||
|
||
if ($form->{customer_id}) {
|
||
if( $form->{customer_id} && !$form->{taxincluded_changed_by_user} ) {
|
||
my $customer = SL::DB::Customer->new(id => $form->{customer_id})->load();
|
||
$form->{taxincluded} = defined($customer->taxincluded_checked) ? $customer->taxincluded_checked : $myconfig{taxincluded_checked};
|
||
}
|
bin/mozilla/oe.pl | ||
---|---|---|
$TMPL_VAR{notes} = qq|<textarea name=notes rows="$rows" cols="25">| . H($form->{notes}) . qq|</textarea>|;
|
||
$TMPL_VAR{intnotes} = qq|<textarea name=intnotes rows="$introws" cols="35">| . H($form->{intnotes}) . qq|</textarea>|;
|
||
|
||
if ($form->{customer_id}) {
|
||
if( $form->{customer_id} && !$form->{taxincluded_changed_by_user} ) {
|
||
my $customer = SL::DB::Customer->new(id => $form->{customer_id})->load();
|
||
$form->{taxincluded} = defined($customer->taxincluded_checked) ? $customer->taxincluded_checked : $myconfig{taxincluded_checked};
|
||
}
|
Auch abrufbar als: Unified diff
"Steuer im Preis inbegriffen" nicht mehr beim Erneuern überschreiben.
fixt #2219