Skip to content

Commit 9bf3403

Browse files
mnemoniclysnipe
authored andcommitted
Fix #2499 (#2500)
Missed this instance when renaming the method. Sorry!
1 parent f38593b commit 9bf3403

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Http/Controllers/ReportsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public function exportAssetReport()
167167
$row[] = '';
168168
}
169169
$row[] = $asset->purchase_date;
170-
$row[] = '"' . Helper::parsePurchasedCost($asset->purchase_cost) . '"';
170+
$row[] = '"' . Helper::formatCurrencyOutput($asset->purchase_cost) . '"';
171171
if ($asset->order_number) {
172172
$row[] = e($asset->order_number);
173173
} else {

0 commit comments

Comments
 (0)