콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
3 답글
6373 화면

Hi, can you give me some advice? In Odoo 13, there is only draft and post. But I also need an open state like it was in Odoo12. In Odoo13, was the Open state cleared? Thanks. :)

아바타
취소
베스트 답변

States open, paid, in_payment are removed.

There is now a new invoice_payment_state field in Odoo 13, defined as:

invoice_payment_state = fields.Selection(selection=[
('not_paid', 'Not Paid'),
('in_payment', 'In Payment'),
('paid', 'Paid')],
string='Payment', store=True, readonly=True, copy=False, tracking=True,
compute='_compute_amount')

아바타
취소
베스트 답변

https://apps.odoo.com/apps/modules/13.0/sale_invoice_status/

아바타
취소
베스트 답변

Looks like the Open state has been removed. Now there are only 3 states - Draft, Posted and Cancelled. 

EDIT: The Invoice now uses the account.move model instead of the account.account model. Extensive changes have been made to the Accounting/Invoicing functionality in v13.

아바타
취소
관련 게시물 답글 화면 활동
1
7월 25
641
2
2월 23
4323
0
8월 22
68
1
6월 22
2651
2
12월 21
6987