Advertisement
rht_odoo

[4417086] Odoo Studio: res.partner.form customization

Jan 7th, 2025
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.41 KB | None | 0 0
  1. <data>
  2.     <!-- remove the field the add them in a way thatcan make them invisble without having everything weird -->
  3.   <xpath expr="/form[1]/sheet[1]/group[1]/group[1]/label[1]" position="replace"/>
  4.   <xpath expr="/form[1]/sheet[1]/group[1]/group[1]/div[2]/field[1]" position="replace"/>
  5.   <xpath expr="/form[1]/sheet[1]/group[1]/group[1]/span[1]" position="before">
  6.     <field name="x_studio_personne_de_contact" invisible="is_company or type != 'contact'"/>
  7.     <field name="x_studio_nom" invisible="is_company or type != 'contact'"/>
  8.     <field name="website" string="Website" invisible="is_company or type != 'delivery'"/>
  9.   </xpath>
  10.   <xpath expr="/form[1]/sheet[1]/group[1]/group[1]/div[1]/div[1]/field[1]" position="attributes">
  11.     <attribute name="invisible">True</attribute>
  12.   </xpath>
  13.   <xpath expr="/form[1]/sheet[1]/group[1]/group[1]/div[1]" position="after">
  14.     <field name="vat" invisible="1"/>
  15.     <field name="x_studio_nombre_btiments" invisible="type != &quot;delivery&quot;"/>
  16.     <field name="x_studio_superficie_m" invisible="type != &quot;delivery&quot;"/>
  17.     <field name="x_studio_superficie_formulaire" invisible="type != &quot;delivery&quot;"/>
  18.   </xpath>
  19.   <!-- -->
  20.  
  21.   <xpath expr="//form[1]/sheet[1]/group[1]/group[2]" position="replace">
  22.     <!-- Be able to make fields invisible for the building (type == delivery) -->
  23.     <group>
  24.         <field name="lang" invisible="active_lang_count &lt;= 1 or set(category_id).intersection([2])"/>
  25.         <field name="title" options="{&quot;no_open&quot;: True}" placeholder="e.g. Mister" invisible="is_company or type == 'delivery'"/>
  26.       <field name="function" string="Fonction" placeholder="e.g. Sales Director" invisible="is_company or type == 'delivery'"/>
  27.       <field name="email" widget="email" context="{'gravatar_image': True}" required="user_ids" invisible="type == 'delivery'"/>
  28.       <field name="phone" string="Téléphone 1" widget="phone" invisible="type == 'delivery'"/>
  29.       <field name="mobile" string="Téléphone 2" widget="phone" invisible="type == 'delivery'"/>
  30.      
  31.      
  32.       <field name="ref" string="ID Bruxeo" invisible="is_company or type != 'delivery'"/>
  33.       <field name="x_studio_secteur_dactivit_du_batiment_1" invisible="is_company or type != 'delivery'"/>
  34.       <field name="x_studio_nace" invisible="is_company or type != 'delivery'"/>
  35.       <field name="x_studio_bail" invisible="is_company or type != 'delivery'"/>
  36.       <field name="category_id" widget="many2many_tags" options="{'color_field': 'color'}" placeholder="e.g. &quot;B2B&quot;, &quot;VIP&quot;, &quot;Consulting&quot;, ..."/>
  37.     </group>
  38.   </xpath>
  39.   <!-- -->
  40.  
  41.   <!-- new tab for ASBL info -->
  42.   <xpath expr="/form[1]/sheet[1]/notebook[1]" position="inside">
  43.     <page string="Info ASBL" name="studio_page_8b1_1ih0nfc9m" invisible="type != 'delivery'">
  44.       <group name="studio_group_5vk">
  45.         <group name="studio_group_5vk_left">
  46.           <field name="x_studio_asbl"/>
  47.           <field name="x_studio_activit_clri" widget="many2many_tags"/>
  48.           <field name="x_studio_etp"/>
  49.         </group>
  50.         <group name="studio_group_5vk_right">
  51.           <field name="x_studio_fede"/>
  52.         </group>
  53.       </group>
  54.     </page>
  55.   </xpath>
  56.   <!-- -->
  57.  
  58.   <xpath expr="/form[1]/sheet[1]/notebook[1]/page[2]/group[1]/group[1]/field[1]" position="attributes">
  59.     <attribute name="string">Conseiller énergie</attribute>
  60.   </xpath>
  61.  
  62. </data>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement