Subbu1304 commited on
Commit
89296e9
·
verified ·
1 Parent(s): b60aaea

Update templates/order.html

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