[FIX] Warehouse should be False on PoS and dropship picking types

This commit is contained in:
Josse Colpaert 2014-12-17 15:57:15 +01:00
parent 6f8546dfb5
commit 45afd64de1
2 changed files with 2 additions and 0 deletions

View File

@ -13,6 +13,7 @@
<field name="sequence_id" ref="seq_picking_type_posout"/>
<field name="default_location_src_id" ref="stock.stock_location_stock"/>
<field name="default_location_dest_id" ref="stock.stock_location_customers"/>
<field name="warehouse_id" eval="False"/>
<field name="code">outgoing</field>
</record>
</data>

View File

@ -15,6 +15,7 @@
<field name="name">Dropship</field>
<field name="sequence_id" ref="seq_picking_type_dropship"/>
<field name="code">incoming</field>
<field name="warehouse_id" eval="False"/>
<field name="default_location_src_id" ref="stock.stock_location_suppliers"/>
<field name="default_location_dest_id" ref="stock.stock_location_customers"/>
</record>