@ -0,0 +1,2 @@
# -*- coding: utf-8 -*-
import models
@ -0,0 +1,21 @@
{
'name': "Beescoop Account Module",
'summary': """
Module that customize account module for Beescoop
""",
'description': """
'author': "Beescoop - Cellule IT",
'website': "https://github.com/beescoop/Obeesdoo",
'category': 'Account Module',
'version': '0.1',
'depends': ['account'],
'data': [],
}
@ -0,0 +1 @@
import beesdoo_account_invoice
@ -0,0 +1,13 @@
'''
Created on 5 déc. 2015
@author: Thibault François
from openerp import models, fields, api
class BeesdooAccountInvoice(models.Model):
_inherit = "account.invoice"
date_invoice = fields.Date(required=True)