Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Returns the default price unity in Odoo/OpenERP

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 667
    Comment on it

    In res.partner method we can returns the default price unity on run time and we can access the default price unity in Odoo server. For example you can see below code.

    1. from openerp import api
    2. from openerp.osv import osv, fields
    3. from openerp.tools.translate import _
    4.  
    5. _logger = logging.getLogger('rent')
    6.  
    7. class Product(osv.osv):
    8. def check_rent_price(self, cr, uid, ids, context=None):
    9. """
    10. We check that the rent price is neither empty or 0 if the product can be rent.
    11. """
    12. products = self.browse(cr, uid, ids)
    13.  
    14. for product in products:
    15. if product.can_be_rent:
    16. if not product.rent_price or product.rent_price <= 0:
    17. return False
    18. return True
    19. def default_price_unity(self, cr, uid, ids, context=None):
    20. """
    21. Returns the default price unity (the first in the list).
    22. """
    23. unity1 = self.pool('product.uom').search(cr, uid, [])[16]
    24. print"===========unity1==========",unity1
    25. unity = self.pool('product.uom').browse(cr, uid, unity1)
    26. if not unity:
    27. _logger.warning("It seems that there isn't a reference unity in the 'Duration' UoM category. "
    28. "Please check that the category exists, and there's a refernce unity.")
    29. if unity:
    30. return unity.id
    31. else:
    32. return False
    33. # def action_view_stock_movess(self, cr, uid, ids, context=None):
    34. # result = {}
    35. # products = self._get_products(cr, uid, ids, context=context)
    36. # print"========products22========",products
    37. # result = self._get_act_window_dict(cr, uid, 'rent.act_product_stock_move_opens', context=context)
    38. # print"========result22========",result
    39. # if products:
    40. # result['context'] = "{'default_product_id': %d}" % products[0]
    41. # print"========result['context']===========",result['context']
    42. # result['domain'] = "[('product','in',[" + ','.join(map(str,ids)) + "])]"
    43. # return result
    44.  
    45.  
    46.  
    47. # @api.multi
    48. # @api.depends('product_variant_ids.rent_count')
    49. # def _rent_count(self):
    50. # for product in self:
    51. # product.rent_count = sum([p.rent_count for p in product.product_variant_ids])
    52. #
    53. @api.multi
    54. def action_view_rent(self):
    55. self.ensure_one()
    56. action = self.env.ref('rent.action_product_rent_list')
    57. product_ids = self.product_variant_ids.ids
    58. return {
    59. 'name': action.name,
    60. 'help': action.help,
    61. 'type': action.type,
    62. 'view_type': action.view_type,
    63. 'view_mode': action.view_mode,
    64. 'target': action.target,
    65. 'context': "{'search_default_product_id': " + ','.join(map(str, product_ids)) + ", 'default_product_id': " + str(product_ids[0]) + "}",
    66. 'res_model': action.res_model,
    67. 'domain': action.domain,
    68. }
    69.  
    70. _name = 'product.template'
    71. _inherit = 'product.template'
    72.  
    73. _columns = {
    74. # 'rent_count' :fields.function(_rent_count, ' Rent'),
    75. 'can_be_rent' : fields.boolean('Can be rented', help='Enable this if you want to rent this product.'),
    76. 'rent_price' : fields.float('Rent price', help='The price is expressed for the duration unity defined in the company configuration.'),
    77. 'rent_price_unity' : fields.many2one('product.uom', 'Rent Price Unity',help='Rent duration unity in which the price is defined.'),
    78.  
    79. }
    80.  
    81. _defaults = {
    82. 'can_be_rent' : False,
    83. 'rent_price' : 1.0,
    84. 'rent_price_unity' : default_price_unity,
    85.  
    86. }
    87.  
    88. _constraints = [(check_rent_price, _('The Rent price must be a positive value.'), ['rent_price']),]
    89.  
    90. Product()

     

 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: