FEATURE: New Invoice Status Non-Billable

This commit is contained in:
johnnyq
2024-10-25 14:33:12 -04:00
parent 58f995ed37
commit ae561d3195
3 changed files with 26 additions and 2 deletions

View File

@@ -438,6 +438,7 @@ if ($config_send_invoice_reminders == 1) {
WHERE invoice_status != 'Draft'
AND invoice_status != 'Paid'
AND invoice_status != 'Cancelled'
AND invoice_status != 'Non-Billable'
AND DATE_ADD(invoice_due, INTERVAL $day DAY) = CURDATE()
ORDER BY invoice_number DESC"
);