Skip to content

Commit

Permalink
Merge 1a27b83 into 57909cd
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Duan committed Sep 2, 2015
2 parents 57909cd + 1a27b83 commit 521d1f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stock_shipment_management/wizard/create_shipment.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def _get_shipment_data(self, moves):
to_addresses = moves.mapped('ship_to_address_id')
data.update(
from_address_id=from_addresses.id,
to_address_id=to_addresses and to_addresses[0].id
to_address_id=to_addresses[:1].id
)

etds = set(m.date_expected for m in moves)
Expand Down

0 comments on commit 521d1f7

Please sign in to comment.