Commit aee372a2 authored by Muhammad Suryono's avatar Muhammad Suryono

Merge branch 'cart' of https://git.mdd.co.id:44195/muhammadsuryono/meser into cart

parents 45b74071 2a40df52
......@@ -137,7 +137,7 @@ public class BottomSheets extends BottomSheetDialogFragment {
input = Long.parseLong(inputAmount.getText().toString());
result = input - grossAmount;
if (result > 0) {
if (result >= 0) {
btnCash.setEnabled(true);
} else {
btnCash.setEnabled(false);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment