Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Novalnet-Technic committed Nov 10, 2021
0 parents commit 3734dca
Show file tree
Hide file tree
Showing 21 changed files with 2,649 additions and 0 deletions.
17 changes: 17 additions & 0 deletions __init__.py
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



19 changes: 19 additions & 0 deletions __manifest__.py
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,
}
12 changes: 12 additions & 0 deletions controllers/__init__.py
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

Loading

0 comments on commit 3734dca

Please sign in to comment.