add ebics modules

This commit is contained in:
Luc De Meyer
2018-08-14 16:35:15 +02:00
parent db508b8b4a
commit 2f06af7cf9
37 changed files with 2453 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
# -*- coding: utf-8 -*-
from . import payment_order

View File

@@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
# Copyright 2009-2018 Noviat.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from openerp import fields, models
class PaymentOrder(models.Model):
_inherit = 'payment.order'
date_ebics_upload = fields.Date(
string='EBICS upload date',
readonly=True)