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)])
)
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
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
|
2609 | ||
|
1
2월 22
|
2654 | ||
|
1
1월 22
|
2977 | ||
|
2
7월 23
|
4785 | ||
|
1
10월 22
|
2999 |