How to add new state in invoice form view in odoo 13
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
1
회신
3905
화면
You can add as following
class AccountInvoiceInherit(models.Model):
_inherit = 'account.move'
state = fields.Selection(selection_add=[
('new_state', 'New Satate'), ('done',)
])
Thank you..But i want to add statein between draft and open.how can i do that?
Hi,
Updated in my answer
Thanks
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
1
8월 21
|
2435 | ||
|
0
4월 21
|
2383 | ||
|
1
6월 23
|
3236 | ||
|
1
1월 23
|
3010 | ||
|
0
9월 22
|
2709 |