跳至内容
菜单
此问题已终结
1 回复
3418 查看

i try to show moulue in open erp

ALL FILES __init__._py file

import asset_allocation

__openerp__.py file

{
'name' :'asset_allocation',
 'version':'1.1',
'author':'noreen',
'category':'Generic Modules/Others',
 'depends':['base'],
'data':'[asset_allocation_view.xml]',
'installable': True,
'active':False,
'demo':[],

}

asset_allocation_view.xml xml <openerp> <data>

    <!--

   <!--
    Asset Allocation
       -->

<record model="ir.ui.view" id="view_asset_allocation_form">
    <field name="name">asset.allocation.form</field>
    <field name="model">asset.allocation</field>
    <field name="type">form</field>
    <field name="arch" type="xml">
        <form string="Asset Allocation">
            <field name="asset_id"/>
            <field name="employee_id"/>
            <field name="asset_status"/>
            <field name="note"/>
        </form>
    </field>
</record>

<record model="ir.ui.view" id="view_asset_allocation_tree">
    <field name="name">asset.allocation.tree</field>
    <field name="model">asset.allocation</field>
    <field name="type">tree</field>
    <field name="arch" type="xml">
        <tree string="Asset Allocation">
            <field name="asset_id"/>
            <field name="employee_id"/>
            <field name="asset_status"/>
            <field name="note"/>
        </tree>
    </field>
</record>

<record id="action_asset_allocation" model="ir.actions.act_window">
    <field name="name">Asset Allocation</field>
    <field name="type">ir.actions.act_window</field>
    <field name="res_model">asset.allocation</field>
    <field name="view_mode">tree,form</field>
</record>

<menuitem id="menu_asset_allocation" parent="menu_finance_assets" action="action_asset_allocation"/>

  </data>
  </openerp>

asset_allocation.py

      from openerp.osv import fields,osv
     class asset_allocation(osv.osv):
       _name = 'asset.allocation'
     _description = 'Asset Allocation'
      _columns = {
     'asset_id': fields.many2one('account.asset.asset', 'Asset', required=True),
    'employee_id': fields.many2one('hr.employee', 'Employee', required=True),
    'asset_status': fields.datetime( 'Status', required=True,),
    'note': fields.text('Note'),
    }

     asset_allocation()

but it is not show in open erp ?where is the problem

形象
丢弃
最佳答案

First, you have to enable Technical Features for your User.

Then you have to press Update your Module List on Configuration Page.

Now go to Installed Modules and remove Installed from Search Box. You are going to find your module right there if it's is allocated in the correct path

形象
丢弃
编写者

i all do this but not work

Maybe your addon is not in the addons folder... These are all the steps to do it, and this works for everyone.

I have the same problem. All I do that's not work and I installed my new server for odoo v8. What can I do for that please

相关帖文 回复 查看 活动
2
9月 23
4942
12
10月 23
36020
4
3月 15
5123
2
3月 15
6222
0
3月 15
4956