[IMP] partner_profiles: add ids to public and position groups

This commit is contained in:
Stéphan Sainléger
2023-09-04 22:22:11 +02:00
committed by Stéphan Sainléger
parent 102df5b9ef
commit 597340ff98
2 changed files with 4 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
{ {
"name": "partner_profiles", "name": "partner_profiles",
"version": "12.0.2.4.0", "version": "12.0.2.4.1",
"author": "Elabore", "author": "Elabore",
"website": "https://elabore.coop", "website": "https://elabore.coop",
"maintainer": "Stéphan Sainléger", "maintainer": "Stéphan Sainléger",

View File

@@ -173,7 +173,7 @@
<!-- PUBLIC PROFILE DISPLAY --> <!-- PUBLIC PROFILE DISPLAY -->
<!-- ###################### --> <!-- ###################### -->
<xpath expr="//field[@name='type']/../.." position="after"> <xpath expr="//field[@name='type']/../.." position="after">
<group attrs="{'invisible': [('is_public_profile','=',False)]}"> <group id="public_data" attrs="{'invisible': [('is_public_profile','=',False)]}">
<group> <group>
<label for="street" string="Address" /> <label for="street" string="Address" />
<div class="o_address_format"> <div class="o_address_format">
@@ -210,7 +210,8 @@
<!-- POSITION PROFILE DISPLAY --> <!-- POSITION PROFILE DISPLAY -->
<!-- ######################## --> <!-- ######################## -->
<xpath expr="//field[@name='type']/../.." position="after"> <xpath expr="//field[@name='type']/../.." position="after">
<group attrs="{'invisible': [('is_position_profile','=',False)]}"> <group id="position_data"
attrs="{'invisible': [('is_position_profile','=',False)]}">
<group> <group>
<field name="function" /> <field name="function" />
</group> </group>