[REF] payment_acquirer: refactored module according to

new OpenERP addon guidelines :
- models -> for model-related files
- data -> all data
Updated init / openerp files accordingly

bzr revid: tde@openerp.com-20131024135854-ve8d5yw1umcwz2b0
This commit is contained in:
Thibault Delavallée 2013-10-24 15:58:54 +02:00
parent 15ec0ebb62
commit 005a00ad50
5 changed files with 25 additions and 3 deletions

View File

@ -19,5 +19,5 @@
#
##############################################################################
import payment_acquirer
import models
import controllers

View File

@ -26,10 +26,10 @@
'version': '0.1',
'description': """Payment acquirer module, use to display payment method and validate the payments.""",
'author': 'OpenERP SA',
'depends': ['website', 'decimal_precision'],
'depends': ['decimal_precision'],
'data': [
'views/acquirer_view.xml',
'payment_acquirer_data.xml',
'data/payment_acquirer_data.xml',
'security/ir.model.access.csv',
],
'installable': True,

View File

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2013-Today OpenERP SA (<http://www.openerp.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import payment_acquirer