~herrera-dev/addons-vauxoo/new_changes_user_story

« back to all changes in this revision

Viewing changes to user_story/view/userstory_view.xml

  • Committer: Gabriela
  • Date: 2012-11-15 18:48:20 UTC
  • mfrom: (508.1.1 miguel-us)
  • Revision ID: gabriela@openerp.com.ve-20121115184820-5eq5ehigqa5k7xs1

[MERGE] Added improvements to user_story and sprint_kanban.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
      <field name="model">user.story</field>
8
8
      <field name="type">form</field>
9
9
      <field name="arch" type="xml">
10
 
        <form string="User Story">
11
 
          <field name="name" />
12
 
          <field name="date" />
13
 
          <field name="owner" />
14
 
          <field name="project_id" />
15
 
          <field name="planned_hours"/>
16
 
          <field name="user_id" />
17
 
          <field name="sk_id" />
 
10
        <form string="User Story" version="7.0">
 
11
          <header>
 
12
                         <button name="do_draft" string="Draft" type="object" states="open,pending,done,cancelled"/>
 
13
                         <button name="do_progress" string="Progress" type="object" states="draft,pending,done,cancelled"/>
 
14
                         <button name="do_pending" string="Pending" type="object" states="draft,open,done,cancelled"/>
 
15
                         <button name="do_done" string="Done" type="object" states="draft,open,pending,cancelled"/>
 
16
                         <button name="do_cancel" string="Cancel" type="object" states="draft,open,pending,done"/>
 
17
                        <field name="state" widget="statusbar"/>
 
18
                  </header>
 
19
                  <sheet string="User Story">
 
20
                  <label for="name" class="oe_edit_only" />
 
21
                        <h1><field name="name" /></h1>
 
22
                        <group>
 
23
                                <group>
 
24
                                        <field name="owner" />
 
25
                                        <field name="date" />
 
26
                                        <field name="user_id" />
 
27
                                        <field name="code" />
 
28
                                </group>
 
29
                                <group>
 
30
                                        <field name="project_id" />
 
31
                                        <field name="planned_hours" />
 
32
                                        <field name="sk_id" />
 
33
                                </group>
 
34
                        </group>
18
35
          <notebook colspan="4">
19
36
            <page string="Description">
20
37
              <separator string="Description" colspan='4' />
21
 
              <field name="description" colspan="4" nolabel="1" />
 
38
              <field name="description" colspan="4" nolabel="1" placeholder="Add a description here ..."/>
22
39
              <separator string="Acceptability Criteria" colspan='4' />
23
40
              <field name="accep_crit_ids" colspan="4" nolabel="1" >
24
41
                <form string="Acceptability Criteria">
34
51
              </field>
35
52
            </page>
36
53
            <page string="Other Info">
37
 
              <field name="info" colspan="4" nolabel="1" /> 
 
54
                          <separator string="Information" colspan='4' />
 
55
              <field name="info" colspan="4" placeholder="Add a other info here ..."/> 
38
56
              <separator string="Asumptions" colspan='4' />
39
 
              <field name="asumption" colspan="4" nolabel="1" />
 
57
              <field name="asumption" colspan="4" placeholder="Add a asumptions here ..."/>
40
58
            </page>
41
59
            <page string="Link">
42
60
              <separator string="Tasks" colspan='4' />
43
61
              <field name="task_ids" colspan="4" nolabel="1" />
44
62
            </page>
45
63
          </notebook>
 
64
                  </sheet>
46
65
        </form>
47
66
      </field>
48
67
    </record>