Add selection_list_sequence view

#159270
This commit is contained in:
Raimon Esteve 2023-05-29 11:21:18 +02:00
parent f8b2755f62
commit b6744757b4
2 changed files with 16 additions and 1 deletions

View File

@ -14,6 +14,11 @@ copyright notices and license terms. -->
<field name="inherit" ref="carrier.carrier_selection_view_list"/>
<field name="name">selection_list</field>
</record>
<record model="ir.ui.view" id="carrier_selection_view_list_sequence">
<field name="model">carrier.selection</field>
<field name="type">tree</field>
<field name="priority" eval="20"/>
<field name="name">selection_list_sequence</field>
</record>
</data>
</tryton>

View File

@ -0,0 +1,10 @@
<?xml version="1.0"?>
<!-- This file is part of the carrier_postal_code module for Tryton.
The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. -->
<data>
<xpath expr="/tree/field[@name='to_country']" position="after">
<field name="start_postal_code"/>
<field name="end_postal_code"/>
</xpath>
</data>