From 56502a0a68d19d4ff01f0a31d63da99b08d6cf25 Mon Sep 17 00:00:00 2001 From: Sreejith P Date: Fri, 6 Jul 2018 17:34:43 +0530 Subject: [PATCH] [UPDT]Namespace Changed --- employee_orientation/doc/changelog.rst | 9 +++++++++ employee_orientation/models/employee_orientation.py | 2 +- employee_orientation/models/employee_training.py | 2 +- employee_orientation/models/orientation_checklist.py | 2 +- .../models/orientation_checklist_line.py | 2 +- .../models/orientation_checklist_request.py | 4 ++-- employee_orientation/wizard/orientation_complete.py | 2 +- 7 files changed, 16 insertions(+), 7 deletions(-) create mode 100644 employee_orientation/doc/changelog.rst diff --git a/employee_orientation/doc/changelog.rst b/employee_orientation/doc/changelog.rst new file mode 100644 index 000000000..9b1251e29 --- /dev/null +++ b/employee_orientation/doc/changelog.rst @@ -0,0 +1,9 @@ +Changelog +========= +* Anusha contact: anusha@cybrosys.in + +`10.0.2.0.0` +----------- + +- Changed : changed openerp to odoo. + diff --git a/employee_orientation/models/employee_orientation.py b/employee_orientation/models/employee_orientation.py index b7e8c332a..5bf37a203 100644 --- a/employee_orientation/models/employee_orientation.py +++ b/employee_orientation/models/employee_orientation.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from openerp import api, fields, models, _ +from odoo import api, fields, models, _ class Orientation(models.Model): diff --git a/employee_orientation/models/employee_training.py b/employee_orientation/models/employee_training.py index 677cc8f4f..400a158bf 100644 --- a/employee_orientation/models/employee_training.py +++ b/employee_orientation/models/employee_training.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from openerp import api, fields, models, _ +from odoo import api, fields, models, _ class EmployeeTraining(models.Model): diff --git a/employee_orientation/models/orientation_checklist.py b/employee_orientation/models/orientation_checklist.py index 7011381f9..1e5753926 100644 --- a/employee_orientation/models/orientation_checklist.py +++ b/employee_orientation/models/orientation_checklist.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from openerp import models, fields, _ +from odoo import models, fields, _ class OrientationChecklist(models.Model): diff --git a/employee_orientation/models/orientation_checklist_line.py b/employee_orientation/models/orientation_checklist_line.py index f1ba7a428..f8cc2c082 100644 --- a/employee_orientation/models/orientation_checklist_line.py +++ b/employee_orientation/models/orientation_checklist_line.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from openerp import models, fields +from odoo import models, fields class ChecklistLine(models.Model): diff --git a/employee_orientation/models/orientation_checklist_request.py b/employee_orientation/models/orientation_checklist_request.py index 70d66aaee..2ae699bb6 100644 --- a/employee_orientation/models/orientation_checklist_request.py +++ b/employee_orientation/models/orientation_checklist_request.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -from openerp import models, fields, api -from openerp.tools.translate import _ +from odoo import models, fields, api +from odoo.tools.translate import _ class OrientationChecklistRequest(models.Model): diff --git a/employee_orientation/wizard/orientation_complete.py b/employee_orientation/wizard/orientation_complete.py index 94eab4302..09de84dfa 100644 --- a/employee_orientation/wizard/orientation_complete.py +++ b/employee_orientation/wizard/orientation_complete.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -from openerp import api, fields, models, _ +from odoo import api, fields, models, _ class OrientationForceComplete(models.TransientModel):