Séparation Description
[OpenERP/cmmi.git] / mo.py
diff --git a/mo.py b/mo.py
index 1873041..261222e 100644 (file)
--- a/mo.py
+++ b/mo.py
@@ -76,3 +76,23 @@ class moa(osv.Model):
                                      "moa_id",
                                      string="Projets"),
     }
+
+
+class Structure(osv.Model):
+
+    _name = "projet.structure"
+
+    _statuts = [("actif", "Actif"), ("inactif", "Inactif")]
+
+    _columns = {
+        "name": fields.char(string="Title", size=64, required=True),
+        "code": fields.char(string="Code", size=8, required=True),
+        "description": fields.text(string="Description"),
+        "parent_id": fields.many2one("projet.structure", string="Parent_id"),
+        "statut": fields.selection(_statuts, string="Statut"),
+        "role_mo_id":fields.many2one("projet.role_mo", string="Role MO"),
+        "projets": fields.many2many("projet.projet",
+                                    "projet_projet_structure_rel",
+                                    "structures",
+                                    string="Projets"),
+    }