summaryrefslogtreecommitdiff
path: root/fixco_custom/models/detail_order.py
diff options
context:
space:
mode:
Diffstat (limited to 'fixco_custom/models/detail_order.py')
-rwxr-xr-xfixco_custom/models/detail_order.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/fixco_custom/models/detail_order.py b/fixco_custom/models/detail_order.py
index e8e87aa..1211aad 100755
--- a/fixco_custom/models/detail_order.py
+++ b/fixco_custom/models/detail_order.py
@@ -134,12 +134,10 @@ class DetailOrder(models.Model):
def process_queue_item_detail(self, limit=100):
domain = [
('execute_status', '=', 'detail_order'),
+ '!',
'|',
- ('detail_order', 'not like', '"orderStatus": "PENDING_PAYMENT"'),
- ('json_ginee', 'not like', '"orderStatus": "PENDING_PAYMENT"'),
- '|',
- ('detail_order', 'not like', '"channel":"BLIBLI_ID"'),
- ('json_ginee', 'not like', '"channel":"BLIBLI_ID"'),
+ ('json_ginee', 'like', '"orderStatus": "PENDING_PAYMENT"'),
+ ('json_ginee', 'like', '"channel":"BLIBLI_ID"'),
]
records = self.search(domain, order='create_date desc', limit=limit)