small change in the server action

Other Action => Multi Action

bzr revid: mga@tinyerp.com-20081213063050-5z4r2h0i3ko2i6fw
This commit is contained in:
Mantavya Gajjar 2008-12-13 12:00:50 +05:30
parent 93f1f98c70
commit 98292c4dcc
2 changed files with 4 additions and 3 deletions

View File

@ -1194,9 +1194,10 @@
<label colspan="4" string="If you use a formula type, use a python expression using the variable 'object'." align="0.0"/>
</page>
<page string="Other Actions" attrs="{'invisible':[('state','!=','other')]}">
<page string="Milti Actions" attrs="{'invisible':[('state','!=','other')]}">
<separator colspan="4" string="Other Actions Configuration"/>
<field name="child_ids" nolabel="1" colspan="4" />
<label string="Only one client action will be execute, last clinent action will be consider in case of multipls clinets actions"/>
</page>
</notebook>

View File

@ -394,7 +394,7 @@ class actions_server(osv.osv):
('sms','SMS'),
('object_create','Create Object'),
('object_write','Write Object'),
('other','Others Actions'),
('other','Multi Actions'),
], 'Action State', required=True, size=32),
'code': fields.text('Python Code'),
'sequence': fields.integer('Sequence'),
@ -409,7 +409,7 @@ class actions_server(osv.osv):
'sms': fields.char('SMS', size=160, translate=True),
'child_ids': fields.many2many('ir.actions.server', 'rel_server_actions', 'server_id', 'action_id', 'Others Actions'),
'usage': fields.char('Action Usage', size=32),
'type': fields.char('Report Type', size=32, required=True),
'type': fields.char('Action Type', size=32, required=True),
'srcmodel_id': fields.many2one('ir.model', 'Model', help="In which object you want to create / write the object if its empty refer to the Object field"),
'fields_lines': fields.one2many('ir.server.object.lines', 'server_id', 'Fields Mapping'),
'record_id':fields.many2one('ir.model.fields', 'Record Id', help="privide the field name from where the record id refers, if its empty it will refer to the active id of the object")