Yes, your action, tree and form are pointing to mymodule class which doesn't 
exist. Change mymodule.py to:


class mymodule(osv.osv):
    _name = 'mymodule'
      

You might also want to change the action to include:


<!-- les actions --> 
<record id="action_mymodule_form" model="ir.actions.act_window" > 
<field name="name">mymodule</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">mymodule</field>
<field name="view_type">form</field>
<field name="view_id" ref="mymodule_tree_view"/>
</record>

Cheers




-------------------- m2f --------------------

--
http://www.openobject.com/forum/viewtopic.php?p=55560#55560

-------------------- m2f --------------------


_______________________________________________
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users

Reply via email to