Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Waht is a functional field and how to calculate it's value

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 564
    Comment on it

    A functional field is a field whose value is calculated by a function in openerp, hence in openerp functional fields values is calculated by the function and its process of function given below, Parameters:

    1. fnct,
    2. arg=None,
    3. fnct_inv=None,
    4. fnct_search=None, obj=None, method=False, store=True
    5. fnct_inv_arg=None,
    6. type=%green%float%black%,

    where
    Type is the field type name returned by the function. It can be any field type name except function.
    store- If you want to store field in database or not. Default is False.
    method whether the field is computed by a method (of an object) or a global function
    function is the function or method that will compute the field value. It must have been declared before declaring the functional field.

    Example Of Functional Field Suppose we create a contract object which is :

    1. class hr_contract(osv.osv):
    2. _name = hr.contract
    3. _description = Contract
    4. _columns = {
    5. name : fields.char(Contract Name, size=30, required=True),
    6. employee_id : fields.many2one(hr.employee, Employee, required=True),
    7. function : fields.many2one(res.partner.function, Function),
    8. }
    9. hr_contract()
    10. If we want to add a field that retrieves the function of an employee by looking its current contract, we use a functional
    11. field. The object hr_employee is inherited this way:
    12. class hr_employee(osv.osv):
    13. _name = "hr.employee"
    14. _description = "Employee"
    15. _inherit = "hr. employee"
    16. _columns = { contract_ids : fields.one2many(hr.contract, employee_id, Contracts),
    17. function : fields.function(_get_cur_function_id, type=many2one, obj="res.partner.functio
    18. method=True, string=Contract Function),
    19. }

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: