fix to project_list

This commit is contained in:
Rushabh Mehta 2012-08-08 14:26:53 +05:30
parent aff1599fe5
commit a8733daf80

View File

@ -9,7 +9,7 @@ wn.doclistviews['Project'] = wn.views.ListView.extend({
'`tabProject`.priority', '`tabProject`.priority',
'IFNULL(`tabProject`.project_value, 0) as project_value', 'IFNULL(`tabProject`.project_value, 0) as project_value',
'IFNULL(`tabProject`.per_gross_margin, 0) as per_gross_margin', 'IFNULL(`tabProject`.per_gross_margin, 0) as per_gross_margin',
'`tabProject`.completion_date', '`tabProject`.creation',
]); ]);
//this.stats = this.stats.concat(['company']); //this.stats = this.stats.concat(['company']);
}, },
@ -46,8 +46,8 @@ wn.doclistviews['Project'] = wn.views.ListView.extend({
}, },
css: {'text-align': 'right'}, css: {'text-align': 'right'},
}, },
{width: '12%', content:'completion_date', css: { {
'text-align': 'right', 'color':'#777' width: '12%', content:'modified', css: {'text-align': 'right', 'color':'#777'}
}}, },
] ]
}); });