task_stage_demo

bzr revid: rmu@tinyerp.com-20111018104339-9mrmoezwl2997q2x
This commit is contained in:
RavishchanraMurari (Open ERP) 2011-10-18 16:13:39 +05:30
parent f82c2a0249
commit a831b05178
1 changed files with 3 additions and 3 deletions

View File

@ -463,8 +463,8 @@
<field name="arch" type="xml">
<search string="Task Edition">
<group>
<filter string="New" domain="[('state','=','draft')]" help="New Tasks" icon="terp-check"/>
<filter string="In Progress" domain="[('state','=','open')]" name="in progress" help="In Progress Tasks" icon="terp-camera_test"/>
<filter string="New" domain="[('state','=','draft')]" name="current" help="New Tasks" icon="terp-check"/>
<filter string="In Progress" domain="[('state','=','open')]" name="in_progress" help="In Progress Tasks" icon="terp-camera_test"/>
<filter string="Pending" domain="[('state','=','pending')]" context="{'show_delegated':False}" help="Pending Tasks" icon="terp-gtk-media-pause"/>
<separator orientation="vertical"/>
<filter name="edit"
@ -507,7 +507,7 @@
<field name="view_mode">tree,form,calendar,gantt,graph,kanban</field>
<field eval="False" name="filter"/>
<field name="view_id" ref="view_task_tree2"/>
<field name="context">{"search_default_user_id":uid, "search_default_in progress": 1}</field>
<field name="context">{"search_default_user_id":uid, "search_default_in_progress": 1}</field>
<field name="search_view_id" ref="view_task_search_form"/>
<field name="help">A task represents a work that has to be done. Each user works in his own list of tasks where he can record his task work in hours. He can work and close the task itself or delegate it to another user. If you delegate a task to another user, you get a new task in pending state, which will be reopened when you have to review the work achieved. If you install the project_timesheet module, task work can be invoiced based on the project configuration. With the project_mrp module, sales orders can create tasks automatically when they are confirmed.</field>
</record>