diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2025-12-01 06:14:01 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2025-12-01 06:14:01 +0000 |
| commit | 4f751f8f0e15b521230bcbbd6556daae15035a6e (patch) | |
| tree | 140cc0526862729192f3449ea28cdbf1f4d78d2d | |
| parent | a6def05e8e94db52af007bfc42fde9d1b753f000 (diff) | |
| parent | d36a64b9cfcc00c55a03bc0d7a090c8142355172 (diff) | |
Merged in refund_system (pull request #471)
<hafid> overlap journal
| -rw-r--r-- | indoteknik_custom/models/refund_sale_order.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indoteknik_custom/models/refund_sale_order.py b/indoteknik_custom/models/refund_sale_order.py index 38ab69fa..5338c9c0 100644 --- a/indoteknik_custom/models/refund_sale_order.py +++ b/indoteknik_custom/models/refund_sale_order.py @@ -335,6 +335,7 @@ class RefundSaleOrder(models.Model): ('state', '=', 'posted'), ('ref', 'ilike', 'uang muka penjualan'), ('ref', 'not ilike', 'reklas'), + ('ref', 'not ilike', 'dp'), ] if so_names: domain += ['|'] * (len(so_names) - 1) @@ -694,6 +695,7 @@ class RefundSaleOrder(models.Model): ('state', '=', 'posted'), ('ref', 'ilike', 'uang muka penjualan'), ('ref', 'not ilike', 'reklas'), + ('ref', 'not ilike', 'dp'), ] domain += ['|'] * (len(so_names) - 1) for n in so_names: |
