most importantly: new category and filter on is_new

This commit is contained in:
Daniel Goc
2026-04-13 15:29:21 +02:00
parent 7f05d39b38
commit ce4cadaa16
14 changed files with 159 additions and 189 deletions

View File

@@ -12,6 +12,7 @@ type ProductInList struct {
PriceTaxExcl float64 `gorm:"column:price_tax_excl" json:"price_tax_excl"`
PriceTaxIncl float64 `gorm:"column:price_tax_incl" json:"price_tax_incl"`
IsFavorite bool `gorm:"column:is_favorite" json:"is_favorite"`
IsNew uint `gorm:"column:is_new" json:"is_new"`
}
type ProductFilters struct {