File "/home/mrichez/Workspace/tryton/tryton_custo_dev/trytond/trytond/modules/purchase_secondary_unit/tests/scenario_purchase_secondary_unit.rst", line 95, in scenario_purchase_secondary_unit.rst
Failed example:
line.secondary_quantity
Expected:
2000.0
Got nothing
When doing test in the demo, secondary quantity is updated when switching secondary unit.
Am I doing something wrong in the proteus scenario ? Should I force an ‘on_change…’ ?
Thanks.
By changing only the secondary unit but keep the secondary quantity, you force a recalculation of the quantity.
I guess in your example the quantity is below the precision so it is rounded to 0.
Now the computation of the secondary quantity is testing if there is a quantity before computing it so it does not compute as it is 0.
I guess we could test against None instead to have also a 0 as secondary quantity.
I’ve updated the test, the error happens after switching secondary unit to kg and testing secondary quantity and I’m understanding the behavior and my mistake.
So line.quantity is correctly updated from 10 to 10000 when switching secondary unit from ‘gram’ to ‘Kilogram’ and then secondary quantity is also updated from quantity. So, 10000 units is equal to 2000 Kilogram (quantity has priority over secondary quantity). I thought when I switched secondary unit that secondary quantity will be kept and quantity will be updated following secondary quantity. but it’s the inverse: quantity is first updated and then secondary quantity is updated.
...
Check secondary unit::
>>> line.product_supplier = product_supplier
>>> line.quantity = 10
>>> line.secondary_unit == gr
True
>>> line.secondary_quantity
2000.0
>>> line.secondary_unit = kg
>>> line.quantity
10000.0
>>> line.secondary_quantity
2.0 ->>> Incorrect (it should be 2000.0)
>>> line.secondary_unit_price
Decimal('15.0000')
...