Ajout de la vue formulaire pour les évolutions
authorAlicia FLOREZ <alicflorez@gmail.com>
Fri, 3 May 2013 15:30:38 +0000 (17:30 +0200)
committerAlicia FLOREZ <alicflorez@gmail.com>
Fri, 3 May 2013 15:30:38 +0000 (17:30 +0200)
views/projet.xml

index d9cdac0..0de0ff9 100644 (file)
         </record>
 
 
+        <!--         VIEWS EVOLUTIONS         -->
+
+        <record model="ir.ui.view" id="evolution_form_view">
+            <field name="name">evolution.form</field>
+            <field name="model">cmmi.evolution</field>
+            <field name="arch" type="xml">
+                <form string="Formulaire évolution" version="7.0">
+                    <header />
+
+                    <sheet>
+                        <group colspan="4" col="3">
+                            <field name="name" colspan="3"/>
+                            <field name="pid" colspan="3"/>
+                            <field name="priorite" colspan="3"/>
+                            <field name="statut" colspan="3"/>
+                        </group>
+                        <notebook colspan="4">
+                            <page string="Détails">
+                                <group colspan="4" col="1">
+                                    <field name="description" />
+                                    <field name="objectif" />
+                                    <field name="commentaire" />
+                                </group>
+                            </page>
+                            <page string="Charges">
+                                <field name="charges">
+                                    <field name="name" />
+                                </field>
+                            </page>
+                        </notebook>
+                    </sheet>
+                </form>
+            </field>
+        </record>
+
+
         <!--         ACTIONS         -->
 
         <record model="ir.actions.act_window" id="projets_list_action">