This commit is contained in:
2021-03-16 22:38:47 +00:00
parent 9ffa94c6a7
commit 59e78baba7
2 changed files with 6 additions and 5 deletions

View File

@@ -298,9 +298,10 @@ export default {
if (!languageName) {
languageName = this.getBrowserLanguages();
}
return new Intl.NumberFormat(languageName, {
minimumFractionDigits: 2
}).format(value);
// return new Intl.NumberFormat(languageName, {
// minimumFractionDigits: 2
// }).format(value);
return new Intl.NumberFormat(languageName).format(value);
},
///////////////////////////////////////////
// Turn a file / memory size number into a local

View File

@@ -32,7 +32,7 @@
<th class="text-left">
{{ $ay.t("Part") }}
</th>
<th class="text-left">
<th class="text-right">
{{ $ay.t("WorkOrderItemPartQuantity") }}
</th>
<th></th>
@@ -47,7 +47,7 @@
<td class="text-left">
{{ item.partViz }}
</td>
<th class="text-left">
<th class="text-right">
{{ $ay.dec(item.quantity) }}
</th>