Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
4272 Visualizzazioni

i have 2 groups in my application (group_staff, group_user). i have the below view

<record id="view_staff_reservation_form" model="ir.ui.view">

<field name="name">reservation.form.view</field>

<field name="model">reservations.reservation</field>

<field name="arch" type="xml">

<tree string="Reservation">

<field name="id"></field>

<field name="reserve_item_id"></field>

<field name="is_reserve"></field>

<field name="is_reserve_accepted"></field>

</tree>

</field>

</record>

i need to make is_reserve field is readonly for group_staff and i need to make is_reserve_accepted field is readonly for group_user. can anybody help on this

Avatar
Abbandona
Autore Risposta migliore

Hi Ludovic CHEVALIER,

Thanks for the reply. i tried it. but not working

Avatar
Abbandona
Risposta migliore

Maybe something like this:

        <field name="is_reserve" readonly="1" groups="group_staff"/>
<field name="is_reserve" groups="group_user"/>
<field name="is_reserve_accepted" readonly="1" groups="group_user">
<field name="is_reserve_accepted" groups="group_staff">

Bye!

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
3
gen 24
13524
1
mag 23
3966
3
dic 23
90991
3
set 21
5097
1
set 15
8944