update addorder for qty toatal

This commit is contained in:
Aung Myo
2018-05-23 17:59:20 +06:30
parent 0ec4b6cb12
commit 295615a9fc
2 changed files with 4 additions and 4 deletions

View File

@@ -1029,7 +1029,7 @@ $(function() {
$('#sub_total').append(fixed_total_price);
$('#total_qty').empty();
$('#total_qty').append(fixed_total_price);
$('#total_qty').append(total_qty);
if (item_row.length > 0) {
$('.create').removeAttr("disabled", false);

View File

@@ -255,9 +255,9 @@
<table class="table" id="order-charges-table" border="0">
<tr>
<td style="padding:2px;" width="5%"></td>
<td style="padding:2px;" width="15%"></td>
<td style="padding:2px; text-align:" class="charges-name" width="25%"><strong>Total:</strong></td>
<td colspan="2" style="padding:2px; text-align:" class="charges-name" width="25%"><strong>Total:</strong></td>
<td style="padding:2px;" width="15%"><strong id="total_qty">0</strong></td>
<td style="padding:2px; text-align:" width="25%" class="item-attr"><strong id="sub_total">0.00</strong></td>
</tr>
</table>