Openerp模块输出未正确生成

时间:2014-02-05 06:32:55

标签: xml openerp openerp-7

这是我的代码:

import product_specification

OpenERP的的.py

{
'name': "Product Specification",
'version': "1.0",
'author': "iologic",
'category': "Tools",
'depends': ['product'],
'data': ['product_specification.xml'],
'demo': [],
'installable': True,

}

product_specification.py

    from openerp.osv import osv, fields

class product_specification(osv.osv):

  _inherit = "product.product"
  _name = "product.specification"

  _columns = {
    'prototype': fields.char('Prototype#', size=20),
    'style': fields.char('Style#', size=20),
    'customer': fields.char('Customer', size=20),
    'body_type': fields.char('Body Type', size=20),
    'program_brand': fields.char('Program/Brand', size=20),
    'color_asstmnt': fields.char('Color Asstmnt', size=200),
    'size_info': fields.integer('Size Info', size=20),
    'description': fields.char('Description', size=500),
    'designer': fields.char('Designer', size=20),
    'factory': fields.char('factory', size=20),
    'pcs_hanger': fields.integer('Pcs/Hanger', size=20),
    'developed_sold': fields.char('Developed/Sold', size=20),

  }


product_specification()

product_specification.xml

    <?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record model="ir.ui.view" id="product_specification_product">
    <field name="name">product.specification</field>
    <field name="model">product.specification</field>
    <field name="arch" type="xml">
      <form string="Create Product Specification" version="7.0">
        <field name="prototype">prototype</field>
        <field name="style">style</field>
        <field name="customer">customer</field>
        <field name="body_type">body type</field>
        <field name="program_brand">program brand</field>
        <field name="color_asstmnt">color Asstment</field>
        <field name="size_info">size info</field>
        <field name="description">description</field>
        <field name="designer">designer</field>
        <field name="factory">factory</field>
        <field name="pcs_hanger">pcs hanger</field>
        <field name="developed_sold">developed sold</field>
       </form>
    </field>
</record>
<record id="product_specification_product_act_window" model="ir.actions.act_window">
        <field name="name">Product Specification</field>
        <field name="type">ir.actions.act_window</field>
        <field name="res_model">product.specification</field>
        <field name="view_type">form</field>
        <field name="view_id" ref="product_specification_product"/>
</record>
<menuitem id="menu_product_specification" name="Product Specification" action="product_specification_product_act_window"/>
</data>
</openerp>

这是输出:

Screen capture for output view

不,字段标记/名称/ ID。如何定义&amp;解决这个问题。

我也研究这个链接:

http://openerp-server.readthedocs.org/en/latest/03_module_dev_03.html

但仍无法解决这个问题。更多我没有为我的模块编写任何树视图代码。因此,当我进入树状视图时,它也显示出一些警告错误。需要了解观点的差异&amp;解决现有的bug。

1 个答案:

答案 0 :(得分:1)

试试这个。使用组或标签。更新你的观点。

<record model="ir.ui.view" id="product_specification_product">
<field name="name">product.specification</field>
<field name="model">product.specification</field>
<field name="arch" type="xml">   
  <form string="Create Product Specification" version="7.0">
    <group>
    <field name="prototype"/>
    <field name="style"/>
    <field name="customer"/>
    <field name="body_type"/>
    <field name="program_brand"/>
    <field name="color_asstmnt"/>
    <field name="size_info"/>
    <field name="description"/>
    <field name="designer"/>
    <field name="factory"/>
    <field name="pcs_hanger"/>
    <field name="developed_sold"/>
    </group>
   </form>
</field>
</record>

并且不要忘记在执行此更改后更新您的模块。

相关问题