diff --git a/beesdoo_account/__init__.py b/beesdoo_account/__init__.py new file mode 100644 index 0000000..0f7cb6b --- /dev/null +++ b/beesdoo_account/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +import models \ No newline at end of file diff --git a/beesdoo_account/__openerp__.py b/beesdoo_account/__openerp__.py new file mode 100644 index 0000000..694cf0f --- /dev/null +++ b/beesdoo_account/__openerp__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +{ + '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', + 'beesdoo_base'], + + 'data': ['views/account_invoice.xml'], +} diff --git a/beesdoo_account/models/__init__.py b/beesdoo_account/models/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/beesdoo_account/views/account_invoice.xml b/beesdoo_account/views/account_invoice.xml new file mode 100644 index 0000000..847748c --- /dev/null +++ b/beesdoo_account/views/account_invoice.xml @@ -0,0 +1,28 @@ + + + + beesdoo.account.invoice.form.view + account.invoice + + + + True + + + + + + + + beesdoo.account.invoice.supplier.form.view + account.invoice + + + + True + + + + + + \ No newline at end of file