Subbu1304 commited on
Commit
ad5103f
·
verified ·
1 Parent(s): c0c75d5

Update templates/order.html

Browse files
Files changed (1) hide show
  1. templates/order.html +17 -2
templates/order.html CHANGED
@@ -155,7 +155,7 @@
155
  <p><strong>Total Bill:</strong> <span class="total-price">${{ "%.2f"|format(order.Total_Bill__c) }}</span></p>
156
  </div> -->
157
  <div class="container mt-5 cart-item">
158
- <div class="container ">
159
  <div class="d-flex justify-content-between mb-3">
160
  <p><strong>Sub-Total:</strong></p>
161
  <p class="cart-item-actions">${{ order.Total_Amount__c }}</p>
@@ -168,7 +168,22 @@
168
  <p><strong>Total Bill:</strong></p>
169
  <p class="cart-item-actions">${{ "%.2f"|format(order.Total_Bill__c) }}</p>
170
  </div>
171
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
 
173
 
174
 
 
155
  <p><strong>Total Bill:</strong> <span class="total-price">${{ "%.2f"|format(order.Total_Bill__c) }}</span></p>
156
  </div> -->
157
  <div class="container mt-5 cart-item">
158
+ <!-- <div class="container ">
159
  <div class="d-flex justify-content-between mb-3">
160
  <p><strong>Sub-Total:</strong></p>
161
  <p class="cart-item-actions">${{ order.Total_Amount__c }}</p>
 
168
  <p><strong>Total Bill:</strong></p>
169
  <p class="cart-item-actions">${{ "%.2f"|format(order.Total_Bill__c) }}</p>
170
  </div>
171
+ </div> -->
172
+ <div class="container">
173
+ <div class="d-flex justify-content-between mb-3">
174
+ <p><strong>Sub-Total:</strong></p>
175
+ <p class="cart-item-actions">${{ order.Total_Amount__c }}</p>
176
+ </div>
177
+ <div class="d-flex justify-content-between mb-3">
178
+ <p><strong>Discount:</strong></p>
179
+ <p class="cart-item-actions">${{ "%.2f"|format(order.Discount__c) }}</p>
180
+ </div>
181
+ <!-- Add dotted line here -->
182
+ <div class="d-flex justify-content-between mb-3" style="border-bottom: 1px dotted #000;">
183
+ <p><strong>Total Bill:</strong></p>
184
+ <p class="cart-item-actions">${{ "%.2f"|format(order.Total_Bill__c) }}</p>
185
+ </div>
186
+ </div>
187
 
188
 
189