Browse Source

[UPDT]Namespace Changed

pull/82/head
Sreejith P 7 years ago
parent
commit
56502a0a68
  1. 9
      employee_orientation/doc/changelog.rst
  2. 2
      employee_orientation/models/employee_orientation.py
  3. 2
      employee_orientation/models/employee_training.py
  4. 2
      employee_orientation/models/orientation_checklist.py
  5. 2
      employee_orientation/models/orientation_checklist_line.py
  6. 4
      employee_orientation/models/orientation_checklist_request.py
  7. 2
      employee_orientation/wizard/orientation_complete.py

9
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.

2
employee_orientation/models/employee_orientation.py

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from openerp import api, fields, models, _ from odoo import api, fields, models, _
class Orientation(models.Model): class Orientation(models.Model):

2
employee_orientation/models/employee_training.py

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from openerp import api, fields, models, _ from odoo import api, fields, models, _
class EmployeeTraining(models.Model): class EmployeeTraining(models.Model):

2
employee_orientation/models/orientation_checklist.py

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from openerp import models, fields, _ from odoo import models, fields, _
class OrientationChecklist(models.Model): class OrientationChecklist(models.Model):

2
employee_orientation/models/orientation_checklist_line.py

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from openerp import models, fields from odoo import models, fields
class ChecklistLine(models.Model): class ChecklistLine(models.Model):

4
employee_orientation/models/orientation_checklist_request.py

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from openerp import models, fields, api from odoo import models, fields, api
from openerp.tools.translate import _ from odoo.tools.translate import _
class OrientationChecklistRequest(models.Model): class OrientationChecklistRequest(models.Model):

2
employee_orientation/wizard/orientation_complete.py

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from openerp import api, fields, models, _ from odoo import api, fields, models, _
class OrientationForceComplete(models.TransientModel): class OrientationForceComplete(models.TransientModel):

Loading…
Cancel
Save