-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3734dca
Showing
21 changed files
with
2,649 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# -*- coding: utf-8 -*- | ||
# Part of Odoo. See LICENSE file for full copyright and licensing details. | ||
|
||
|
||
import odoo | ||
|
||
__version__ = odoo.release.version | ||
|
||
if __version__ == '10.0': | ||
import models | ||
import controllers | ||
else: | ||
from . import models | ||
from . import controllers | ||
|
||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
{ | ||
'name': 'Novalnet Payment Acquirer', | ||
'category': 'Payment', | ||
'summary': 'Payment Acquirer: Novalnet', | ||
'version': '2.0.1', | ||
'author': 'Novalnet', | ||
'website': 'http://www.novalnet.com', | ||
'description': """PCI Compliant, seamless integration with the various types of payment and payment-related services integrated into one unique platform. Please contact us at sales@novalnet.de""", | ||
'depends': ['payment'], | ||
'data': [ | ||
'views/payment_views.xml', | ||
'views/payment_novalnet_templates.xml', | ||
'views/novalnet.xml', | ||
'data/payment_acquirer_data.xml', | ||
], | ||
'installable': True, | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
import odoo | ||
|
||
__version__ = odoo.release.version | ||
if __version__ == '10.0': | ||
import main | ||
import callback | ||
else: | ||
from . import main | ||
from . import callback | ||
|
Oops, something went wrong.