这是我的代码:
import product_specification
开放程序.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>
这是输出:
不,字段标签/名称/ID。如何定义和解决这个问题。
我也研究了这个链接:
http://openerp-server.readthedocs.org/en/latest/03_module_dev_03.html
但仍然无法解决这个问题。此外,我没有为我的这个模块编写任何树视图代码。因此,当我转到树视图时,它也显示了一些警告错误。需要了解观点的差异并解决现有的错误。