I want to make invoice date field editable for admins
Odoo is the world's easiest all-in-one management software.
 It includes hundreds of business apps:
- CRM
- e-Commerce
- Buchhaltung
- Lager
- PoS
- Project
- MRP
Diese Frage wurde gekennzeichnet
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
Diskutieren Sie gerne? Treten Sie bei, statt nur zu lesen!
Erstellen Sie heute ein Konto, um exklusive Funktionen zu nutzen und mit unserer tollen Community zu interagieren!
Registrieren| Verknüpfte Beiträge | Antworten | Ansichten | Aktivität | |
|---|---|---|---|---|
|  | 2 Aug. 25  | 7073 | ||
|  | 1 Juni 22  | 8988 | ||
|  | 0 Aug. 21  | 95 | ||
|  | 0 Juli 21  | 172 | ||
|  | 0 Mai 21  | 2199 | 
