Browse Source

[IMP] : simplify the code, use filtered function instead of a simple condition

pull/159/head
Adil Houmadi 9 years ago
parent
commit
7deb03adb1
  1. 3
      web_shortcuts/model/web_shortcut.py

3
web_shortcuts/model/web_shortcut.py

@ -40,8 +40,7 @@ class web_shortcut(models.Model):
def get_user_shortcuts(self, user_id):
shortcuts = self.search([('user_id', '=', user_id)])
res = []
for shortcut in shortcuts:
if shortcut.menu_id:
for shortcut in shortcuts.filtered('menu_id'):
_name = shortcut.menu_id.name_get()
_name = _name[0][1] if len(_name) else ''
_id = shortcut.menu_id.id

Loading…
Cancel
Save