Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
9026 Widoki

Hi all,,

For the confirmed sale orders, is it possible to hide one of the header buttons for a specific user? in my case, "View Delivery Order"

Thanks in advance..%

Awatar
Odrzuć
Najlepsza odpowiedź

Yes, it is possible. Here is my solution:

  1. create functional boolean field in stock.picking model that will return True or False, depending on user logged in;
  2. In xml using xpath modify attributes of this button, include this func field, smth like this:

    <xpath expr="//button[@name='button_name']" position="attributes"> <attribute name="attrs">{'invisible': [('func_field', '=', False)]}</attribute> </xpath>

Don't forget to add your functional field to stock.picking form view.

Awatar
Odrzuć
Autor

Thanks for the response, and here is another way Go to Settings->User Interface->Views and edit "sale.order.form.sale.stock" by changing the groups associated with the button.

<button name="action_view_delivery" string="View Delivery Order" type="object" class="oe_highlight" attrs="{'invisible': ['|','|','|',('picking_ids','=',False),('picking_ids','=',[]), ('state', 'not in', ('progress','manual')),('shipped','=',True)]}" groups="base.group_user"/>

You may change the group which you want to give there users access to the button, so i change it to base.group_sale_manager.

Powiązane posty Odpowiedzi Widoki Czynność
0
lis 23
1336
0
lut 23
1792
3
mar 18
21853
2
lip 16
4585
3
cze 23
4216