dont throw error when item is not avail
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-06-15 15:45:37 +03:30
parent 2a36e9e831
commit 744c93a7ca
+7 -2
View File
@@ -5,7 +5,7 @@ import { OrderCouponDetail } from '../../orders/interface/order.interface';
import { Cart } from '../interfaces/cart.interface'; import { Cart } from '../interfaces/cart.interface';
import { BulkAddItemsToCartDto } from '../dto/bulk-add-items.dto'; import { BulkAddItemsToCartDto } from '../dto/bulk-add-items.dto';
import { ApplyCouponDto } from '../dto/apply-coupon.dto'; import { ApplyCouponDto } from '../dto/apply-coupon.dto';
import { SetAllCartParmsDto } from '../dto/set-all-cart-params.dto'; import { SetAllCartParmsDto } from '../dto/set-all-cart-params.dto';
import { CouponService } from '../../coupons/providers/coupon.service'; import { CouponService } from '../../coupons/providers/coupon.service';
import { CartRepository } from '../repositories/cart.repository'; import { CartRepository } from '../repositories/cart.repository';
import { CartValidationService } from './cart-validation.service'; import { CartValidationService } from './cart-validation.service';
@@ -206,7 +206,12 @@ export class CartService {
const cart = await this.getOrCreateCart(userId, restaurantId); const cart = await this.getOrCreateCart(userId, restaurantId);
for (const addItemDto of bulkAddItemsDto.items) { for (const addItemDto of bulkAddItemsDto.items) {
await this.itemService.addOrIncrementItem(cart, addItemDto.foodId, restaurantId, addItemDto.quantity); try {
await this.itemService.addOrIncrementItem(cart, addItemDto.foodId, restaurantId, addItemDto.quantity);
} catch (err) {
console.log(err);
}
} }
return this.recalculateAndSaveCart(cart); return this.recalculateAndSaveCart(cart);