Show Local Time

This commit is contained in:
Phyo
2017-06-22 16:45:58 +06:30
parent 4254004423
commit 298a06fc1e
7 changed files with 64 additions and 64 deletions

View File

@@ -113,7 +113,7 @@
</span></p>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 text-right">
<p>Date: <span id="receipt_date"><%= @date.utc.strftime("%d/%m/%Y - %I:%M %p") rescue '-'%></span></p>
<p>Date: <span id="receipt_date"><%= @date.utc.getlocal.strftime("%d/%m/%Y - %I:%M %p") rescue '-'%></span></p>
</div>
</div>
<div class="card-title row customer_detail hide">
@@ -304,7 +304,7 @@ $(document).ready(function(){
var sale_id = $('#save_order_id').attr('data-order');
}
window.location.href = '/origami/'+ sale_id + "/customers"
window.location.href = '/origami/'+ sale_id + "/customers"
});
// Discount for Payment
@@ -315,7 +315,7 @@ $(document).ready(function(){
}else{
var sale_id = $('#save_order_id').attr('data-order');
}
if(sale_id!=""){
window.location.href = '/origami/' + sale_id + '/discount'
}