Skip to Content
Menu
This question has been flagged
1 Reply
1038 Views

I have these routes:


WH/OUT/00025

WH/PACK/00010

WH/PICK/00012


I manage to display button to PICK and PACK by adding 


attrs="{ 'invisible': ['|', ('state', '!=', 'done'), ('picking_type_code', '!=', 'internal')]}"


How can I limit it only to PICK?

Avatar
Discard
Best Answer

Hi, 

There are 2 options: 

1- add a domain pointing at picking_type_code == "internal" And picking_type_id.sequence_code == 'PICK'

2- Add compute field, is_pick for example, which will be True if conditions writtten in 1 are OK or you can even check the locations of the picking_type_id: if movement is from A to B , then you consider it a PICK operation => ('default_location_src_id', '=', REF TO A), ('default_location_dest_id', '=', REF TO B)

if your process is normal pick pack ship, i would recommand option 1. it's simpler and faster.

But if you work on multi company or you have different pick locations with code that can change.. i'd recommand option 2.

hope this helps.

Avatar
Discard
Author

Sorry for a late reply, but when I add:
attrs="{ 'invisible': ['|', ('state', '!=', 'done'), ('picking_type_id.sequence_code ', '!=', 'PICK')]}"/>
It trows an error, for some reason I cant access attribute of picking_type_id, any idea why?

Related Posts Replies Views Activity
0
May 24
273
1
Feb 24
398
1
Oct 22
1349