I need a help to create a dynamic view. Let me explain: I have Form1 and Form2 views. Form1 contains expression
field and extract
button. Form2 contains extracted elements of the expression from Form1. For example when you enter (a+b)*c-d*0,5
to Form1's expression field, Form2 should extract and display this:
( - open brace
a - variable
+ - addition
b - variable
) - close brace
* - multiplication
c - variable
- - subtraction
d - variable
* - multiplication
0,5 - constant number
Now, here is my class:
class wz_formula(osv.osv_memory):
"""
Formula Wizard
"""
_name = "wz.formula"
_inherit = "ir.wizard.screen"
_description = "Formula Wizard"
_columns = {
'name': fields.char('Formula name', required=True, size=64)
, 'expression': fields.char('expression', required=True, size=64)
, 'state': fields.selection([('init','init'),('done','done')], 'state', readonly=True)
}
_defaults = {
'state': 'init'
}
def next(self, cr, uid, ids, context=None):
if context is None:
context = {}
formula_obj = self.browse(cr, uid, ids)[0]
formula_name = formula_obj.name
infix = formula_obj.expression
if formula_name and expression:
modobj = self.pool.get('ir.module.module')
mids = modobj.search(cr, uid, [('state', '=', 'installed')])
modobj.update_translations(cr, uid, mids, [formula_name, expression], context or {})
self.write(cr, uid, ids, {'state': 'done'}, context=context)
return {
'name': _('Formula')
, 'view_type': 'form'
, 'view_mode': 'form'
, 'view_id': False
, 'res_model': 'wz.formula'
, 'domain': []
, 'context': dict(context, active_ids=ids)
, 'type': 'ir.actions.act_window'
, 'target': 'new'
, 'res_id': ids and ids[0] or False
}
# create an object
wz_formula()
Here is my xml:
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_wz_formula" model="ir.ui.view">
<field name="name">Formula</field>
<field name="model">wz.formula</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Formula">
<group colspan="8" col="8" states="init">
<separator string="Formula" colspan="8"/>
<field name="state" invisible="1"/>
<field name="name"/>
<field name="expression" width="220"/>
<button special="cancel" string="Cancel" icon="gtk-cancel" colspan="1"/>
<button name="next" string="Next" type="object" icon="gtk-ok" colspan="1"/>
</group>
<group colspan="8" col="8" states="done">
<separator string="Done" colspan="8"/>
<button special="cancel" string="Close" icon="gtk-cancel"/>
</group>
</form>
</field>
</record>
<record id="action_view_wz_formula" model="ir.actions.act_window">
<field name="name">Formula</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">wz.formula</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
<menuitem
name="Create a formula"
action="action_view_wz_formula"
id="menu_view_wz_formula"
parent="menu_fs_root" sequence="2"/>
</data>
</openerp>
So far, it just switches between Form1 and Form2. How can I extract the expression as I explained above?