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

« back to all changes in this revision

Viewing changes to tender_flow/test/tender_flow.yml

UF-558 [ADD] Add account_id on analytic distribution wizard to add a constraint on Funding Pool

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
    # update the price_unit of purchase order line
214
214
    tender_id = False
215
215
    for po in self.browse(cr, uid, ids):
216
 
      # update valid till date
217
 
      po.write({'valid_till': '2011-10-31',})
218
216
      for pol in po.order_line:
219
217
        pol.write({'price_unit':1024})
220
218
      tender_id = po.tender_id
259
257
    
260
258
    # all rfqs must be rfq_done
261
259
    for rfq in tender.rfq_ids:
262
 
      assert rfq.state == 'done', 'the state of the rfq is not done : done - %s'%rfq.state
 
260
      assert rfq.state == 'rfq_done', 'the state of the rfq is not rfq_done : done - %s'%rfq.state
263
261
       
264
262
    # the final po must have state = 'confirmed'
265
263
    po_obj = self.pool.get('purchase.order')