diff --git a/internal/entity/product.go b/internal/entity/product.go index 39e6062..9bfd8ea 100644 --- a/internal/entity/product.go +++ b/internal/entity/product.go @@ -105,7 +105,7 @@ func (b *ProductList) ToProductListPOS() []*Product { if isWeekend && p.IsWeekendTicket { Products = append(Products, p.ToProduct()) - } else { + } else if !isWeekend && !p.IsWeekendTicket { Products = append(Products, p.ToProduct()) } }