You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
249 B
12 lines
249 B
# -*- coding: utf-8 -*-
|
|
'''
|
|
Created on 16 mai 2016
|
|
|
|
@author: Thibault Francois (thibault@françois.be)
|
|
'''
|
|
from openerp import models, fields
|
|
|
|
class BankStatement(models.Model):
|
|
_inherit = 'account.bank.statement'
|
|
|
|
coda_note = fields.Text()
|