Hello all,
We have here a new pivot table which is defined with the xml below. Note the "interval='week'" in it.
For each column (each week), what is the first day of the week?
Can we change the first day of the week?
XML
<record id="view_account_invoice_report_hebdo_graph_vtm2" model="ir.ui.view">
<field name="name">account.invoice.report.hebdo.graph.vtm2</field>
<field name="model">account.invoice.report.vtm2</field>
<field name="arch" type="xml">
<graph string="Invoices Analysis" type="pivot">
<field name="fiscal_position" type="row"/>
<field name="date" interval="week" type="col"/>
<field name="price_total" type="measure"/>
</graph>
</field>
</record>