Merge pull request #387 from Tecnativa/9.0-mig-portal_payment_mode

[MIG] portal_payment_mode: Migration to 9.0
This commit is contained in:
Pedro M. Baeza
2017-09-14 09:39:09 +02:00
committed by GitHub
6 changed files with 39 additions and 36 deletions

View File

@@ -15,19 +15,16 @@ Usage
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/173/8.0
For further information, please visit:
* https://www.odoo.com/forum/help-1
:target: https://runbot.odoo-community.org/runbot/173/9.0
Bug Tracker
===========
Bugs are tracked on `GitHub Issues <https://github.com/OCA/bank-payment/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
`here <https://github.com/OCA/bank-payment/issues/new?body=module:%20portal_payment_mode%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Bugs are tracked on `GitHub Issues
<https://github.com/OCA/bank-payment/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smash it by providing detailed and welcomed feedback.
Credits
=======
@@ -35,9 +32,10 @@ Credits
Contributors
------------
* Rafael Blasco <rafabn@antiun.com>
* Carlos Dauden <carlos@incaser.es>
* Sergio Teruel <sergio@incaser.es>
* Rafael Blasco <rafael.blasco@tecnativa.com>
* Carlos Dauden <carlos.dauden@tecnativa.com>
* Sergio Teruel <sergio.teruel@tecnativa.com>
* David Vidal <david.vidal@tecnativa.com>
Maintainer
----------
@@ -52,4 +50,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
To contribute to this module, please visit http://odoo-community.org.
To contribute to this module, please visit https://odoo-community.org.

View File

@@ -1,4 +1 @@
# -*- coding: utf-8 -*-
# (c) 2015 Antiun Ingeniería S.L. - Sergio Teruel
# (c) 2015 Antiun Ingeniería S.L. - Carlos Dauden
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html

View File

@@ -1,13 +1,13 @@
# -*- coding: utf-8 -*-
# (c) 2015 Antiun Ingeniería S.L. - Sergio Teruel
# (c) 2015 Antiun Ingeniería S.L. - Carlos Dauden
# Copyright 2017 Tecnativa - Sergio Teruel
# Copyright 2017 Tecnativa - Carlos Dauden
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
{
'name': "Portal Payment Mode",
'summary': "Adds payment mode ACL's for portal users ",
'category': 'Portal',
'version': '8.0.1.0.0',
'version': '9.0.1.0.0',
'depends': [
'portal_sale',
'account_payment_partner',
@@ -15,12 +15,11 @@
'data': [
'security/ir.model.access.csv',
],
'author': 'Antiun Ingeniería S.L., '
'Incaser Informatica S.L., '
'author': 'Tecnativa, '
'Odoo Community Association (OCA)',
'website': 'http://www.antiun.com',
'website': 'https://www.tecnativa.com',
'license': 'AGPL-3',
'installable': False,
'installable': True,
'auto_install': True,
'application': False,
}

View File

@@ -1,2 +1,2 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_payment_portal,Read access on payment.mode to Portal Users,account_payment.model_payment_mode,base.group_portal,1,0,0,0
access_account_payment_mode_read_portal,Read access on account.payment.mode to Portal Users,account_payment_mode.model_account_payment_mode,base.group_portal,1,0,0,0
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_payment_portal access_account_payment_mode_read_portal Read access on payment.mode to Portal Users Read access on account.payment.mode to Portal Users account_payment.model_payment_mode account_payment_mode.model_account_payment_mode base.group_portal 1 0 0 0

View File

@@ -1,6 +1,3 @@
# -*- coding: utf-8 -*-
# (c) 2015 Antiun Ingeniería S.L. - Sergio Teruel
# (c) 2015 Antiun Ingeniería S.L. - Carlos Dauden
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from . import test_portal_payment_mode

View File

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# (c) 2015 Antiun Ingeniería S.L. - Sergio Teruel
# (c) 2015 Antiun Ingeniería S.L. - Carlos Dauden
# Copyright 2015 Tecnativa - Sergio Teruel
# Copyright 2015 Tecnativa - Carlos Dauden
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from openerp.tests.common import TransactionCase
@@ -19,26 +19,38 @@ class TestPortalPaymentMode(TransactionCase):
'name': 'Test journal',
'code': 'TEST',
'type': 'general'})
self.payment_mode = self.env['payment.mode'].create({
self.payment_mode = self.env['account.payment.mode'].create({
'name': 'Test Payment Mode',
'journal': self.journal.id,
'bank_id': self.bank.id,
'type': self.env.ref(
'account_banking_payment_export.manual_bank_tranfer').id,
'bank_account_link': 'variable',
'payment_method_id': self.env.ref(
'account.account_payment_method_manual_in').id,
'sale_ok': True,
})
self.account = self.env['account.account'].create({
'name': 'Test account',
'code': 'TESTACC',
'user_type_id': self.env.ref(
'account.data_account_type_receivable').id,
'reconcile': True,
})
self.journal = self.env['account.journal'].create({
'name': 'TEST JOURNAL',
'code': 'TSTJRNL',
'type': 'sale',
})
vals_invoice = {
'partner_id': self.partner.id,
'account_id': self.env.ref('account.a_sale').id,
'journal_id': self.env.ref('account.sales_journal').id,
'account_id': self.account.id,
'journal_id': self.journal.id,
'payment_mode_id': self.payment_mode.id,
'invoice_line': [(0, 0, {
'name': 'test',
'account_id': self.env.ref('account.a_sale').id,
'account_id': self.account.id,
'price_unit': 100.00,
'quantity': 1
})],
}
self.invoice = self.env['account.invoice'].create(vals_invoice)
self.invoice.invoice_validate()