simpo-component-library 1.9.9 → 1.9.91

Sign up to get free protection for your applications and to get access to all the features.
@@ -4623,42 +4623,42 @@ class CartComponent extends BaseSection {
4623
4623
  this.cartInfo["cartId"] = response.data?.[0]?.cartId;
4624
4624
  this.getCouponList();
4625
4625
  if (response.data?.[0]?.orderedItems?.length > 0) {
4626
- this.mergeOrderItems(tempUserCart);
4627
- // this.storageService.addAllProductsToCart(this.cartInfo.orderedItems).oncomplete = ()=> {
4628
- this.storageService.getUserCart().then((cartResponse) => {
4629
- cartResponse.onsuccess = (cartData) => {
4630
- if (!(localStorage.getItem("couponId") == "undefined" || localStorage.getItem("couponId") == "null"))
4631
- this.cartInfo.billdetails.couponId = localStorage.getItem("couponId");
4632
- if (!(localStorage.getItem("couponCode") == "undefined" || localStorage.getItem("couponCode") == "null"))
4633
- this.cartInfo.billdetails.couponCode = localStorage.getItem("couponCode");
4634
- const restResponse = this.restService.addItemToDB(this.cartInfo).toPromise();
4635
- restResponse.then((response) => {
4636
- this.cartInfo.billdetails.totalGrossValue = 0;
4637
- this.cartInfo.billdetails.totalTax = 0;
4638
- this.cartInfo.billdetails.deliveryCharges = 0;
4639
- this.cartInfo.billdetails.totalNetValue = 0;
4640
- this.cartInfo.totalAmount = 0;
4641
- this.USER_CART_ITEMS = cartData.target.result;
4642
- this.USER_CART_ITEMS.forEach((item) => {
4643
- this.cartInfo.billdetails.totalGrossValue += (item.discountedPrice * (item.quantity ?? 1));
4644
- this.cartInfo.billdetails.totalTax += (item.quantity * (item.itemTax ?? 0));
4626
+ // this.mergeOrderItems(tempUserCart);
4627
+ this.storageService.addAllProductsToCart(this.cartInfo.orderedItems).oncomplete = () => {
4628
+ this.storageService.getUserCart().then((cartResponse) => {
4629
+ cartResponse.onsuccess = (cartData) => {
4630
+ if (!(localStorage.getItem("couponId") == "undefined" || localStorage.getItem("couponId") == "null"))
4631
+ this.cartInfo.billdetails.couponId = localStorage.getItem("couponId");
4632
+ if (!(localStorage.getItem("couponCode") == "undefined" || localStorage.getItem("couponCode") == "null"))
4633
+ this.cartInfo.billdetails.couponCode = localStorage.getItem("couponCode");
4634
+ const restResponse = this.restService.addItemToDB(this.cartInfo).toPromise();
4635
+ restResponse.then((response) => {
4636
+ this.cartInfo.billdetails.totalGrossValue = 0;
4637
+ this.cartInfo.billdetails.totalTax = 0;
4638
+ this.cartInfo.billdetails.deliveryCharges = 0;
4639
+ this.cartInfo.billdetails.totalNetValue = 0;
4640
+ this.cartInfo.totalAmount = 0;
4641
+ this.USER_CART_ITEMS = cartData.target.result;
4642
+ this.USER_CART_ITEMS.forEach((item) => {
4643
+ this.cartInfo.billdetails.totalGrossValue += (item.discountedPrice * (item.quantity ?? 1));
4644
+ this.cartInfo.billdetails.totalTax += (item.quantity * (item.itemTax ?? 0));
4645
+ });
4646
+ this.cartInfo.billdetails.deliveryCharges = (deliveryOption?.minOrderAmount > this.cartInfo.billdetails.totalGrossValue) ? 0 : (deliveryOption?.deliveryCharges ?? 0);
4647
+ this.cartInfo.billdetails.totalNetValue = this.cartInfo.billdetails.totalGrossValue;
4648
+ this.cartInfo.orderedItems = this.USER_CART_ITEMS;
4649
+ this.cartInfo.billdetails.discountAmount = response?.data?.billdetails?.discountAmount ?? 0;
4650
+ this.cartInfo.billdetails.totalTaxAfterDiscount = response?.data?.billdetails?.totalTaxAfterDiscount ?? 0;
4651
+ this.cartInfo.totalAmount = this.cartInfo.billdetails.totalNetValue + this.getTaxAmount() + this.cartInfo.billdetails.deliveryCharges;
4652
+ // this.storageService.addAllProductsToCart(this.cartInfo.orderedItems)
4653
+ this.responseData = this.cartInfo;
4654
+ console.log(this.responseData);
4645
4655
  });
4646
- this.cartInfo.billdetails.deliveryCharges = (deliveryOption?.minOrderAmount > this.cartInfo.billdetails.totalGrossValue) ? 0 : (deliveryOption?.deliveryCharges ?? 0);
4647
- this.cartInfo.billdetails.totalNetValue = this.cartInfo.billdetails.totalGrossValue;
4648
- this.cartInfo.orderedItems = this.USER_CART_ITEMS;
4649
- this.cartInfo.billdetails.discountAmount = response?.data?.billdetails?.discountAmount ?? 0;
4650
- this.cartInfo.billdetails.totalTaxAfterDiscount = response?.data?.billdetails?.totalTaxAfterDiscount ?? 0;
4651
- this.cartInfo.totalAmount = this.cartInfo.billdetails.totalNetValue + this.getTaxAmount() + this.cartInfo.billdetails.deliveryCharges;
4652
- this.storageService.addAllProductsToCart(this.cartInfo.orderedItems);
4653
- this.responseData = this.cartInfo;
4654
- console.log(this.responseData);
4655
- });
4656
- };
4657
- cartResponse.onerror = (cartData) => {
4658
- this.messageService.add({ severity: 'error', summary: 'Error', detail: 'Failed to update cart details' });
4659
- };
4660
- });
4661
- // }
4656
+ };
4657
+ cartResponse.onerror = (cartData) => {
4658
+ this.messageService.add({ severity: 'error', summary: 'Error', detail: 'Failed to update cart details' });
4659
+ };
4660
+ });
4661
+ };
4662
4662
  }
4663
4663
  else {
4664
4664
  this.storageService.getUserCart().then((cartResponse) => {