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