changes
Showing
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
... | ... | @@ -41,7 +41,7 @@ |
<div class="cart_detail"> | ||
<h4>{{unEscape(carts.prodName)}}</h4> | ||
<h4>{{carts.size}}, {{carts.color}}</h4> | ||
<h5>A$ {{carts.price}}</h5> | ||
<h5>A$ {{service.formatNumber(carts.price)}}</h5> | ||
</div> | ||
<div class="cart_count"> | ||
<div class="add" (click)="cartService.addCount(i)">+</div> | ||
... | ... | @@ -59,7 +59,8 @@ |
<p class="textLeft">Total Price:</p> | ||
</ion-col> | ||
<ion-col> | ||
<p class="textRight">A$ {{cartService.cartTotal.toFixed(2)}}</p> | ||
<p class="textRight">A$ | ||
{{service.formatNumber(cartService.cartTotal.toFixed(2))}}</p> | ||
</ion-col> | ||
</ion-row> | ||
</div> | ||
... | ... | @@ -75,7 +76,7 @@ |
<h5> | ||
<span class="floatLeft">ITEMS</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ | ||
{{cartService.cartTotal}}</span> | ||
{{service.formatNumber(cartService.cartTotal.toFixed(2))}}</span> | ||
<div class="clear"></div> | ||
</h5> | ||
<ion-grid class="p0" *ngIf="cartService.carts && cartService.carts.length > 0"> | ||
... | ... | @@ -88,7 +89,7 @@ |
</ion-col> | ||
<ion-col size="4" class="p0"> | ||
<h6 class="textRight"> | ||
<strong>A$ {{carts.price}}</strong> | ||
<strong>A$ {{service.formatNumber(carts.price)}}</strong> | ||
</h6> | ||
</ion-col> | ||
</ion-row> | ||
... | ... | @@ -99,12 +100,13 @@ |
<span class="floatRight" (click)="istoggle()">EDIT</span> | ||
<div class="clear"></div> | ||
</h5> | ||
<ion-grid class="p0" *ngIf="custAddress"> | ||
<ion-grid class="p0" *ngIf="addressService.custAddress"> | ||
<ion-row> | ||
<ion-col class="p0"> | ||
<h6> | ||
{{custAddress.building}},<br /> {{custAddress.landmark}}, | ||
<br /> {{custAddress.address}} | ||
{{addressService.custAddress.building}},<br /> | ||
{{addressService.custAddress.landmark}}, | ||
<br /> {{addressService.custAddress.address}} | ||
</h6> | ||
</ion-col> | ||
</ion-row> | ||
... | ... | @@ -115,16 +117,16 @@ |
<!-- <span class="floatRight">CHANGE</span> --> | ||
<div class="clear"></div> | ||
</h5> | ||
<div class="payment_method"> | ||
<!-- <div class="payment_method"> | ||
<input type="radio" name="payments" id="cod" name="radio-group" checked="true" | ||
(click)="getwaycod()" /> | ||
<label for="cod"> | ||
<p>COD</p> | ||
</label> | ||
</div> | ||
</div> --> | ||
<div class="payment_method"> | ||
<input type="radio" name="payments" id="paypal" name="radio-group" | ||
(click)="getwaypaypal()" /> | ||
(click)="getwaypaypal()" checked="true" /> | ||
<label for="paypal"> | ||
<p>PayPal</p> | ||
</label> | ||
... | ... | @@ -185,25 +187,25 @@ |
<h6> | ||
<span class="floatLeft">PRODUCT COST</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ | ||
{{cartService.cartTotal.toFixed(2)}}</span> | ||
{{service.formatNumber(cartService.cartTotal.toFixed(2))}}</span> | ||
<div class="clear"></div> | ||
</h6> | ||
<h6> | ||
<span class="floatLeft">DELIVERY CHARGE</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ | ||
{{getDeliveryCharge(cartService.cartTotal)}}</span> | ||
{{service.formatNumber(getDeliveryCharge(cartService.cartTotal))}}</span> | ||
<div class="clear"></div> | ||
</h6> | ||
<h6> | ||
<span class="floatLeft">GST/TAX</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ | ||
{{getTax(cartService.cartTotal)}}</span> | ||
{{service.formatNumber(getTax(cartService.cartTotal))}}</span> | ||
<div class="clear"></div> | ||
</h6> | ||
<h6 *ngIf="discountApplied"> | ||
<span class="floatLeft">DISCOUNT</span> | ||
<span class="floatRight">(-) A$ {{discount}}</span> | ||
<span class="floatRight">(-) A$ {{service.formatNumber(discount)}}</span> | ||
<div class="clear"></div> | ||
</h6> | ||
<hr /> | ||
... | ... | @@ -214,7 +216,7 @@ |
</ion-col> | ||
<ion-col> | ||
<p class="textRight" *ngIf="cartService.cartTotal"> | ||
A$ {{getTotal(cartService.cartTotal)}} | ||
A$ {{service.formatNumber(getTotal(cartService.cartTotal))}} | ||
</p> | ||
</ion-col> | ||
</ion-row> | ||
... | ... | @@ -226,8 +228,8 @@ |
<img src="../assets/[email protected]" /> | ||
<h4>Order Placed</h4> | ||
<p>{{bookDate}}</p> | ||
<h3>The product will be delivered in</h3> | ||
<h1>{{deliveryTime}} Mins</h1> | ||
<h3>Your order is due for delivery in</h3> | ||
<h1>{{deliveryTime}}</h1> | ||
<button class="view_order" (click)="goToPage('myorder')"> | ||
VIEW ORDERS</button><br /> | ||
<button class="home_btn" (click)="goToPage('home')">HOME</button> | ||
... | ... | @@ -240,7 +242,7 @@ |
</ion-content> | ||
<ion-footer> | ||
<div class="footer_btnbay" *ngIf="cartService.carts && cartService.carts.length > 0" [hidden]="currentIndex != 0"> | ||
<div class="continue" (click)="goToPage('home')"> | ||
<div class="continue" (click)="goToPage('productlist')"> | ||
CONTINUE SHOPPING | ||
</div> | ||
<div class="checkout" (click)="next(1)">CHECKOUT</div> | ||
... | ... | @@ -262,7 +264,7 @@ |
<div *ngIf="isShow" [@slideInOut]> | ||
<div class="nav_header"> | ||
<button class="nav_btn nav_back floatLeft" (click)="istoggle(); setAddress()"> | ||
<button class="nav_btn nav_back floatLeft" (click)="istoggle();"> | ||
<img src="../assets/Group17_2.png" /> | ||
</button> | ||
<div class="nav_title floatLeft"> | ||
... | ... |
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment