correct type conversion in csv import
This commit is contained in:
parent
b9d788935d
commit
f2ea45cd19
@ -28,7 +28,7 @@ def _set_additional_parameters(component, type, value):
|
|||||||
|
|
||||||
param = ComponentParameter.objects.create(component=component,
|
param = ComponentParameter.objects.create(component=component,
|
||||||
parameter_type=param_type)
|
parameter_type=param_type)
|
||||||
if param_type == 'F':
|
if param_type.parameter_type == 'F':
|
||||||
param.text_value = value
|
param.text_value = value
|
||||||
else:
|
else:
|
||||||
param.value = float(value)
|
param.value = float(value)
|
||||||
|
Loading…
Reference in New Issue
Block a user