open-synergy/opnsynid-hr

View on GitHub
hr_career_transition_payroll/models/hr_career_transition_type.py

Summary

Maintainability
A
0 mins
Test Coverage
# -*- coding: utf-8 -*-
# Copyright 2018 OpenSynergy Indonesia
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from openerp import fields, models


class HrCareerTransitionType(models.Model):
    _inherit = "hr.career_transition_type"

    change_salary_structure = fields.Boolean(
        string="Change Salary Structure?",
    )