Fix FR translation of base_partner_one2many_phone to avoid a crash when loading the FR translation
27 lines
832 B
XML
27 lines
832 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Copyright 2021 Akretion France (http://www.akretion.com/)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<record id="view_report_pos_order_search" model="ir.ui.view">
|
|
<field name="model">report.pos.order</field>
|
|
<field name="inherit_id" ref="point_of_sale.view_report_pos_order_search"/>
|
|
<field name="arch" type="xml">
|
|
<field name="product_categ_id" position="after">
|
|
<field name="session_id"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="point_of_sale.action_report_pos_order_all" model="ir.actions.act_window">
|
|
<field name="view_mode">pivot,graph</field> <!-- invert native order -->
|
|
</record>
|
|
|
|
|
|
</odoo>
|