2017-06-07 14 views
-5

選択フィールドの値を更新するにはどうすればよいですか?私はモジュール購買の記事に取り組んでいます。記事のタイプを変えたいと思っています。たとえば、Consumable、Service、または在庫があり、 "beton"、 "nettoyage"、または "d'entretien" 。odooの選択フィールドの値を変更する方法10

+0

あなたがこれまでにしてきたことを明示し、どこに問題があるのか​​を明示します。 –

+0

oooooフォーラムのOdoo関連の質問にお答えください:https://www.odoo.com/forum/help-1 – dirtyhandsphp

答えて

1

既存の選択フィールドに値を追加するには、トウの方法があります。

  1. コピー/既存のフィールドを貼り付けvlueを追加します。

    selection_add使用
    _columns = { 
    'type': fields.selection([('new_type', 'New type'),('consu', 'Consumable'),('service','Service')], 'Product Type', required=True, help="Consumable are product where you don't manage stock, a service is a non-material product provided by a company or an individual."),   
    } 
    
  2. type = fields.Selection(selection_add=[('new_type', 'New type')]) 
    
関連する問題