liujiandao
2023-11-16 9cc7854c7262346a75b852afc65484be27c9537f
models/location_product_amount.go
@@ -124,7 +124,11 @@
   }
   if slf.Keyword != "" {
      db = db.Where("product_name like ?", fmt.Sprintf("%%%v%%", slf.Keyword))
      db = db.Joins("left join wms_location on wms_location_product_amount.location_id = wms_location.id").
         Joins("left join material on wms_location_product_amount.product_id = material.id").
         Joins("left join wms_product_category on wms_location_product_amount.product_category_id = wms_product_category.id").
         Where("wms_location.name like ?", "%"+slf.Keyword+"%").Or("material.name like ?", "%"+slf.Keyword+"%").
         Or("wms_product_category.name like ?", "%"+slf.Keyword+"%")
   }
   if slf.Preload {