Subbu1304 commited on
Commit
4be4601
·
verified ·
1 Parent(s): f201590

Update templates/order.html

Browse files
Files changed (1) hide show
  1. templates/order.html +4 -3
templates/order.html CHANGED
@@ -172,18 +172,19 @@
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 | int }}</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">${{ order.Discount__c | int }}</p>
180
  </div>
181
  <div class="d-flex justify-content-between mb-3">
182
  <p><strong>Total Bill:</strong></p>
183
- <p class="cart-item-actions">${{ order.Total_Bill__c | int }}</p>
184
  </div>
185
  </div>
186
 
 
187
  </div>
188
 
189
 
 
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 | float | format('%.1f') }}</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">${{ order.Discount__c | float | format('%.1f') }}</p>
180
  </div>
181
  <div class="d-flex justify-content-between mb-3">
182
  <p><strong>Total Bill:</strong></p>
183
+ <p class="cart-item-actions">${{ order.Total_Bill__c | float | format('%.1f') }}</p>
184
  </div>
185
  </div>
186
 
187
+
188
  </div>
189
 
190