Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
3429 Переглядів

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

Related Posts Відповіді Переглядів Дія
2
вер. 23
4964
Remove "add an item" Вирішено
12
жовт. 23
36022
4
бер. 15
5127
2
бер. 15
6223
0
бер. 15
4965