We have sometimes problems with posted customer invoices… Some details could be updated when printing with “Invoice (Revised)” but some errors needs to review the invoice (wrong invoice date, … )
Customs needs a correct invoice and for them, it seems normal to edit a posted invoice to update incorrect information ???
How do you proceed in such case ?
In our case, we do a credit note on the invoice and we create a manual invoice.
In this case, we are missing information related to the sale which were on the original invoice. (incoterm, …)
Wondering if it is possible to link the new manual invoice with an existing sale ?
Also, original sale is linked to an invoice ‘cancelled’ by a credit note, how to have the information on the sale ?
In some of our customers we toggled the credit invoice wizard in a way that they can select to recreate the invoice (which is the default behaviour). In such case what we do is trigger the sale workflow to regenerate a new invoice linked to the sale.
This is the code that we are using:
def do_credit(self, action):
pool = Pool()
InvoiceRecreated = pool.get('sale.sale-recreated-account.invoice')
if self.start.recreate_invoice:
to_recreate = []
for invoice in self.records:
for sale in invoice.sales:
to_recreate.append({
'invoice': invoice.id,
'sale': sale.id,
})
if to_recreate:
InvoiceRecreated.create(to_recreate)
return super().do_credit(action)
I am not sure if it helps your case, but the module “account_invoice_correction” allows the user to make some corrections on invoices. This can be used together with the module “account_invoice_history”, which keeps the previous versions of invoices.