Revision 451ad2fc
Von Sven Schöling vor fast 11 Jahren hinzugefügt
bin/mozilla/is.pl | ||
---|---|---|
843 | 843 |
if (IS->has_storno(\%myconfig, $form, "ar")) { |
844 | 844 |
$form->error($locale->text("Invoice has already been storno'd!")); |
845 | 845 |
} |
846 |
if ($form->datetonum($form->{invdate}, \%myconfig) <= $form->datetonum($form->{closedto}, \%myconfig)) { |
|
847 |
$form->error($locale->text('Cannot storno invoice for a closed period!')); |
|
848 |
} |
|
846 | 849 |
|
847 | 850 |
map({ my $key = $_; delete($form->{$key}) unless (grep({ $key eq $_ } qw(id login password type))); } keys(%{ $form })); |
848 | 851 |
|
Auch abrufbar als: Unified diff
Stornos nicht erlauben wenn die Rechnung im abgeschlossenen Zeitraum liegt.
behebt #2407