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

« back to all changes in this revision

Viewing changes to partner_modification/test/partner_modification.yml

UF-385 [ADD] Added consumption_calculation module

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
    
2
 
3
 
  Creating a res.partner record
4
 
5
 
  !record {model: res.partner, id: res_partner_a0}:
6
 
    credit_limit: 0.0
7
 
    debit_limit: 0.0
8
 
    name: A
9
 
    supplier: true
10
 
    customer_lt: 1
11
 
    procurement_lt: 2
12
 
    transport_0: 'air'
13
 
    transport_0_lt: 3
14
 
  
15
 
-
16
 
 
17
 
  I check the default delay
18
 
 
19
 
-
20
 
  !python {model: res.partner}: |
21
 
    partner = self.browse(cr, uid, ref("res_partner_a0"))
22
 
    
23
 
    assert int(partner.default_delay) == (3+2), "default delay wrong : %s"%partner.default_delay
24
 
    
25
 
    air_delay = self.get_transport_lead_time(cr, uid, [partner.id], 'air', context=context)
26
 
    air_delay = air_delay[partner.id]
27
 
    assert air_delay == 3, 'air delay is wrong - 3 - %s'%air_delay