Use coma instead of semi-colon as field separator for my demo CSV report

pull/90/head
Alexis de Lattre 2017-01-06 00:04:02 +01:00
parent 54f53e13fe
commit 4bb2877940
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<odoo> <odoo>
<template id="report_res_users_csv">name;login;last_login_date;lang <template id="report_res_users_csv">name,login,last_login_date,lang
<t t-foreach="docs" t-as="o"><t t-esc="o.name"/>;<t t-esc="o.login"/>;<t t-esc="o.login_date"/>;<t t-esc="o.lang"/> <t t-foreach="docs" t-as="o"><t t-esc="o.name"/>,<t t-esc="o.login"/>,<t t-esc="o.login_date"/>,<t t-esc="o.lang"/>
</t> </t>
</template> </template>