Last active
October 31, 2022 14:31
-
-
Save ofelix03/4cd51ac73b0777deb6482dcd5b87ff7a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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