Advertisement
multiarts

Solved Somar price ou sale_price

Sep 10th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. addToCart(product) {
  2.      let productPrice = parseInt(product.sale_price) > 1 ? parseInt(product.sale_price) : parseInt(product.price);;
  3.  
  4.     let cartProduct = {
  5.       product_id: product.id,
  6.       name: product.title,
  7.       thumb: product.image,
  8.       count: this.productCount,
  9.       totalPrice: productPrice
  10.     };
  11.  
  12.     this.updateCartBadge(cartProduct);
  13.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement