Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
3425 Представления

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
4961
12
окт. 23
36022
4
мар. 15
5127
2
мар. 15
6223
0
мар. 15
4963