~unifield-team/unifield-wm/us-826

« back to all changes in this revision

Viewing changes to delivery_mechanism/test/delivery_mechanism-process-split-same-qty.yml

  • Committer: jf
  • Date: 2014-06-18 08:26:21 UTC
  • Revision ID: jfb@tempo-consulting.fr-20140618082621-cptq430pbwqo6z1t
Tags: pilot3.1b2
UFTP-249 [FIX] Reference field not imported in Unifield when importing register lines
lp:~unifield-team/unifield-wm/UFTP-78 2000..2001

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
    assert not a_qty, 'Quantity for product A is not empty - %s'%a_qty
124
124
    assert not b_qty, 'Quantity for product B is not empty - %s'%b_qty
125
125
    # check the moves in OUT
126
 
    a_qty = [3.0, 7.0]
127
 
    b_qty = [4.0, 1.0]
 
126
    a_qty = [3.0, 7.0, 0.0, 0.0]
 
127
    b_qty = [4.0, 1.0, 0.0, 0.0]
128
128
    out_ids = self.search(cr, uid, [('sale_id', '=', ref("so_C"))], context=context)
129
129
    # only one OUT for the sale order
130
 
    assert len(out_ids) == 1, 'number of out objects is wrong - 1 - %s'%len(out_ids)
 
130
    assert len(out_ids) == 2, 'number of out objects is wrong - 2 - %s'%len(out_ids)
131
131
    for obj in self.browse(cr, uid, out_ids, context=context):
132
132
      for move in obj.move_lines:
133
133
        if move.product_id.id == ref("product_A"):