콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
714 화면

Hi everyone, i'm an Odoo developer and i need your help in a question i'm facing today.

(i'm using odoo 16v on my enviroment)

So my task i to hide a span in a form view in 'sales' the snippet of the form is this:

<group name="sale_shipping">
   <label for="commitment_date" string="Delivery Date"/>
      <div name="commitment_date_div" class="o_row">
           <field name="commitment_date"/>
  <span name="expected_date_span" class="text-muted">Expected:
​<field name="expected_date" class="oe_inline" widget="date"/>
​</span>
       </div>
</group>

i hided the field 'expected_date' correctly but the span's string "Expected:" still remain.


i tryed with this solution:

 <xpath expr="//group[@name='sale_shipping']/div[@name='commitment_date_div']/span[@name='expected_date_span']" position="attributes">
 <attribute name="invisible">1</attribute>
 </xpath>

but nevertheless, it give me this error along the terminal:


    raise err from from_exception
ValueError: Impossibile localizzare l'elemento "<xpath expr="//group[@name=&#39;sale_shipping&#39;]/div[@name=&#39;commitment_date_div&#39;]/span[@name=&#39;expected_date_span&#39;]">" nella vista principale
2025-05-26 14:24:11,781 1 INFO test_fritzfelix_30288 werkzeug: 172.18.0.1 - - [26/May/2025 14:24:11] "POST /web/dataset/call_kw/sale.order/get_views HTTP/1.1" 200 - 21 0.021 0.112

translated in english in short "Impossible to find the element in the view". but i gave to him the whole path to the span, i can find the solution.

someone can help me?

Thanks Cristian

아바타
취소
작성자 베스트 답변

the snippet you showed me is correct but you act in the Odoo core, because that form is in the odoo Core i need to act via xpath as i said in the description and hide it.

아바타
취소
베스트 답변

<xpath expr="//group[@name='sale_shipping']/div[@name='commitment_date_div']" position="replace">

    <div name="commitment_date_div" class="o_row">

        <field name="commitment_date"/>

        <span name="expected_date_span" class="text-muted" attrs="{'invisible': True}">

            Expected:

            <field name="expected_date" class="oe_inline" widget="date"/>

        </span>

    </div>

</xpath>


아바타
취소
관련 게시물 답글 화면 활동
2
6월 23
2908
1
6월 23
2717
1
11월 22
6766
1
7월 16
7494
1
6월 15
4454