[FIX] sale_crmconvert target and forcat fields to float from int

bzr revid: tpa@tinyerp.com-20131023113742-55szrqznr1imequi
This commit is contained in:
Turkesh Patel (Open ERP) 2013-10-23 17:07:42 +05:30
parent cabc3bbece
commit f48db35788
1 changed files with 3 additions and 3 deletions

View File

@ -71,11 +71,11 @@ class crm_case_section(osv.osv):
return res
_columns = {
'invoiced_forecast': fields.integer("Invoice Forecast",
'invoiced_forecast': fields.float("Invoice Forecast",
help="Forecast of the invoice revenue for the current month. This is the amount the sales \n"
"team should invoice this month. It is used to compute the progression ratio \n"
" of the current and forecast revenue on the kanban view."),
'invoiced_target': fields.integer("Invoice Target",
'invoiced_target': fields.float("Invoice Target",
help="Target of invoice revenue for the current month. This is the amount the sales \n"
"team estimates to be able to invoice this month."),
'monthly_quoted': fields.function(_get_sale_orders_data,
@ -90,7 +90,7 @@ class crm_case_section(osv.osv):
}
def action_forecast(self, cr, uid, id, value, context=None):
return self.write(cr, uid, [id], {'invoiced_forecast': round(float(value))}, context=context)
return self.write(cr, uid, [id], {'invoiced_forecast': value}, context=context)
class res_users(osv.Model):
_inherit = 'res.users'