diff --git a/app/Views/sales/form.php b/app/Views/sales/form.php
index e35fd79cf..e59484da0 100644
--- a/app/Views/sales/form.php
+++ b/app/Views/sales/form.php
@@ -89,7 +89,7 @@
= esc($config['currency_symbol']) ?>
- = form_input(['name' => "payment_amount_$i", 'value' => $row->payment_amount, 'id' => "payment_amount_$i", 'class' => 'form-control input-sm', 'readonly' => 'true']) // TODO: add type attribute ?>
+ = form_input(['name' => "payment_amount_$i", 'value' => to_currency_no_money($row->payment_amount), 'id' => "payment_amount_$i", 'class' => 'form-control input-sm', 'readonly' => 'true']) // TODO: add type attribute ?>
= esc($config['currency_symbol']) ?>
@@ -112,7 +112,7 @@
= esc($config['currency_symbol']) ?>
- = form_input(['name' => "refund_amount_$i", 'value' => $row->cash_refund, 'id' => "refund_amount_$i", 'class' => 'form-control input-sm', 'readonly' => 'true']) ?>
+ = form_input(['name' => "refund_amount_$i", 'value' => to_currency_no_money($row->cash_refund), 'id' => "refund_amount_$i", 'class' => 'form-control input-sm', 'readonly' => 'true']) ?>
= esc($config['currency_symbol']) ?>