mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Mantis#0000339 - calculate ounces in a gram to be used when calculating kg to lbs and ounces when printing daily report to account for loss of precision/rounding occurring when kilograms value being saved in journal object
This commit is contained in:
parent
7ca4f42ccb
commit
f96ef0f15e
@ -283,7 +283,7 @@ QString weightString(float kg, UnitSystem us)
|
||||
if (us == US_Metric) {
|
||||
return QString("%1kg").arg(kg, 0, 'f', 2);
|
||||
} else if (us == US_English) {
|
||||
int oz = (kg * 1000.0) / (float)ounce_convert;
|
||||
int oz = (kg * 1000.0) * (float)gram_ounce_convert;
|
||||
int lb = oz / 16.0;
|
||||
oz = oz % 16;
|
||||
return QString("%1lb %2oz").arg(lb, 0, 10).arg(oz);
|
||||
|
@ -83,6 +83,7 @@ bool operator <(const ValueCount &a, const ValueCount &b);
|
||||
|
||||
const float ounce_convert = 28.3495231F; // grams
|
||||
const float pound_convert = ounce_convert * 16;
|
||||
const float gram_ounce_convert = 0.0352754; // ounces in a gram
|
||||
|
||||
QString weightString(float kg, UnitSystem us = US_Undefined);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user