update edit

This commit is contained in:
Aung Myo
2017-07-05 18:27:30 +06:30
parent 7cee40746d
commit 05b5afcafa
4 changed files with 72 additions and 24 deletions

View File

@@ -42,7 +42,7 @@
count += 1
%>
<% sub_total += sale_item.qty*sale_item.unit_price%>
<% sub_total += sale_item.price%>
<tr>
<td><%= count %></td>
<td style="width:60%; text-align:left">
@@ -52,7 +52,7 @@
<span id="item-qty"><%=sale_item.qty%></span>
</td>
<td style="width:20%; text-align:right">
<span id="item-total-price"><%=(sale_item.qty*sale_item.unit_price)%></span>
<span id="item-total-price"><%=(sale_item.price)%></span>
</td>
</tr>
<%end %>