
public PurchLine purchLine()
{
PurchLine purchLine;
if (this.PurchId && this.LineRefId)
{
select firstonly purchLine
where purchLine.PurchId == this.PurchId &&
purchLine.PurchReqLineRefId == this.LineRefId &&
!purchLine.IsDeleted;
}
return purchLine;
}