src/app/business/services/util/tools.service.ts
@@ -28,8 +28,8 @@ } ); } public static toThousands(num: string): string { var num = (num || 0).toString(), result = ''; public static toThousands(number: string): string { let num = (number || 0).toString(), result = ''; while (num.length > 3) { result = ',' + num.slice(-3) + result; num = num.slice(0, num.length - 3);