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

I tried this piece of code but it does not work:

fiscal_position_id = fields.Many2one(
'account.fiscal.position', string='Fiscal Position',
default=lambda self: self.env['account.fiscal.position'].search([('id','=',2)])
)


アバター
破棄
最善の回答

Hello Erik Vojtas,

For set default value in fiscal_position_id may be below code will helpful for you.
First create the record in data file for account.fiscal.position after that give the xml_ID into the default function

def _get_default_fiscal_position_id(self):
return self.env.ref('XML_ID', raise_if_not_found=False).id

fiscal_position_id = fields.Many2one('account.fiscal.position', string='Fiscal Position', default=_get_default_fiscal_position_id)





Module: sale.order: How to set default value for fiscal_position_id
https://www.odoo.com

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwar



アバター
破棄
関連投稿 返信 ビュー 活動
1
6月 22
2434
1
2月 22
2457
1
1月 22
2788
2
7月 23
4532
1
10月 22
2792