Rucha (Open ERP) has proposed merging 
lp:~openerp-dev/openobject-server/trunk-configuration-rework-imp2-rpa into 
lp:~openerp-dev/openobject-server/trunk-configuration-rework.

Requested reviews:
  qdp (OpenERP) (qdp)

For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-server/trunk-configuration-rework-imp2-rpa/+merge/66602

put proper desc in ir.actions.todo class
-- 
https://code.launchpad.net/~openerp-dev/openobject-server/trunk-configuration-rework-imp2-rpa/+merge/66602
Your team OpenERP R&D Team is subscribed to branch 
lp:~openerp-dev/openobject-server/trunk-configuration-rework.
=== modified file 'openerp/addons/base/ir/ir_actions.py'
--- openerp/addons/base/ir/ir_actions.py	2011-06-30 10:39:10 +0000
+++ openerp/addons/base/ir/ir_actions.py	2011-07-01 13:31:18 +0000
@@ -801,7 +801,12 @@
 act_window_close()
 
 class ir_actions_todo_category(osv.osv):
+    """
+    Category of Configuration Wizards
+    """
+
     _name = 'ir.actions.todo.category'
+    _description = "Configuration Wizard Category"
     _columns = {
          'name':fields.char('Name', size=64, translate=True, required=True), 
          'sequence': fields.integer('Sequence'),
@@ -816,7 +821,11 @@
                ('cancel','Cancelled')]
 
 class ir_actions_todo(osv.osv):
+    """
+    Configuration Wizards
+    """
     _name = 'ir.actions.todo'
+    _description = "Configuration Wizards"
     _columns={
         'action_id': fields.many2one(
             'ir.actions.act_window', 'Action', select=True, required=True,
@@ -824,7 +833,9 @@
         'sequence': fields.integer('Sequence'),
         'state': fields.selection(TODO_STATES, string='State', required=True),
         'name':fields.char('Name', size=64),
-        'type': fields.selection([('special','Special'),('normal','Normal'),('normal_recurring','Normal Recurring')],'Type',required=True),
+        'type': fields.selection([('special','Special'),('normal','Normal'),('normal_recurring','Normal Recurring')], 'Type', required=True, help="Special: that have to be run again on trigger (when someone select this application to be reconfigured)\
+\nNormal: that will be display in the config panel and disappear as soon it's done\
+\nNormal Recurring: that will be always displayed in the config panel regardless of it's state"),
         'groups_id':fields.many2many('res.groups', 'res_groups_action_rel', 'uid', 'gid', 'Groups'),
         'note':fields.text('Text', translate=True),
         'category_id': fields.many2one('ir.actions.todo.category','Category'),

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to