You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT itm.Name as ItemName ,cm.CompanyName,ct.CategoryName, sto.StockOutQuantity as Quantity, sto.Date FROM StockOut as sto left join ItemSetup as itm on sto.ItemId=itm.Id
left join CompanySetup as cm on sto.CompanyId=cm.CompanyId
left join CategorySetup as ct on itm.CategoryId = ct.CategoryId
WHERE sto.ActionType='sell'
ORDER BY itm.Name
SELECT ItemName, SUM(Quantity) as Total FROM SalesView