Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
3837 มุมมอง

i try to code in eclipse and when i run it show me any error

This is test_module.py file

from osv import osv from osv import fields class MyClass(osv.osv): ''' classdocs ''' _name='my.class' _columns={ 'name':fields.char("Name",size=128,), 'code':fields.char("Code",size=127,), } MYClass()

def __init__(selfparams):
'''
Constructor
'''

and this is xml file

<?xml version=“1.0″ encoding=“utf-8″?>

<openerp>

<data>

   <record model=“ir.ui.view” id=“test_base_form”>

       <field name=“name”>test.base.form</field>

           <field name=“model”>test.base</field>

           <field name=“type”>form</field>

           <field name=“arch” type=“xml”>

               <form string=“Test Base”>

                   <field name=“name”/>

                   <field name=“code”/>

               </form>

          </field>

    </record>

    <record model=“ir.ui.view” id=“test_base_tree”>

        <field name=“name”>test.base.tree</field>

        <field name=“model”>test.base</field>

        <field name=“type”>tree</field>

        <field name=“arch” type=“xml”>

            <tree string=“Test Base”>

                <field name=“name”/>

                <field name=“code”/>

            </tree>

        </field>

    </record>

    <record model=“ir.actions.act_window” id=“action_test_seq”>

        <field name=“name”>Test Base</field>

        <field name=“res_model”>test.base</field>

        <field name=“view_type”>form</field>

        <field name=“view_mode”>tree,form</field>

    </record>

    <menuitem id=“menu_test_base_main” name=“Test Base”/>

    <menuitem id=“menu_test_base” parent=“menu_test_base_main”

              name=“Test Base” action=“action_test_seq”/>

</data>

</openerp>

and when i go to init_py file and import like this import test_module it can not me show any error then when i want to show this modulue and i go to settings=update modulue list then in open erp it can not show me any modulue \ where is the problem?\ iutry so many time but not show modulue in open erp

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

You have to select installed modules then remove the installed filter in the right top corner and search for your new module.

อวตาร
ละทิ้ง
ผู้เขียน

i do this but always modulue not visible in open erp

You have to add the __openerp__.py file

ผู้เขียน

i also add this file

If you want, you can send me your source code, I will take a look on it: openerp.geek@gmail.com

ผู้เขียน

ok i will send

ผู้เขียน

btw i post all code ..what i send u in mail?

I didn't receive anything. Send all your module files( __init__.y, __openerp__.py, etc ). I am trying to help you

ผู้เขียน

i send u please check mail

Please check your mail. Your module is now seen in module list. Don't forget to mark my response as accepted.

คำตอบที่ดีที่สุด

You need to create __openerp__.py file.

อวตาร
ละทิ้ง
ผู้เขียน

i also create this file but modulue is not visible in open erp

In __openerp__.py file, 'installable' is True?

ผู้เขียน

yes it is true

Give me __openerp__.py file details.

ผู้เขียน

{ "name" : "Test Module", "version" : "1.1", "author" : "Ishtiaq",

"depends" : ["base"], "init_xml" : [], "demo_xml" : [], "update_xml" : ["test_view.xml"], "installable": True, "active": True }

ผู้เขียน

i tried so many times but the module not show in open erp how i show it there is no error in eclipse all files are correct but always not show =(

Related Posts ตอบกลับ มุมมอง กิจกรรม
1
มี.ค. 15
13320
1
ก.ย. 18
12955
0
มี.ค. 15
5243
2
ธ.ค. 23
12305
3
ก.ค. 22
22560