跳至內容
選單
此問題已被標幟
1 回覆
1721 瀏覽次數

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?

頭像
捨棄
最佳答案

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.

頭像
捨棄
作者

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?

相關帖文 回覆 瀏覽次數 活動
0
5月 24
1132
1
2月 24
474
1
10月 22
2255
1
7月 25
497