diff --git a/mis_builder/__init__.py b/mis_builder/__init__.py index 11c59f64..3c212f4d 100644 --- a/mis_builder/__init__.py +++ b/mis_builder/__init__.py @@ -1,25 +1,26 @@ -#============================================================================== -# = +# -*- encoding: utf-8 -*- +############################################################################## +# # mis_builder module for OpenERP, Management Information System Builder # Copyright (C) 2014 ACSONE SA/NV () -# = +# # This file is a part of mis_builder -# = +# # mis_builder is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License v3 or later # as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# = +# # mis_builder is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License v3 or later for more details. -# = +# # You should have received a copy of the GNU Affero General Public License # v3 or later along with this program. # If not, see . -# = -#============================================================================== +# +############################################################################## from . import models from . import wizard diff --git a/mis_builder/__openerp__.py b/mis_builder/__openerp__.py index 8efdaad3..db166131 100644 --- a/mis_builder/__openerp__.py +++ b/mis_builder/__openerp__.py @@ -1,25 +1,27 @@ -#============================================================================== -# = +# -*- encoding: utf-8 -*- +############################################################################## +# # mis_builder module for OpenERP, Management Information System Builder # Copyright (C) 2014 ACSONE SA/NV () -# = +# # This file is a part of mis_builder -# = +# # mis_builder is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License v3 or later # as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# = +# # mis_builder is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License v3 or later for more details. -# = +# # You should have received a copy of the GNU Affero General Public License # v3 or later along with this program. # If not, see . -# = -#============================================================================== +# +############################################################################## + { 'name': 'mis builder', 'version': '0.1', diff --git a/mis_builder/models/__init__.py b/mis_builder/models/__init__.py index 4d576aa8..7882034f 100644 --- a/mis_builder/models/__init__.py +++ b/mis_builder/models/__init__.py @@ -1,24 +1,25 @@ -#============================================================================== -# = +# -*- encoding: utf-8 -*- +############################################################################## +# # mis_builder module for OpenERP, Management Information System Builder # Copyright (C) 2014 ACSONE SA/NV () -# = +# # This file is a part of mis_builder -# = +# # mis_builder is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License v3 or later # as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# = +# # mis_builder is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License v3 or later for more details. -# = +# # You should have received a copy of the GNU Affero General Public License # v3 or later along with this program. # If not, see . -# = -#============================================================================== +# +############################################################################## from . import mis_builder diff --git a/mis_builder/models/mis_builder.py b/mis_builder/models/mis_builder.py index ebef89b8..6d94bf32 100644 --- a/mis_builder/models/mis_builder.py +++ b/mis_builder/models/mis_builder.py @@ -1,26 +1,26 @@ -# vim: set fileencoding=utf-8 : -#============================================================================== -# = +# -*- encoding: utf-8 -*- +############################################################################## +# # mis_builder module for OpenERP, Management Information System Builder # Copyright (C) 2014 ACSONE SA/NV () -# = +# # This file is a part of mis_builder -# = +# # mis_builder is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License v3 or later # as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# = +# # mis_builder is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License v3 or later for more details. -# = +# # You should have received a copy of the GNU Affero General Public License # v3 or later along with this program. # If not, see . -# = -#============================================================================== +# +############################################################################## from datetime import datetime, timedelta from dateutil import parser diff --git a/mis_builder/report/__init__.py b/mis_builder/report/__init__.py index fcec4d2b..76a233e5 100644 --- a/mis_builder/report/__init__.py +++ b/mis_builder/report/__init__.py @@ -1,24 +1,25 @@ -#============================================================================== -# = +# -*- encoding: utf-8 -*- +############################################################################## +# # mis_builder module for OpenERP, Management Information System Builder # Copyright (C) 2014 ACSONE SA/NV () -# = +# # This file is a part of mis_builder -# = +# # mis_builder is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License v3 or later # as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# = +# # mis_builder is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License v3 or later for more details. -# = +# # You should have received a copy of the GNU Affero General Public License # v3 or later along with this program. # If not, see . -# = -#============================================================================== +# +############################################################################## from . import mis_builder_xls diff --git a/mis_builder/report/mis_builder_xls.py b/mis_builder/report/mis_builder_xls.py index 2882ad07..82a71858 100644 --- a/mis_builder/report/mis_builder_xls.py +++ b/mis_builder/report/mis_builder_xls.py @@ -1,25 +1,26 @@ -#============================================================================== -# = +# -*- encoding: utf-8 -*- +############################################################################## +# # mis_builder module for OpenERP, Management Information System Builder # Copyright (C) 2014 ACSONE SA/NV () -# = +# # This file is a part of mis_builder -# = +# # mis_builder is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License v3 or later # as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# = +# # mis_builder is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License v3 or later for more details. -# = +# # You should have received a copy of the GNU Affero General Public License # v3 or later along with this program. # If not, see . -# = -#============================================================================== +# +############################################################################## import xlwt from openerp.report import report_sxw diff --git a/mis_builder/tests/__init__.py b/mis_builder/tests/__init__.py index 6b6fc305..c55ab551 100644 --- a/mis_builder/tests/__init__.py +++ b/mis_builder/tests/__init__.py @@ -1,25 +1,26 @@ -#============================================================================== -# = +# -*- encoding: utf-8 -*- +############################################################################## +# # mis_builder module for OpenERP, Management Information System Builder # Copyright (C) 2014 ACSONE SA/NV () -# = +# # This file is a part of mis_builder -# = +# # mis_builder is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License v3 or later # as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# = +# # mis_builder is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License v3 or later for more details. -# = +# # You should have received a copy of the GNU Affero General Public License # v3 or later along with this program. # If not, see . -# = -#============================================================================== +# +############################################################################## import mis_builder_test diff --git a/mis_builder/tests/mis_builder_test.py b/mis_builder/tests/mis_builder_test.py index b123c99a..e33ea6b4 100644 --- a/mis_builder/tests/mis_builder_test.py +++ b/mis_builder/tests/mis_builder_test.py @@ -1,25 +1,26 @@ -#============================================================================== -# = +# -*- encoding: utf-8 -*- +############################################################################## +# # mis_builder module for OpenERP, Management Information System Builder # Copyright (C) 2014 ACSONE SA/NV () -# = +# # This file is a part of mis_builder -# = +# # mis_builder is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License v3 or later # as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# = +# # mis_builder is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License v3 or later for more details. -# = +# # You should have received a copy of the GNU Affero General Public License # v3 or later along with this program. # If not, see . -# = -#============================================================================== +# +############################################################################## import openerp.tests.common as common from openerp.addons.mis_builder import models @@ -78,4 +79,4 @@ class mis_builder_test(common.TransactionCase): })]) }, data) -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/mis_builder/wizard/__init__.py b/mis_builder/wizard/__init__.py index 0e48b0b6..2b1d981f 100644 --- a/mis_builder/wizard/__init__.py +++ b/mis_builder/wizard/__init__.py @@ -1,24 +1,25 @@ -#============================================================================== -# = +# -*- encoding: utf-8 -*- +############################################################################## +# # mis_builder module for OpenERP, Management Information System Builder # Copyright (C) 2014 ACSONE SA/NV () -# = +# # This file is a part of mis_builder -# = +# # mis_builder is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License v3 or later # as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# = +# # mis_builder is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License v3 or later for more details. -# = +# # You should have received a copy of the GNU Affero General Public License # v3 or later along with this program. # If not, see . -# = -#============================================================================== +# +############################################################################## from . import mis_builder_dashboard diff --git a/mis_builder/wizard/mis_builder_dashboard.py b/mis_builder/wizard/mis_builder_dashboard.py index 0fcf2274..849e40f2 100644 --- a/mis_builder/wizard/mis_builder_dashboard.py +++ b/mis_builder/wizard/mis_builder_dashboard.py @@ -1,25 +1,26 @@ -#============================================================================== -# = +# -*- encoding: utf-8 -*- +############################################################################## +# # mis_builder module for OpenERP, Management Information System Builder # Copyright (C) 2014 ACSONE SA/NV () -# = +# # This file is a part of mis_builder -# = +# # mis_builder is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License v3 or later # as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# = +# # mis_builder is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License v3 or later for more details. -# = +# # You should have received a copy of the GNU Affero General Public License # v3 or later along with this program. # If not, see . -# = -#============================================================================== +# +############################################################################## from openerp.osv import orm, fields from lxml import etree diff --git a/mis_builder_demo/__init__.py b/mis_builder_demo/__init__.py index f5c2b76d..55bc1dd8 100644 --- a/mis_builder_demo/__init__.py +++ b/mis_builder_demo/__init__.py @@ -1,22 +1,23 @@ -#============================================================================== -# = +# -*- encoding: utf-8 -*- +############################################################################## +# # mis_builder module for OpenERP, Management Information System Builder # Copyright (C) 2014 ACSONE SA/NV () -# = +# # This file is a part of mis_builder -# = +# # mis_builder is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License v3 or later # as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# = +# # mis_builder is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License v3 or later for more details. -# = +# # You should have received a copy of the GNU Affero General Public License # v3 or later along with this program. # If not, see . -# = -#============================================================================== +# +############################################################################## diff --git a/mis_builder_demo/__openerp__.py b/mis_builder_demo/__openerp__.py index 312322cb..3888dfe4 100644 --- a/mis_builder_demo/__openerp__.py +++ b/mis_builder_demo/__openerp__.py @@ -1,25 +1,27 @@ -#============================================================================== -# = +# -*- encoding: utf-8 -*- +############################################################################## +# # mis_builder module for OpenERP, Management Information System Builder # Copyright (C) 2014 ACSONE SA/NV () -# = +# # This file is a part of mis_builder -# = +# # mis_builder is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License v3 or later # as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. -# = +# # mis_builder is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License v3 or later for more details. -# = +# # You should have received a copy of the GNU Affero General Public License # v3 or later along with this program. # If not, see . -# = -#============================================================================== +# +############################################################################## + { 'name': 'mis builder demo', 'version': '0.1',