Переглянути джерело

Limit decimal precision on sack sum

Neal Wilson 9 роки тому
джерело
коміт
78796f18df
1 змінених файлів з 1 додано та 1 видалено
  1. 1
    1
      config/Reports/fypurchase.xml

+ 1
- 1
config/Reports/fypurchase.xml Переглянути файл

@@ -117,7 +117,7 @@
117 117
 				output.writeEndElement(); //tbody
118 118
 				output.writeStartElement("tfoot");
119 119
 				output.writeTextElement("th", "Totals:");
120
-				output.writeTextElement("td", sacktotal);
120
+				output.writeTextElement("td", sacktotal.toFixed(2));
121 121
 				output.writeTextElement("td", unittotal.toFixed(2));
122 122
 				output.writeTextElement("td", costtotal.toFixed(2));
123 123
 				output.writeEndElement(); //tfoot

Завантаження…
Відмінити
Зберегти