[IMP] Drop shipping type should be outgoing by default, that way it will create customer invoices when the sale is invoices on delivery order

This commit is contained in:
Josse Colpaert 2014-06-17 14:53:31 +02:00
parent 8fffbe7dc3
commit aef4d9b163
1 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,7 @@
<record id="picking_type_dropship" model="stock.picking.type">
<field name="name">Dropship</field>
<field name="sequence_id" ref="seq_picking_type_dropship"/>
<field name="code">incoming</field>
<field name="code">outgoing</field>
<field name="default_location_src_id" ref="stock.stock_location_suppliers"/>
<field name="default_location_dest_id" ref="stock.stock_location_customers"/>
</record>
@ -37,7 +37,6 @@
<field name="procure_method">make_to_stock</field>
<field name="route_id" ref="route_drop_shipping"/>
<field name="picking_type_id" ref="picking_type_dropship"/>
</record>
</record>
</data>
</openerp>