diff --git a/app/controllers/admin/AssetsController.php b/app/controllers/admin/AssetsController.php index e226bd8961..90f67f6523 100644 --- a/app/controllers/admin/AssetsController.php +++ b/app/controllers/admin/AssetsController.php @@ -136,9 +136,9 @@ class AssetsController extends AdminController { $depreciation = $asset->depreciate(); $row[] = $asset->purchase_date; - $row[] = '$'.$asset->purchase_cost; - $row[] = '$'.$depreciation; - $row[] = '$'.($asset->purchase_cost - $depreciation); + $row[] = '"'.number_format($asset->purchase_cost).'"'; + $row[] = '"'.number_format($depreciation).'"'; + $row[] = '"'.number_format($asset->purchase_cost - $depreciation).'"'; $rows[] = implode($row, ','); }