From 950d7be1e9fe44854079c458fabf1c238653f24d Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Mon, 7 Jan 2019 16:24:08 -0800 Subject: [PATCH] Initial commit of `account_payment_electronic` for 12.0 --- account_payment_electronic/__init__.py | 1 + account_payment_electronic/__manifest__.py | 20 +++++++++++++++++++ .../views/account_views.xml | 15 ++++++++++++++ 3 files changed, 36 insertions(+) create mode 100755 account_payment_electronic/__init__.py create mode 100755 account_payment_electronic/__manifest__.py create mode 100644 account_payment_electronic/views/account_views.xml diff --git a/account_payment_electronic/__init__.py b/account_payment_electronic/__init__.py new file mode 100755 index 00000000..8b137891 --- /dev/null +++ b/account_payment_electronic/__init__.py @@ -0,0 +1 @@ + diff --git a/account_payment_electronic/__manifest__.py b/account_payment_electronic/__manifest__.py new file mode 100755 index 00000000..38a35bd2 --- /dev/null +++ b/account_payment_electronic/__manifest__.py @@ -0,0 +1,20 @@ +{ + 'name': 'Account Payment Electronic', + 'author': 'Hibou Corp. ', + 'category': 'Hidden', + 'version': '12.0.1.0.0', + 'description': + """ +Register Electronic Payments +============================ + +Adds the payment token mechanism onto stock 'Register Payment' Wizard. + """, + 'depends': [ + 'payment', + ], + 'auto_install': False, + 'data': [ + 'views/account_views.xml', + ], +} diff --git a/account_payment_electronic/views/account_views.xml b/account_payment_electronic/views/account_views.xml new file mode 100644 index 00000000..c98ca3db --- /dev/null +++ b/account_payment_electronic/views/account_views.xml @@ -0,0 +1,15 @@ + + + + account.payment.form.inherit + account.payment + + + + + + + + \ No newline at end of file