Correction wizard MOA et MOE
[OpenERP/cmmi.git] / projet.py
index fe8149f..dd108b2 100644 (file)
--- a/projet.py
+++ b/projet.py
 
 from openerp.osv import osv, fields
 
+
 class Projet(osv.Model):
 
-    _name = "projet.projet"
+    _name = "cmmi.projet"
+
+    _domains = {
+        'moe': [('role_mo_id.type_mo', '=', "MOE")],
+        'moa': [('role_mo_id.type_mo', '=', "MOA")],
+    }
 
     _columns = {
         "name": fields.char(string="Title", size=64, required=True),
         "description": fields.text(string="Description"),
-        "domaines": fields.many2many("projet.domaine",
-                                     "projet_projet_domaine_rel",
-                                     "projets",
-                                     string="Domaines"),
-        "structures": fields.many2many("projet.structure",
-                                       "projet_projet_structure_rel",
-                                       "projets",
+        "domaines": fields.one2many("cmmi.projet.domaine",
+                                    "project_id",
+                                    string="Domaines"),
+        "structures": fields.many2many("cmmi.mo.structure",
                                        string="Structures"),
-        "structures_moe": fields.many2many("projet.structure",
-                                           "projet_projet_structure_rel",
-                                           "projets",
+        "structures_moe": fields.many2many("cmmi.mo.structure",
                                            string="Structures",
-                                           domain=[('role_mo_id.type_mo', '=', "MOE")]),
-        "structures_moa": fields.many2many("projet.structure",
-                                           "projet_projet_structure_rel",
-                                           "projets",
+                                           domain=_domains['moe']),
+        "structures_moa": fields.many2many("cmmi.mo.structure",
                                            string="Structures",
-                                           domain=[('role_mo_id.type_mo', '=', "MOA")]),
-        "team_members": fields.many2many("projet.teammember",
-                                         "projet_projet_teammember_rel",
-                                         "projets",
+                                           domain=_domains['moa']),
+        "team_members": fields.many2many("cmmi.partner.teammember",
+                                         "cmmi_projet_teammember_rel",
+                                         "projet_id",
+                                         "partner_id",
                                          string="Team Members"),
-        "modules": fields.one2many("projet.module",
+        "modules": fields.one2many("cmmi.description.module",
                                    "projet_id",
                                    string="Modules"),
-        "chantiers": fields.one2many("projet.chantier",
+        "chantiers": fields.one2many("cmmi.axes.chantier",
                                      "projet_id",
                                      string="Chantiers"),
-        "paliers": fields.one2many("projet.palier",
+        "paliers": fields.one2many("cmmi.axes.palier",
                                    "projet_id",
                                    string="Paliers"),
-        "phases": fields.one2many("projet.phase",
-                                   "projet_id",
-                                   string="Phases"),
-        "evolutions":fields.one2many("projet.evolution",
-                                     "projet_id",
-                                     string="Evolutions"),
-        "moe_id": fields.many2one("projet.moe", string="MoE", required=True),
-        "moa_id": fields.many2one("projet.moa", string="MoA", required=True),
-        "main_domain": fields.many2one("projet.domaine",
+        "phases": fields.one2many("cmmi.phase",
+                                  "projet_id",
+                                  string="Phases"),
+        "evolutions": fields.one2many("cmmi.evolution",
+                                      "projet_id",
+                                      string="Evolutions"),
+        "moe_id": fields.many2one("cmmi.mo.moe", string="MoE", required=True),
+        "moa_id": fields.many2one("cmmi.mo.moa", string="MoA", required=True),
+        "main_domain": fields.many2one("cmmi.description.domaine",
                                        string="Domaine principal"),
-        "main_structure": fields.many2one("projet.structure",
+        "main_structure": fields.many2one("cmmi.mo.structure",
                                           string="Structure principale"),
     }
 
+    def action_add_domain(self, cr, uid, ids, context=None):
+        pass
 
-class Evolution(osv.Model):
-    _name = "projet.evolution"
+class ProjetDomaine(osv.Model):
 
-    _priorites = [("incontournable", "Incontournable"),
-                  ("necessaire", "Nécéssaire"),
-                  ("utile", "Utile")]
+    _name = "cmmi.projet.domaine"
 
-    _statuts = [("cree", "Crée"), ("encours", "En cours"),
-                ("termine", "Terminé"), ("abandonne", "Abandonné"),
-                ("suspendu", "Suspendu")]
+    def _get_name(self, cr, uid, ids, field_name=None, arg=None, context=None):
+        if isinstance(ids, (int, long)):
+            ids = [ids]
+        #return {i: r.domaine_id.name for i, r in
+        #        zip(ids, self.browse(cr, uid, ids, context=context))}
+        return dict([(i, r.domaine_id.name) for i, r in
+                zip(ids, self.browse(cr, uid, ids, context=context))])
 
     _columns = {
-        "pid": fields.integer(string="PID"),
-        "name": fields.char(string="Title", size=64, required=True),
-        "description": fields.text(string="Description"),
-        "objectif": fields.text(string="Objectif"),
-        "commentaire": fields.text(string="Commentaire"),
-        "keywords": fields.text(string="Mots clés"),
-        "priorite": fields.selection(_priorites, string="Priorité"),
-        "statut": fields.selection(_statuts, string="Statut"),
-        "charges": fields.one2many("projet.charge",
-                                   "evolution_id",
-                                   string="Charges"),
-        "module_id": fields.many2one("projet.module",
-                                     string="Modules"),
-        "chantier_id": fields.many2one("projet.chantier",
-                                    string="Chantier"),
-        "palier_id": fields.many2one("projet.palier",
-                                     string="Palier"),
-        "phase_id": fields.many2one("projet.phase",
-                                    string="Phase"),
-        "projet_id": fields.many2one("projet.projet",
-                                     string="Projet"),
+        "name": fields.function(_get_name,
+                                type='char',
+                                store=True,
+                                string="Nom du domaine"),
+        "main": fields.boolean(string="Domaine principal ?"),
+        "project_id": fields.many2one("cmmi.projet",
+                                      string="Projet"),
+        "domaine_id": fields.many2one("cmmi.description.domaine",
+                                      string="Domaine"),
     }
 
-
-class Teammember(osv.Model):
-    _name = "projet.teammember"
-
-    _inherit = "res.partner"
+    def onchange_main(self, cr, uid, ids, project, domaine, main, context=None):
+        if not main:
+            return {'value': {'main': True},
+                    'warning': {
+                        'title'   : "Integrity Warning",
+                        'message' : "One of the domains should be the main domain",
+                    }
+                }
+        ids = self.search(
+            cr,
+            uid,
+            [
+                ('project_id', '=', project),
+                ('domaine_id', '!=', domaine),
+            ],
+            context=context,
+        )
+        current_id = self.search(
+            cr,
+            uid,
+            [
+                ('project_id', '=', project),
+                ('domaine_id', '=', domaine),
+            ],
+            context=context,
+        )
+        self.write(cr, uid, ids, {'main': False}, context=context)
+        self.write(cr, uid, current_id, {'main': True}, context=context)
+
+        return {'value': {'main': True}}
+
+
+
+class ProjetMoe(osv.Model):
+    _name = "cmmi.projet.moe"
+
+    def _get_name(self, cr, uid, ids, field_name=None, arg=None, context=None):
+        if isinstance(ids, (int, long)):
+            ids = [ids]
+        return dict([(i, r.domaine_id.name) for i, r in
+                zip(ids, self.browse(cr, uid, ids, context=context))])
 
     _columns = {
-        "projets": fields.many2many("projet.projet",
-                                    "projet_projet_teammember_rel",
-                                    "team_members",
-                                    string="Projets"),
-        "charges": fields.one2many("projet.projet",
-                                   "team_members",
-                                   string="Charges"),
+        "name": fields.function(_get_name,
+                                type='char',
+                                store=True,
+                                string="Nom de la MOE"),
+        "main": fields.boolean(string="MOE principale ?"),
+        "project_id": fields.many2one("cmmi.projet",
+                                      string="Projet"),
+        "moe_id": fields.many2one("cmmi.mo.moe",
+                                      string="MOE"),
     }
 
 
-class Charge(osv.Model):
-    _name = "projet.charge"
+class ProjetMoa(osv.Model):
+    _name = "cmmi.projet.moe"
+
+    def _get_name(self, cr, uid, ids, field_name=None, arg=None, context=None):
+        if isinstance(ids, (int, long)):
+            ids = [ids]
+        return dict([(i, r.domaine_id.name) for i, r in
+                zip(ids, self.browse(cr, uid, ids, context=context))])
 
     _columns = {
-        "name": fields.char(string="Title", size=64, required=True),
-        "description": fields.text(string="Description"),
-        "teammember_id": fields.many2one("projet.teammember",
-                                         string="Team Member",
-                                         required=True),
-        "phase_id": fields.many2one("projet.phase",
-                                    string="Phase",
-                                    required=True),
-        "evolution_id": fields.many2one("projet.evolution",
-                                    string="Evolution",
-                                    required=True),
-        "mo_id": fields.many2one("projet.mo",
-                                 string="Mo"),
-    }
+        "name": fields.function(_get_name,
+                                type='char',
+                                store=True,
+                                string="Nom de la MOA"),
+        "main": fields.boolean(string="MOA principale ?"),
+        "project_id": fields.many2one("cmmi.projet",
+                                      string="Projet"),
+        "moa_id": fields.many2one("cmmi.mo.moa",
+                                      string="MOA"),
+    }
\ No newline at end of file