diff options
| author | Indoteknik . <it@fixcomart.co.id> | 2025-09-04 11:14:27 +0700 |
|---|---|---|
| committer | Indoteknik . <it@fixcomart.co.id> | 2025-09-04 11:14:27 +0700 |
| commit | 14d3ad7bbb8a6bd9c1272685aed4b3712ab1f33d (patch) | |
| tree | 80e594bc8bb942513e5c85529697f2e74802e766 | |
| parent | 6c2edc9b37c8a7e46bc431379b492f132bcb8665 (diff) | |
(andri) fix reminder
| -rw-r--r-- | indoteknik_custom/models/account_move.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/indoteknik_custom/models/account_move.py b/indoteknik_custom/models/account_move.py index c44cad78..c93cfb76 100644 --- a/indoteknik_custom/models/account_move.py +++ b/indoteknik_custom/models/account_move.py @@ -179,9 +179,8 @@ class AccountMove(models.Model): ('state', '=', 'posted'), ('payment_state', 'not in', ['paid', 'in_payment', 'reversed']), ('invoice_date_due', 'in', target_dates), - ('date_terima_tukar_faktur', '!=', False), - ('partner_id', 'in' , [94603]) - ], limit=5) + ('date_terima_tukar_faktur', '!=', False) + ]) _logger.info(f"Invoices: {invoices}") invoices = invoices.filtered( |
