跳至内容
菜单
此问题已终结
3 回复
6088 查看

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
176
2
2月 23
3867
0
8月 22
68
1
6月 22
2367
2
12月 21
6684