Browse Source

[MIG] module_prototyper: Migration to 12.0

12.0-mig-module_prototyper
Nicolas JEUDY 5 years ago
parent
commit
351810c9cc
  1. 1
      module_prototyper/__init__.py
  2. 3
      module_prototyper/__manifest__.py
  3. 1
      module_prototyper/models/__init__.py
  4. 1
      module_prototyper/models/ir_model_fields.py
  5. 1
      module_prototyper/models/licenses.py
  6. 3
      module_prototyper/models/module_prototyper.py
  7. 1
      module_prototyper/models/module_prototyper_api_version.py
  8. 1
      module_prototyper/tests/__init__.py
  9. 1
      module_prototyper/tests/test_prototype.py
  10. 1
      module_prototyper/tests/test_prototype_module_export.py
  11. 1
      module_prototyper/wizard/__init__.py
  12. 1
      module_prototyper/wizard/module_prototyper_module_export.py

1
module_prototyper/__init__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution

3
module_prototyper/__manifest__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
@ -22,7 +21,7 @@
{
"name": "Module Prototyper",
"version": "10.0.1.0.0",
"version": "12.0.1.0.0",
"author": "Savoir-faire Linux, Sudokeys, Onestein, "
"Odoo Community Association (OCA)",
"maintainer": "Savoir-faire Linux",

1
module_prototyper/models/__init__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution

1
module_prototyper/models/ir_model_fields.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution

1
module_prototyper/models/licenses.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# #############################################################################
#
# OpenERP, Open Source Management Solution

3
module_prototyper/models/module_prototyper.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# #############################################################################
#
# OpenERP, Open Source Management Solution
@ -233,7 +232,7 @@ class ModulePrototyper(models.Model):
),
)
report_ids = fields.Many2many(
"ir.actions.report.xml",
"ir.actions.report",
"prototype_report_rel",
"module_prototyper_id",
"report_id",

1
module_prototyper/models/module_prototyper_api_version.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2016 Onestein (<http://www.onestein.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

1
module_prototyper/tests/__init__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution

1
module_prototyper/tests/test_prototype.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# OpenERP, Open Source Management Solution
# This module copyright (C) 2013 Savoir-faire Linux
# (<http://www.savoirfairelinux.com>).

1
module_prototyper/tests/test_prototype_module_export.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# #############################################################################
#
# OpenERP, Open Source Management Solution

1
module_prototyper/wizard/__init__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution

1
module_prototyper/wizard/module_prototyper_module_export.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# #############################################################################
#
# OpenERP, Open Source Management Solution

Loading…
Cancel
Save