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

« back to all changes in this revision

Viewing changes to delivery_mechanism/test/delivery_mechanism-process-split-less.yml

  • Committer: matthieu.choplin at msf
  • Date: 2012-08-30 07:48:00 UTC
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: matthieu.choplin@geneva.msf.org-20120830074800-l442bu42mt0yzutn
[uf-1374]- change the write and create by an _sql_constraint on the financing contract check dates

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
    assert not a_qty, 'Quantity for product A is not empty - %s'%a_qty
145
145
    assert not b_qty, 'Quantity for product B is not empty - %s'%b_qty
146
146
    # check the moves in OUT
147
 
    a_qty = [5.0, 2.0, 3.0, 0.0, 0.0] # the missing qty is put on a new stock move after assignation
148
 
    b_qty = [3.0, 1.0, 1.0, 0.0, 0.0] # same behavior, the missing 3 is placed in the new move
 
147
    a_qty = [5.0, 5.0] # the missing qty is put in the first move (2 + (10-7)) = 5 instead of 2 for the first one)
 
148
    b_qty = [4.0, 1.0] # same behavior, the missing 3 is placed in the first move
149
149
    out_ids = self.search(cr, uid, [('sale_id', '=', ref("so_D"))], context=context)
150
150
    # only one OUT for the sale order
151
 
    assert len(out_ids) == 2, 'number of out objects is wrong - 2 - %s'%len(out_ids)
 
151
    assert len(out_ids) == 1, 'number of out objects is wrong - 1 - %s'%len(out_ids)
152
152
    for obj in self.browse(cr, uid, out_ids, context=context):
153
153
      for move in obj.move_lines:
154
154
        if move.product_id.id == ref("product_A"):