1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00

Fix for recurring invoice due date

This commit is contained in:
Hillel Coren 2017-06-01 19:26:06 +03:00
parent 46ea8a40ca
commit 61d559875b

View File

@ -1036,7 +1036,7 @@ class Invoice extends EntityModel implements BalanceAffecting
$dueDay = $lastDayOfMonth;
}
if ($currentDay > $dueDay) {
if ($currentDay >= $dueDay) {
// Wait until next month
// We don't need to handle the December->January wraparaound, since PHP handles month 13 as January of next year
$dueMonth++;