diff options
| author | AndriFP <113114423+andrifp@users.noreply.github.com> | 2025-09-11 11:00:38 +0700 |
|---|---|---|
| committer | AndriFP <113114423+andrifp@users.noreply.github.com> | 2025-09-11 11:00:38 +0700 |
| commit | afd53e62f1f96691795ab1cb3f45c1071368b350 (patch) | |
| tree | f2c9e9e89c1d06a21c652e778a6e09f1edae4156 /indoteknik_custom/models/account_move.py | |
| parent | d27561901fa2f0ab7534f255351e82459c6a531e (diff) | |
| parent | 142f1a37b0d73ea847345428acc4224ff6e49419 (diff) | |
(andri) fix merge
Diffstat (limited to 'indoteknik_custom/models/account_move.py')
| -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 7884b1d5..70cd07e4 100644 --- a/indoteknik_custom/models/account_move.py +++ b/indoteknik_custom/models/account_move.py @@ -207,9 +207,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( |
