Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
2 Răspunsuri
4970 Vizualizări

Odoo 11.0.

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

Help?

Imagine profil
Abandonează
Cel mai bun răspuns

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.

Imagine profil
Abandonează
Cel mai bun răspuns

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.

Imagine profil
Abandonează
Autor

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)