[IMP] mis_builder_demo: use new balance syntax

pull/86/head
Stéphane Bidoul 2015-06-07 16:57:32 +02:00
parent 68c5a4b12a
commit b8e0b5bb6c
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
id,compare_method,description,expression,divider,name,dp,sequence,type,suffix
mis_report_kpi_1,Percentage,CA,-bal_X2001,,ca,,1,Numeric,€
mis_report_kpi_1,Percentage,CA,-bal[X2001],,ca,,1,Numeric,€
mis_report_kpi_2,Percentage,CAHT invoice,sum([s.amount_untaxed for s in inv]),,total_invoice,,2,Numeric,€
mis_report_kpi_3,Percentage,Cost,bal_X2110,,cost,,3,Numeric,€
mis_report_kpi_3,Percentage,Cost,bal[X2110],,cost,,3,Numeric,€
mis_report_kpi_4,Percentage,Profit,ca - cost,,profit,,4,Numeric,€
mis_report_kpi_5,Difference,Margin,profit/ca,,margin,,5,Percentage,%
mis_report_phonecall_kpi_1,Percentage,Total phone call,len(phone),,total_phone_call,,1,Numeric,

1 id compare_method description expression divider name dp sequence type suffix
2 mis_report_kpi_1 Percentage CA -bal_X2001 -bal[X2001] ca 1 Numeric
3 mis_report_kpi_2 Percentage CAHT invoice sum([s.amount_untaxed for s in inv]) total_invoice 2 Numeric
4 mis_report_kpi_3 Percentage Cost bal_X2110 bal[X2110] cost 3 Numeric
5 mis_report_kpi_4 Percentage Profit ca - cost profit 4 Numeric
6 mis_report_kpi_5 Difference Margin profit/ca margin 5 Percentage %
7 mis_report_phonecall_kpi_1 Percentage Total phone call len(phone) total_phone_call 1 Numeric