transactions for order reservation and api for tax profile
This commit is contained in:
@@ -15,7 +15,9 @@ App.order_reservation = App.cable.subscriptions.create('OrderReservationChannel'
|
||||
var active_class = "";
|
||||
if(key==0){
|
||||
active_class = "tr-active";
|
||||
showNewOrder(order[key],shop_code);
|
||||
if (typeof showNewOrder !== 'undefined' && $.isFunction(showNewOrder)) {
|
||||
showNewOrder(order[key],shop_code);
|
||||
}
|
||||
}
|
||||
var rowCount = key+1;
|
||||
var date = new Date(value.created_at);
|
||||
@@ -49,7 +51,9 @@ App.order_reservation = App.cable.subscriptions.create('OrderReservationChannel'
|
||||
});
|
||||
}
|
||||
|
||||
customTableClick();
|
||||
if (typeof customTableClick !== 'undefined' && $.isFunction(customTableClick)) {
|
||||
customTableClick();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user