I am trying to add a feature to require "Log Note", the internal note logged in Vendor bills, upon canceling a bill record. I have created a wizard(popup) with a field that asks me to write a reason for canceling. after that the state of the bill becomes a draft and the reason should be registered in the internal log note. my code below
def cancel_reason_bill(self):
self.env['account.invoice'].browse(self._context.get("active_ids")).update({'reason':
self.reason})
return self.env['account.invoice'].browse(self._context.get("active_ids")).write({'state':
'draft'})
To add log notes in form view, read Mixins details here.
add chatter in your form view.
Inherit message note xml template of vendor bill and add reason.