mirror of
https://github.com/brain-tec/account_ebics.git
synced 2026-06-16 04:18:53 +00:00
add ebics modules
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from . import payment_order
|
||||
@@ -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