summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xindoteknik_custom/models/crm_lead.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/indoteknik_custom/models/crm_lead.py b/indoteknik_custom/models/crm_lead.py
index 913c670e..1f37005d 100755
--- a/indoteknik_custom/models/crm_lead.py
+++ b/indoteknik_custom/models/crm_lead.py
@@ -45,8 +45,8 @@ class CrmLead(models.Model):
leads = self.env['crm.lead'].search([
('active', '=', True),
('type', '=', 'lead'),
- # ('tag_ids', '=', False),
- ('id', '=', 12523)
+ ('tag_ids', '=', False),
+ # ('id', '=', 12523)
], limit=1000)
for lead in leads:
tags = self.env['crm.tag'].search([('id', '>', 0)])