Skip to content

Instantly share code, notes, and snippets.

@ofelix03
Last active October 31, 2022 14:31
Show Gist options
  • Save ofelix03/4cd51ac73b0777deb6482dcd5b87ff7a to your computer and use it in GitHub Desktop.
Save ofelix03/4cd51ac73b0777deb6482dcd5b87ff7a to your computer and use it in GitHub Desktop.
def action_add_bank(self):
return {
'name': 'Add New Bank',
'type': 'ir.actions.act_window',
'res_model': 'kyc.customer.bank',
'view_type': 'form',
'view_mode': 'form',
'view_id': form_view.id,
'res_id': self.id,
'target': 'new',
'context': {
'default_bank_reference': self.bank_reference,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment