diff --git a/app/views/origami/jcb/index.html.erb b/app/views/origami/jcb/index.html.erb index ac4b2438..e9cc09fa 100644 --- a/app/views/origami/jcb/index.html.erb +++ b/app/views/origami/jcb/index.html.erb @@ -134,6 +134,7 @@ $(document).on('click', '.cashier_number', function(event){ case 'del' : var cash=$('#amount').text(); $('#amount').text(cash.substr(0,cash.length-1)); + break; case 'nett': var remain_amount = $('#validamount').val(); $('#amount').text(remain_amount); diff --git a/app/views/origami/master/index.html.erb b/app/views/origami/master/index.html.erb index 09fe02b1..6afc1081 100644 --- a/app/views/origami/master/index.html.erb +++ b/app/views/origami/master/index.html.erb @@ -133,6 +133,7 @@ $(document).on('click', '.cashier_number', function(event){ case 'del' : var cash=$('#amount').text(); $('#amount').text(cash.substr(0,cash.length-1)); + break; case 'nett': var remain_amount = $('#validamount').val(); $('#amount').text(remain_amount); diff --git a/app/views/origami/mpu/index.html.erb b/app/views/origami/mpu/index.html.erb index eb2267e7..e8e25b2f 100644 --- a/app/views/origami/mpu/index.html.erb +++ b/app/views/origami/mpu/index.html.erb @@ -133,6 +133,7 @@ $(document).on('click', '.cashier_number', function(event){ case 'del' : var cash=$('#amount').text(); $('#amount').text(cash.substr(0,cash.length-1)); + break; case 'nett': var remain_amount = $('#validamount').val(); $('#amount').text(remain_amount); diff --git a/app/views/origami/payments/show.html.erb b/app/views/origami/payments/show.html.erb index fe36277b..ae642a9d 100644 --- a/app/views/origami/payments/show.html.erb +++ b/app/views/origami/payments/show.html.erb @@ -106,14 +106,14 @@