diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2025-05-26 13:13:36 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2025-05-26 13:13:36 +0700 |
| commit | 6a89c320da84e7b6d82304b3b5326644ed247f16 (patch) | |
| tree | 12a95e974d64a25cf812e4d1f984be7b690ed05e /fixco_custom | |
| parent | a66f3a902bc3ef76e564b05ed11625aed995a883 (diff) | |
push
Diffstat (limited to 'fixco_custom')
| -rwxr-xr-x | fixco_custom/models/detail_order.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fixco_custom/models/detail_order.py b/fixco_custom/models/detail_order.py index 669a4da..aec9ef5 100755 --- a/fixco_custom/models/detail_order.py +++ b/fixco_custom/models/detail_order.py @@ -123,7 +123,7 @@ class DetailOrder(models.Model): def process_queue_item_detail(self, limit=100): domain = [('execute_status', '=', 'detail_order')] - records = self.search(domain, order='create_date asc', limit=limit) + records = self.search(domain, limit=limit) for rec in records: rec.execute_queue_detail() |
