[IMP] account_bank_statement_import_paypal: create paypal maps

This commit is contained in:
cubells
2019-01-11 11:48:33 +01:00
committed by Carlos Roca
parent b9b811db10
commit ee5b26bf6b
23 changed files with 1166 additions and 97 deletions

View File

@@ -0,0 +1,13 @@
# Copyright 2019 Tecnativa - Vicent Cubells
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class AccountJournal(models.Model):
_inherit = "account.journal"
paypal_map_id = fields.Many2one(
comodel_name='account.bank.statement.import.paypal.map',
string='Paypal Map',
)