From 61161911db02ee99918db785288556f452cc8cb2 Mon Sep 17 00:00:00 2001 From: Maxime Chambreuil Date: Sun, 6 May 2012 18:42:10 -0400 Subject: [PATCH] [IMP] Views. Computation code left to do. --- mgmtsystem_kpi/mgmtsystem_kpi.py | 31 ++++++++++++-- mgmtsystem_kpi/mgmtsystem_kpi.xml | 71 ++++++++++++++++++------------- 2 files changed, 69 insertions(+), 33 deletions(-) diff --git a/mgmtsystem_kpi/mgmtsystem_kpi.py b/mgmtsystem_kpi/mgmtsystem_kpi.py index aa2a422e3..fdfac289c 100644 --- a/mgmtsystem_kpi/mgmtsystem_kpi.py +++ b/mgmtsystem_kpi/mgmtsystem_kpi.py @@ -41,11 +41,27 @@ class mgmtsystem_kpi_threshold_range(osv.osv): _name = "mgmtsystem.kpi.threshold.range" _description = "KPI Threshold Range" + def _compute_min_value(self, cr, uid, ids, field_name, arg, context=None): + result = {} + + return result + + def _compute_max_value(self, cr, uid, ids, field_name, arg, context=None): + result = {} + + return result + _columns = { 'name': fields.char('Name', size=50, required=True), - 'min': fields.float('Minimum', required=True), - 'max': fields.float('Maximum', size=50, required=True), - 'color': fields.char('Color (RGB code)', size=7, required=True), + 'min_type': fields.selection((('static','Fixed value'), ('dynamic','Computed value')), 'Min Type', required=True), + 'min_value': fields.function(_compute_min_value, string='Minimum', type='float'), + 'min_fixed_value': fields.float('Minimum'), + 'min_code': fields.text('Minimum Computation Code'), + 'max_type': fields.selection((('static','Fixed value'), ('dynamic','Computed value')), 'Max Type', required=True), + 'max_value': fields.function(_compute_max_value, string='Maximum', type='float'), + 'max_fixed_value': fields.float('Maximum'), + 'max_code': fields.text('Maximum Computation Code'), + 'color': fields.char('Color', help='RGB code with #', size=7, required=True), } mgmtsystem_kpi_threshold_range() @@ -83,6 +99,12 @@ class mgmtsystem_kpi(osv.osv): """ _name = "mgmtsystem.kpi" _description = "Key Performance Indicator" + + def _compute_kpi_value(self, cr, uid, ids, field_name, arg, context=None): + result= {} + + return result + _columns = { 'name': fields.char('Name', size=50, required=True), 'description': fields.text('Description'), @@ -90,7 +112,8 @@ class mgmtsystem_kpi(osv.osv): 'threshold_id': fields.many2one('mgmtsystem.kpi.threshold','Threshold', required=True), 'periodicity': fields.integer('Periodicity'), 'periodicity_uom': fields.many2one('mgmtsystem.kpi.periodicity.uom','Periodicity UoM', required=True), - 'value': fields.float('Value'), + 'value': fields.function(_compute_kpi_value, string='Value', type='float'), + 'kpi_code': fields.text('KPI Computation Code'), } mgmtsystem_kpi() diff --git a/mgmtsystem_kpi/mgmtsystem_kpi.xml b/mgmtsystem_kpi/mgmtsystem_kpi.xml index 207a56d8c..cf0086c6a 100644 --- a/mgmtsystem_kpi/mgmtsystem_kpi.xml +++ b/mgmtsystem_kpi/mgmtsystem_kpi.xml @@ -33,18 +33,13 @@ - + + + - - Key Performance Indicators mgmtsystem.kpi @@ -53,6 +48,13 @@ + + @@ -76,8 +78,9 @@ - - + + + @@ -90,13 +93,6 @@ groups="base.group_mgmtsystem_manager" sequence="20"/> - - Thresholds mgmtsystem.kpi.threshold @@ -105,6 +101,13 @@ + + @@ -114,8 +117,8 @@ - - + + @@ -128,22 +131,25 @@
+ - - + - + + + + + + + + + + +
- - Ranges mgmtsystem.kpi.threshold.range @@ -152,6 +158,13 @@ + +