Ajout d'un champ charge_reel dans palier
[OpenERP/cmmi.git] / phase.py
index 035c8c2..40b568a 100644 (file)
--- a/phase.py
+++ b/phase.py
@@ -5,20 +5,11 @@
 from openerp.osv import osv, fields
 
 
-class Type_Phase(osv.Model):
-    _name = "projet.type_phase"
-
-    _statuts = [("actif", "Actif"), ("inactif", "Inactif")]
-
-    _columns = {
-        "name": fields.char(string="Title", size=64, required=True),
-        "description": fields.text(string="Description"),
-        "statut": fields.selection(_statuts, string="Statut"),
-    }
-
-
+# ================================== PHASE ================================== #
 class Phase(osv.Model):
-    _name = "projet.phase"
+    _name = "cmmi.phase"
+
+    _description = "Table de reference des phases."
 
     _statuts = [("actif", "Actif"), ("inactif", "Inactif")]
 
@@ -26,17 +17,4 @@ class Phase(osv.Model):
         "name": fields.char(string="Title", size=64, required=True),
         "description": fields.text(string="Description"),
         "statut": fields.selection(_statuts, string="Statut"),
-        "type_phase_id": fields.many2one("projet.type_phase",
-                                         string="Type phase"),
-        "projet_id": fields.many2one("projet.projet",
-                                     string="Projet",
-                                     required=True),
-        "charges": fields.one2many("projet.charge",
-                                   "phase_id",
-                                   string="Charges"),
-        "evolutions": fields.one2many("projet.evolution",
-                                      "phase_id",
-                                      string="Evolutions"),
-        "palier_id": fields.many2one("projet.palier",
-                                     string="Palier"),
     }