Compare commits

...

2 Commits

Author SHA1 Message Date
Raimon Esteve 4a19c8b1ba Inherit selection_list_sequence view
From changeset 526ada3
2023-05-29 11:48:11 +02:00
Raimon Esteve b6744757b4 Add selection_list_sequence view
#159270
2023-05-29 11:21:45 +02:00
2 changed files with 15 additions and 1 deletions

View File

@ -14,6 +14,10 @@ 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="inherit" ref="carrier.carrier_selection_view_list_sequence"/>
<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>