Revision 3879426c
Von Moritz Bunkus vor mehr als 15 Jahren hinzugefügt
bin/mozilla/io.pl | ||
---|---|---|
1870 | 1870 |
|
1871 | 1871 |
_check_io_auth(); |
1872 | 1872 |
|
1873 |
$form->get_duedate(\%myconfig); |
|
1873 |
my $invdate = $form->{invdate} eq 'undefined' ? undef : $form->{invdate}; |
|
1874 |
my $duedate = $form->get_duedate(\%myconfig, $invdate); |
|
1874 | 1875 |
|
1875 |
print $form->ajax_response_header() . $form->{duedate};
|
|
1876 |
print $form->ajax_response_header() . $duedate;
|
|
1876 | 1877 |
|
1877 | 1878 |
$lxdebug->leave_sub(); |
1878 | 1879 |
} |
Auch abrufbar als: Unified diff
Die Berechnung des Fälligkeitsdatums anhand des momentan eingetragenen Rechnungsdatums durchführen, und nicht anhand des Serverdatums.
Fix für Bug 927.