Revision 9e06d0e4
Von Philip Reetz vor mehr als 16 Jahren hinzugefügt
bin/mozilla/is.pl | ||
---|---|---|
1356 | 1356 |
$form->isblank("datepaid_$i", $locale->text('Payment date missing!')); |
1357 | 1357 |
|
1358 | 1358 |
$form->error($locale->text('Cannot post payment for a closed period!')) |
1359 |
if ($datepaid <= $closedto);
|
|
1359 |
if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
|
|
1360 | 1360 |
|
1361 | 1361 |
if ($form->{currency} ne $form->{defaultcurrency}) { |
1362 | 1362 |
$form->{"exchangerate_$i"} = $form->{exchangerate} |
... | ... | |
1386 | 1386 |
$form->{defaultcurrency} = $form->get_default_currency(\%myconfig); |
1387 | 1387 |
$form->isblank("invdate", $locale->text('Invoice Date missing!')); |
1388 | 1388 |
$form->isblank("customer", $locale->text('Customer missing!')); |
1389 |
$form->error($locale->text('Cannot post invoice for a closed period!')) |
|
1390 |
if ($form->date_closed($form->{"invdate"}, \%myconfig)); |
|
1389 | 1391 |
|
1390 | 1392 |
$form->{invnumber} =~ s/^\s*//g; |
1391 | 1393 |
$form->{invnumber} =~ s/\s*$//g; |
... | ... | |
1417 | 1419 |
$form->isblank("datepaid_$i", $locale->text('Payment date missing!')); |
1418 | 1420 |
|
1419 | 1421 |
$form->error($locale->text('Cannot post payment for a closed period!')) |
1420 |
if ($datepaid <= $closedto);
|
|
1422 |
if ($form->date_closed($form->{"datepaid_$i"}, \%myconfig));
|
|
1421 | 1423 |
|
1422 | 1424 |
if ($form->{currency} ne $form->{defaultcurrency}) { |
1423 | 1425 |
$form->{"exchangerate_$i"} = $form->{exchangerate} |
Auch abrufbar als: Unified diff
Ueberarbeitete Buecherkontrolle