diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2024-05-30 08:54:30 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2024-05-30 08:54:30 +0700 |
| commit | c0bc0039928cdb7e2eef8e39dc5daad6e5ecfc28 (patch) | |
| tree | af2e130e1ed00d875a4baa90ec91e9fbf04b4169 | |
| parent | 50eacdb74fa081d5be2a0cea787843b8c123ec17 (diff) | |
increase limit of tracking ged
| -rw-r--r-- | indoteknik_custom/models/ged.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/ged.py b/indoteknik_custom/models/ged.py index d1f70f1d..2abfb425 100644 --- a/indoteknik_custom/models/ged.py +++ b/indoteknik_custom/models/ged.py @@ -276,7 +276,7 @@ class DunningRunGed(models.Model): ('shipper_faktur_id', '=', 123) ] - dunnings = self.env['dunning.run'].search(query, limit=50) + dunnings = self.env['dunning.run'].search(query, limit=100) for dunning in dunnings: current_tracking = self.env['ged.tracking'].search([('awb_no', '=', dunning.resi_tukar_faktur)], limit=1) |
