|
@@ -254,8 +254,8 @@ public class EntityAnalyse {
|
|
Double doubleValue = Double.parseDouble(approvedWeight) / 10;
|
|
Double doubleValue = Double.parseDouble(approvedWeight) / 10;
|
|
int intValue = doubleValue.intValue();
|
|
int intValue = doubleValue.intValue();
|
|
params.put("vehicleTonnage", intValue);
|
|
params.put("vehicleTonnage", intValue);
|
|
- String servicingWeight = df.format(hyDriverCarInfo.getServicingWeight());
|
|
|
|
- Double doubleValue1 = Double.parseDouble(servicingWeight) / 10;
|
|
|
|
|
|
+ String totalWeight = df.format(hyDriverCarInfo.getCarTotalWeight());
|
|
|
|
+ Double doubleValue1 = Double.parseDouble(totalWeight) / 10;
|
|
int intValue1 = doubleValue1.intValue();
|
|
int intValue1 = doubleValue1.intValue();
|
|
params.put("grossMass", intValue1);
|
|
params.put("grossMass", intValue1);
|
|
}
|
|
}
|