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

I want to make invoice date field editable for admins

形象
丢弃
最佳答案

Hello Jain,

Hope you are doing well.

This field is read only in account_invoice file of account module. So, if you want to edit this field after validating invoice, then you have to inherit account.invoice model and override date_invoice field.

from odoo import models, fields, API

class Account Invoice(models.Model):
_inherit = "account.invoice"

date_invoice = fields.Date(string='Invoice Date', index=True,
help="Keep empty to use the current date", copy=False)

Thanks & Regards,

Email: odoo@aktivsoftware.com

Skype: kalpeshmaheshwari

形象
丢弃
相关帖文 回复 查看 活动
2
11月 22
6177
1
6月 22
8189
0
8月 21
95
0
7月 21
172
0
5月 21
1688