mirror of
https://github.com/brain-tec/account_ebics.git
synced 2025-08-14 22:55:38 +00:00
add ebics modules
This commit is contained in:
2
account_ebics_oca_cct/models/__init__.py
Normal file
2
account_ebics_oca_cct/models/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from . import payment_order
|
13
account_ebics_oca_cct/models/payment_order.py
Normal file
13
account_ebics_oca_cct/models/payment_order.py
Normal 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)
|
Reference in New Issue
Block a user