diff --git a/htdocs/takepos/pay.php b/htdocs/takepos/pay.php
index 6e22f27f7ff..60a4840471e 100644
--- a/htdocs/takepos/pay.php
+++ b/htdocs/takepos/pay.php
@@ -329,7 +329,7 @@ print '';
+ print '';
} else {
print '';
}
@@ -355,7 +355,7 @@ print '';
+ print '';
} else {
$button = array_pop($action_buttons);
print '';
@@ -382,7 +382,7 @@ print '';
+ print '';
} else {
$button = array_pop($action_buttons);
print '';
@@ -394,7 +394,23 @@ print '';
+ $paycode = $arrayOfValidPaymentModes[$i]->code;
+ $payIcon = '';
+ if ($paycode == 'LIQ') {
+ if (!isset($conf->global->TAKEPOS_NUMPAD_USE_PAYMENT_ICON) || !empty($conf->global->TAKEPOS_NUMPAD_USE_PAYMENT_ICON)) {
+ $payIcon = 'coins';
+ }
+ } elseif ($paycode == 'CB') {
+ if (!isset($conf->global->TAKEPOS_NUMPAD_USE_PAYMENT_ICON) || !empty($conf->global->TAKEPOS_NUMPAD_USE_PAYMENT_ICON)) {
+ $payIcon = 'credit-card';
+ }
+ } elseif ($paycode == 'CHQ') {
+ if (!isset($conf->global->TAKEPOS_NUMPAD_USE_PAYMENT_ICON) || !empty($conf->global->TAKEPOS_NUMPAD_USE_PAYMENT_ICON)) {
+ $payIcon = 'money-check';
+ }
+ }
+
+ print '';
$i = $i + 1;
}