habe bereits eine Teillösung gefunden, muss nur noch die Abfrage soweit eingrenzen das nur der aktuelle Tag angezeigt wird, geht das mit WHERE?
SELECT s.name AS Lieferant, od.id_order, od.product_reference AS ArtNr, od.product_name AS Artikel, SUM(od.product_quantity) AS Menge
FROM hrp_order_detail od
LEFT JOIN hrp_product p ON (p.id_product = od.product_id)
LEFT JOIN hrp_supplier s ON (s.id_supplier = p.id_supplier)
GROUP by od.product_name
ORDER BY s.name ASC
vg Gerd