Revision 9e06d0e4
Von Philip Reetz vor mehr als 16 Jahren hinzugefügt
bin/mozilla/ir.pl | ||
---|---|---|
1043 | 1043 |
$form->isblank("datepaid_$i", $locale->text('Payment date missing!')); |
1044 | 1044 |
|
1045 | 1045 |
$form->error($locale->text('Cannot post payment for a closed period!')) |
1046 |
if ($datepaid <= $closedto);
|
|
1046 |
if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
|
|
1047 | 1047 |
|
1048 | 1048 |
if ($form->{currency} ne $form->{defaultcurrency}) { |
1049 | 1049 |
$form->{"exchangerate_$i"} = $form->{exchangerate} |
... | ... | |
1100 | 1100 |
$invdate = $form->datetonum($form->{invdate}, \%myconfig); |
1101 | 1101 |
|
1102 | 1102 |
$form->error($locale->text('Cannot post invoice for a closed period!')) |
1103 |
if ($invdate <= $closedto);
|
|
1103 |
if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
|
|
1104 | 1104 |
|
1105 | 1105 |
$form->isblank("exchangerate", $locale->text('Exchangerate missing!')) |
1106 | 1106 |
if ($form->{currency} ne $form->{defaultcurrency}); |
... | ... | |
1112 | 1112 |
$form->isblank("datepaid_$i", $locale->text('Payment date missing!')); |
1113 | 1113 |
|
1114 | 1114 |
$form->error($locale->text('Cannot post payment for a closed period!')) |
1115 |
if ($datepaid <= $closedto);
|
|
1115 |
if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
|
|
1116 | 1116 |
|
1117 | 1117 |
if ($form->{currency} ne $form->{defaultcurrency}) { |
1118 | 1118 |
$form->{"exchangerate_$i"} = $form->{exchangerate} |
Auch abrufbar als: Unified diff
Ueberarbeitete Buecherkontrolle