コンテンツへスキップ
メニュー
この質問にフラグが付けられました
3 返信
7279 ビュー

How do I show the product default code in the "Product" column and product name in the "Description" column? 

http://i.imgur.com/pnoKtxI.png

アバター
破棄
最善の回答

Hello Odoo_fa,

You need to do the following:

1. Override the name_get() of product.product model. (So Product column will display code!)

2. Override the onchange trigger of product_id of the purchase.order.line model. (So Description column will display name!)

Hope this helps.

Thanks.

アバター
破棄
最善の回答

class puchase_order_line(models.Model):

_inherit='puchase.order.line'

default_code = fields.Char('Internal Reference',related='product_id.product_tmpl_id.default_code')


you add a related field in order line and so you can print or add in a tree view ...

アバター
破棄
最善の回答

Hi Serpant,

could you please expalin more I want to show the default_code in account_invoice instead of Product

アバター
破棄
関連投稿 返信 ビュー 活動
0
5月 22
2611
0
7月 24
1960
1
11月 20
4207
1
10月 20
4813
1
2月 17
4061