diff --git a/document_multiple_records/__init__.py b/document_multiple_records/__init__.py index 579abcbc..8631f443 100644 --- a/document_multiple_records/__init__.py +++ b/document_multiple_records/__init__.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution @@ -22,5 +22,3 @@ from . import document from . import wizard - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_multiple_records/__openerp__.py b/document_multiple_records/__openerp__.py index b7e55f58..1eb91cd7 100644 --- a/document_multiple_records/__openerp__.py +++ b/document_multiple_records/__openerp__.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution @@ -21,40 +21,40 @@ ############################################################################## { - 'name': 'Document Management System for Multiple Records', - 'version': '0.1', - 'category': 'Knowledge Management', - 'summary': 'Document Management System for Multiple Records', - 'description': """ + "name": "Document Management System for Multiple Records", + "version": "7.0.1.0.0", + "category": "Knowledge Management", + "summary": "Document Management System for Multiple Records", + "description": """ +=============================================== Document Management System for Multiple Records -============================================== +=============================================== Contributors ------------ * El Hadji Dem (elhadji.dem@savoirfairelinux.com) +* Maxime Chambreuil (maxime.chambreuil@savoirfairelinux.com) """, - 'author': "Savoir-faire Linux,Odoo Community Association (OCA)", - 'website': 'www.savoirfairelinux.com', - 'license': 'AGPL-3', - 'depends': [ - 'document', + "author": "Savoir-faire Linux, Odoo Community Association (OCA)", + "website": "www.savoirfairelinux.com", + "license": "AGPL-3", + "depends": [ + "document", ], - 'data': [ - 'document_view.xml', - 'security/ir.model.access.csv', - 'wizard/document_wizard_view.xml', + "data": [ + "views/document_view.xml", + "security/ir.model.access.csv", + "wizard/document_wizard_view.xml", ], - 'js': [ - 'static/src/js/document.js' + "js": [ + "static/src/js/document.js" ], - 'qweb': [ - 'static/src/xml/document.xml' + "qweb": [ + "static/src/xml/document.xml" ], - 'test': [], - 'demo': [ + "test": [], + "demo": [ ], - 'installable': True, - 'auto_install': False, + "installable": True, + "auto_install": False, } - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_multiple_records/document.py b/document_multiple_records/document.py index 269188fa..ea3d5aeb 100644 --- a/document_multiple_records/document.py +++ b/document_multiple_records/document.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution diff --git a/document_multiple_records/tests/test_ir_attachment.py b/document_multiple_records/tests/test_ir_attachment.py index 728393b6..585ac01b 100644 --- a/document_multiple_records/tests/test_ir_attachment.py +++ b/document_multiple_records/tests/test_ir_attachment.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################### # # OpenERP, Open Source Management Solution diff --git a/document_multiple_records/document_view.xml b/document_multiple_records/views/document_view.xml similarity index 100% rename from document_multiple_records/document_view.xml rename to document_multiple_records/views/document_view.xml diff --git a/document_multiple_records/wizard/__init__.py b/document_multiple_records/wizard/__init__.py index 108a1a20..e311da4c 100644 --- a/document_multiple_records/wizard/__init__.py +++ b/document_multiple_records/wizard/__init__.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution @@ -21,5 +21,3 @@ ############################################################################## from . import document_wizard - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/document_multiple_records/wizard/document_wizard.py b/document_multiple_records/wizard/document_wizard.py index 44b44b66..f6f9cc08 100644 --- a/document_multiple_records/wizard/document_wizard.py +++ b/document_multiple_records/wizard/document_wizard.py @@ -1,4 +1,4 @@ -# -*- encoding: utf-8 -*- +# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution