0

株式移動ツリーにカテゴリを表示するにはどうすればよいですか。これは私のコーディングです。

私のビューファイル。

<record id="royalfood_stock_move_tree_view" model="ir.ui.view">
    <field name="name">stock.move.tree</field>
    <field name="model">stock.move</field>
    <field name="inherit_id" ref="stock.view_move_tree" />
    <field name="arch" type="xml"> 
              <xpath expr="//field[@name='product_id']" position="before">  
            <field name="categ_id" groups="base.group_user"/>   
              </xpath> 
    </field>
</record>

私の .py ファイル

class custom_stock_move_tree(osv.osv_memory):
_columns = {    
             'categ_id': fields.related('product_id', 'categ_id', type='many2one' ,relation='product.category', store=True),              
            }
custom_stock_move_tree()

どんな助けでも大歓迎です。

4

1 に答える 1

0

このファイルを試してください。

あなたの.pyファイル

class custom_stock_move_tree(osv.Model): #their is different b/w osv.Model and osv.osv_memory before to use it read it's usage

    _inherit = 'stock.move' # if you want to add data in existing module use inherit  
    _columns = 
    {    
        'categ_id': fields.related('product_id', 'categ_id', type='many2one' ,relation='product.category', store=True, string='Product Category'),              
    }

あなたのview.xmlファイル

<record id="royalfood_stock_move_tree_view" model="ir.ui.view">
<field name="name">stock.move.tree</field>
<field name="model">stock.move</field>
<field name="inherit_id" ref="stock.view_move_tree" />
<field name="arch" type="xml"> 
    <xpath expr="//field[@name='product_id']" position="before">  
        <field name="categ_id" groups="base.group_user"/>   
    </xpath> 
</field>

この後、株式移動ツリー ビューを参照してください。

于 2014-02-18T08:48:13.207 に答える