コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
5040 ビュー

Odoo 11.0.

It's just not there. I don't remember doing anything different...

Help?

アバター
破棄
最善の回答

Hi Shahar,

It does show in v11 as well. See following screenshot from runbot:


When you confirm PO, does it create incoming shipment? Also, make sure your products are of type stockable.

アバター
破棄
最善の回答

Hi, 

the button has the invisible attrs : 

attrs="{'invisible': ['|', '|' , ('is_shipped', '=', True), ('state','not in', ('purchase','done')), ('picking_count', '=', 0)]}"

First, check if one of these conditions is True.

that is to say : if (is_shipped is True) OR (state is different from purcahse or done) OR picking_count is null, then the button will not be visible.

Thanks.

アバター
破棄
著作者

What does `picking_count` stand for, please?

number of deliveries, (receptions)

when you confirm a purchase order, a picking is created automatically ( smart button to access to the order's stock picking)