diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2025-10-03 02:48:12 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2025-10-03 02:48:12 +0000 |
| commit | 98a344626fb3cb3117ee3c4459e94751804e229d (patch) | |
| tree | 585eaf432ed75232ade0cb772bc4ac71b8175ad1 | |
| parent | 35d01765f9b925467b6ac20d2ff83c81f49e4d3e (diff) | |
| parent | 6dda561fa704add3be34ecb16fa44e72fcf1bf56 (diff) | |
Merged in refund_system (pull request #441)
<hafid> push
| -rw-r--r-- | indoteknik_custom/models/refund_sale_order.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indoteknik_custom/models/refund_sale_order.py b/indoteknik_custom/models/refund_sale_order.py index de9870f6..a866af6e 100644 --- a/indoteknik_custom/models/refund_sale_order.py +++ b/indoteknik_custom/models/refund_sale_order.py @@ -571,7 +571,9 @@ class RefundSaleOrder(models.Model): domain = [ ('journal_id', '=', 11), ('state', '=', 'posted'), - ('ref', 'ilike', 'dp') + '|', + ('ref', 'ilike', 'dp'), + ('ref', 'ilike', 'payment'), ] domain += ['|'] * (len(so_names) - 1) for n in so_names: |
