Revision acf90643
Von Frank Messerschmidt vor fast 8 Jahren hinzugefügt
SL/DB/Helper/Payment.pm | ||
---|---|---|
676 | 676 |
# Check check in invoice in skonto period |
677 | 677 |
my $selected = 0; |
678 | 678 |
$selected = 1 if($self->within_skonto_period); |
679 |
|
|
680 |
# Precalculate amount of suggestion when Skonto not in period (Preselected payment_select_option) |
|
681 |
if (!$self->within_skonto_period) { |
|
682 |
$self->{invoice_amount_suggestion} = $self->amount; |
|
683 |
} |
|
684 |
|
|
679 | 685 |
push(@{$self->{payment_select_options}} , { payment_type => 'with_skonto_pt', display => t8('with skonto acc. to pt') , selected => $selected }); |
680 | 686 |
} else { |
681 | 687 |
if ( ( $self->valid_skonto_amount($self->open_amount) || $self->valid_skonto_amount($open_amount) ) and not $params{sepa} ) { |
Auch abrufbar als: Unified diff
SEPA-Überweisungen: Zahlungsbetrag bei Rechnungen mit Vorauswahl ohne Skonto
- Betrag wird nun auch bei Vorauswahl "ohne Skonto" auf den vollen Betrag gesetzt
implementiert TICKET #4484