Browse Source

Merge branch 't69-add-superior'

Roland Haroutiounian 9 years ago
parent
commit
2591d95409
2 changed files with 7 additions and 1 deletions
  1. 6
    0
      leobject/datasources/ledatasourcesql.py
  2. 1
    1
      leobject/leobject.py

+ 6
- 0
leobject/datasources/ledatasourcesql.py View File

423
             cur.execute('SELECT last_insert_id()')
423
             cur.execute('SELECT last_insert_id()')
424
             relation_id, = cur.fetchone()
424
             relation_id, = cur.fetchone()
425
 
425
 
426
+        if nature == 'parent':
427
+            parent_superiors = lesup.superiors()
428
+            for superior in parent_superiors:
429
+                depth = depth - 1 if depth is not None else 1
430
+                self.add_relation(lesup=superior.lodel_id, lesub=lesub.lodel_id, nature='parent', depth=depth, rank=rank)
431
+
426
         return relation_id
432
         return relation_id
427
 
433
 
428
     ## @brief Fetch a superiors list ordered by depth for a LeType
434
     ## @brief Fetch a superiors list ordered by depth for a LeType

+ 1
- 1
leobject/leobject.py View File

304
         if leo_is_sup:
304
         if leo_is_sup:
305
             return cls._datasource.get_subordinates(leo, nature)
305
             return cls._datasource.get_subordinates(leo, nature)
306
         else:
306
         else:
307
-            return cls._datasource.get_superior(leo, nature)
307
+            return cls._datasource.get_superiors(leo, nature)
308
     
308
     
309
     ## @brief Prepare a field_list
309
     ## @brief Prepare a field_list
310
     # @param field_list list : List of string representing fields
310
     # @param field_list list : List of string representing fields

Loading…
Cancel
Save