2015-01-02 36 views
0

我没有看到我的错误在哪里,在我的产品页面上,我看到创建/选择品牌的下拉菜单,但其值为:clicshopping.manufacturer,1而不是例如华硕odoo,请在下拉列表中看到id和nt名称

当我看着我的品牌页时,我看到asus已经创建,并且都是正确的。

我的产品上有一部分xml模板。

你有什么想法吗?

谢谢

<record model="ir.ui.view" id="product_template_search_view"> 
    <field name="name">product.template.search</field> 
    <field name="model">product.template</field> 
    <field name="inherit_id" ref="product.product_template_search_view"/> 
    <field name="arch" type="xml"> 
     <field name="categ_id" position="after"> 



     <field name="clicshopping_product_manufacturer_id"/> 


     </field> 
     <group string='Group by...' position="inside"> 




     <filter string="Manufacturer" name="groupby_manufacturer" domain="[]" context="{'group_by' : 'clicshopping_product_manufacturer_id'}"/> 



     </group> 
    </field> 
    </record> 

    <record model="ir.ui.view" id="product_template_form_manufacturer"> 
     <field name="name">product.template.product.form</field> 
     <field name="model">product.template</field> 
     <field name="inherit_id" ref="clicshopping.template_product_form_view" /> 
     <field name="arch" type="xml"> 
     <field name="clicshopping_products_id" position="after" > 


      <field name="clicshopping_product_manufacturer_id" placeholder="Brand"/> 




     </field> 
     </field> 
    </record> 

    <record model="ir.actions.act_window" id="action_clicshopping_manufacturer"> 
     <field name="name">Brand</field> 
     <field name="res_model">clicshopping.manufacturer</field> 
     <field name="view_type">form</field> 
     <field name="view_mode">tree,form</field> 
    </record> 

    <menuitem name="Brand management" id="menu_clicshopping_manufacturer" action="action_clicshopping_manufacturer" parent="product.prod_config_main"/> 

有代码我的.py的

from openerp.osv import orm, fields 
from openerp.tools.translate import _ 

class clicshopping_manufacturer(orm.Model): 
    _name = 'clicshopping.manufacturer' 
    _columns = { 
     'clicshopping_manufacturers_id': fields.char('Brand manufacturer Id', size=5, help="Id manufacturer Brand table of ClicShopping must be unique"), 
     'clicshopping_manufacturers_name': fields.char('Brand Name', size=70, help='Name of brand manufacturer.'), 
     'clicshopping_manufacturers_url': fields.char('Brand Url', translate=True, size=70, help='Url of brand manufacturer.'), 
     'clicshopping_partner_id': fields.many2one('res.partner','Partner', help='Select a partner for this brand if it exists.', ondelete='restrict'), 
     'clicshopping_manufacturers_image': fields.binary('brand logo'), 
     'clicshopping_manufacturers_status': fields.boolean('Brand Manufacturer Status', default='1', help="If a manufacturer brand is not active, it will not be displayed in the catalog"), 
     'clicshopping_manufacturer_description': fields.text('Description', translate=True), 
     'clicshopping_manufacturer_seo_title': fields.char('Brand manufacturer Seo title', translate=True, size=70, help="If it empty, default in ClicSshopping will be taken"), 
     'clicshopping_manufacturer_seo_description': fields.char('Brand manufacturer Seo Description', translate=True, size=150, help="If it empty, default in ClicSshopping will be taken"), 
     'clicshopping_manufacturer_seo_keyword': fields.text('Brand manufacturer Seo Keywords', translate=True, help="If it empty, default in ClicSshopping will be taken"), 
    } 


class product_template(orm.Model): 
    _inherit = 'product.template' 
    _columns = { 
     'clicshopping_product_manufacturer_id': fields.many2one('clicshopping.manufacturer','Brand', help='Select a brand for this product.') 
    } 

回答

1

您需要声明哪些字段用于对象名称,使用_rec_name attribute。你的情况:

class clicshopping_manufacturer(orm.Model): 
    _name = 'clicshopping.manufacturer' 
    _rec_name = 'clicshopping_manufacturers_name' 

    # ... 

或者,你可以只重命名clicshopping_manufacturers_namename,因为name_rec_name默认值。

如果我是你的话,我会选择第二个选项 - 我认为所有的字段名称都太长了,说实话。我没有看到任何好处,几乎所有的字段名称加上“clicshopping_manufacturers”。这会让你放慢速度,让你的代码更不易读。

相关问题