2923053 Create PO from Requisition failing
Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2923053
This commit is contained in:
parent
66c0db1d02
commit
092e89d664
|
@ -212,7 +212,7 @@ public class RequisitionPOCreate extends SvrProcess
|
||||||
}
|
}
|
||||||
if (p_DateDoc_From != null)
|
if (p_DateDoc_From != null)
|
||||||
{
|
{
|
||||||
whereClause.append(" AND r.DateDoc => ?");
|
whereClause.append(" AND r.DateDoc >= ?");
|
||||||
params.add(p_DateDoc_From);
|
params.add(p_DateDoc_From);
|
||||||
}
|
}
|
||||||
if (p_DateDoc_To != null)
|
if (p_DateDoc_To != null)
|
||||||
|
@ -222,7 +222,7 @@ public class RequisitionPOCreate extends SvrProcess
|
||||||
}
|
}
|
||||||
if (p_DateRequired_From != null)
|
if (p_DateRequired_From != null)
|
||||||
{
|
{
|
||||||
whereClause.append(" AND r.DateRequired => ?");
|
whereClause.append(" AND r.DateRequired >= ?");
|
||||||
params.add(p_DateRequired_From);
|
params.add(p_DateRequired_From);
|
||||||
}
|
}
|
||||||
if (p_DateRequired_To != null)
|
if (p_DateRequired_To != null)
|
||||||
|
@ -232,7 +232,7 @@ public class RequisitionPOCreate extends SvrProcess
|
||||||
}
|
}
|
||||||
if (p_PriorityRule != null)
|
if (p_PriorityRule != null)
|
||||||
{
|
{
|
||||||
whereClause.append(" AND r.PriorityRule => ?");
|
whereClause.append(" AND r.PriorityRule >= ?");
|
||||||
params.add(p_PriorityRule);
|
params.add(p_PriorityRule);
|
||||||
}
|
}
|
||||||
if (p_AD_User_ID > 0)
|
if (p_AD_User_ID > 0)
|
||||||
|
|
Loading…
Reference in New Issue