Beautify source code.
This commit is contained in:
parent
b1b273aed1
commit
d50f0ba6f5
|
@ -22,7 +22,10 @@ SELECT s.AD_Client_ID, s.AD_Org_ID,
|
|||
asi.GuaranteeDate, -- see PAttributeInstance.java
|
||||
daysBetween(asi.GuaranteeDate,getdate()) AS ShelfLifeDays,
|
||||
daysBetween(asi.GuaranteeDate,getdate())-p.GuaranteeDaysMin AS GoodForDays,
|
||||
CASE WHEN COALESCE(p.GuaranteeDays,0)>0 THEN ROUND((daysBetween(asi.GuaranteeDate,getdate())/p.GuaranteeDays)*100,0) ELSE NULL END AS ShelfLifeRemainingPct
|
||||
CASE WHEN COALESCE(p.GuaranteeDays,0)>0
|
||||
THEN ROUND((daysBetween(asi.GuaranteeDate,getdate())/p.GuaranteeDays)*100,0)
|
||||
ELSE NULL
|
||||
END AS ShelfLifeRemainingPct
|
||||
FROM M_Storage s
|
||||
INNER JOIN M_Locator l ON (s.M_Locator_ID=l.M_Locator_ID)
|
||||
INNER JOIN M_Product p ON (s.M_Product_ID=p.M_Product_ID)
|
||||
|
|
|
@ -34,6 +34,3 @@ WHERE p.IsSummary='N' AND p.IsActive='Y' AND pr.IsActive='Y' AND w.IsActive='Y';
|
|||
--AND UPPER(p.Value) LIKE ? AND UPPER(p.Name) LIKE ?
|
||||
--AND UPPER(p.UPC) LIKE ? AND UPPER(p.SKU) LIKE ?
|
||||
--ORDER BY QtyAvailable DESC, Margin DESC;
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue