Skip to content

Commit

Permalink
Merge pull request #628 from shreesh-webkul/gli-1314
Browse files Browse the repository at this point in the history
Fixed: Inconsistent price for facilitiy in room row and pop-up modal in admin orders view page
  • Loading branch information
rohit053 authored Mar 15, 2023
2 parents 7e1afec + 0e1beed commit 99ddf3c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
{foreach $roomDemand['extra_demands'] as $demand}
<tr>
<td>{$demand['name']}</td>
<td>{displayPrice price=$demand['total_price_tax_incl'] currency=$orderCurrency}</td>
<td>{displayPrice price=$demand['total_price_tax_excl'] currency=$orderCurrency}</td>
<td><a class="btn btn-danger pull-right del-order-room-demand" href="#" id_booking_demand="{$demand['id_booking_demand']}"><i class="icon-trash"></i></a></td>
</tr>
{/foreach}
Expand Down Expand Up @@ -96,7 +96,7 @@
<div class="col-sm-12 room_demand_block">
<p>
<span>{$demand['name']}</span>
<span class="pull-right">{displayPrice price=$demand['total_price_tax_incl'] currency=$orderCurrency}</span>
<span class="pull-right">{displayPrice price=$demand['total_price_tax_excl'] currency=$orderCurrency}</span>
</p>
</div>
{/foreach}
Expand Down

0 comments on commit 99ddf3c

Please sign in to comment.