Browse Source
[MIG] base_kanban_stage: Upgrade to v10
* Rename manifest
* Change openerp references to odoo
* Bump version
pull/681/head
Dave Lasley
8 years ago
No known key found for this signature in database
GPG Key ID: 7DDBA4BA81B934CF
6 changed files with
7 additions and
7 deletions
-
base_kanban_stage/README.rst
-
base_kanban_stage/__manifest__.py
-
base_kanban_stage/models/base_kanban_abstract.py
-
base_kanban_stage/models/base_kanban_stage.py
-
base_kanban_stage/tests/test_base_kanban_abstract.py
-
base_kanban_stage/tests/test_base_kanban_stage.py
|
|
@ -60,7 +60,7 @@ Usage |
|
|
|
|
|
|
|
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas |
|
|
|
:alt: Try me on Runbot |
|
|
|
:target: https://runbot.odoo-community.org/runbot/162/9.0 |
|
|
|
:target: https://runbot.odoo-community.org/runbot/162/10.0 |
|
|
|
|
|
|
|
Known Issues / Roadmap |
|
|
|
====================== |
|
|
|
|
|
@ -5,7 +5,7 @@ |
|
|
|
{ |
|
|
|
'name': 'Kanban - Stage Support', |
|
|
|
'summary': 'Provides stage model and abstract logic for inheritance', |
|
|
|
'version': '9.0.1.0.0', |
|
|
|
'version': '10.0.1.0.0', |
|
|
|
'author': "LasLabs, Odoo Community Association (OCA)", |
|
|
|
'category': 'base', |
|
|
|
'depends': [ |
|
|
@ -2,7 +2,7 @@ |
|
|
|
# Copyright 2016 LasLabs Inc. |
|
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). |
|
|
|
|
|
|
|
from openerp import api, fields, models |
|
|
|
from odoo import api, fields, models |
|
|
|
|
|
|
|
|
|
|
|
class BaseKanbanAbstract(models.AbstractModel): |
|
|
|
|
|
@ -2,7 +2,7 @@ |
|
|
|
# Copyright 2016 LasLabs Inc. |
|
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). |
|
|
|
|
|
|
|
from openerp import api, fields, models |
|
|
|
from odoo import api, fields, models |
|
|
|
|
|
|
|
|
|
|
|
class BaseKanbanStage(models.Model): |
|
|
|
|
|
@ -2,8 +2,8 @@ |
|
|
|
# Copyright 2016 LasLabs Inc. |
|
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). |
|
|
|
|
|
|
|
from openerp import models |
|
|
|
from openerp.tests.common import TransactionCase |
|
|
|
from odoo import models |
|
|
|
from odoo.tests.common import TransactionCase |
|
|
|
|
|
|
|
|
|
|
|
class BaseKanbanAbstractTester(models.Model): |
|
|
|
|
|
@ -2,7 +2,7 @@ |
|
|
|
# Copyright 2016 LasLabs Inc. |
|
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). |
|
|
|
|
|
|
|
from openerp.tests.common import TransactionCase |
|
|
|
from odoo.tests.common import TransactionCase |
|
|
|
|
|
|
|
|
|
|
|
class TestBaseKanbanStage(TransactionCase): |
|
|
|