Browse Source

Fixes a presentation bug for paid member in Stand Time.

devel
Jonathan Rosenbaum 7 years ago
parent
commit
c6f68ff19b
  1. 1
      js/transaction.js

1
js/transaction.js

@ -732,6 +732,7 @@ $(function() {
$.post("json/transaction.php", { stand_time: 1, contact_id: this.value, shop_id: shop_id }, function (data) {
if (data) {
var obj = $.parseJSON(data);
amount.val("");
if(!obj.membership) {
amount.val(obj.total + ".00");
}

Loading…
Cancel
Save