Commit d4f2611e authored by liudong1993's avatar liudong1993

1

parent d8f22a65
......@@ -3195,6 +3195,10 @@ WHERE 1=1 AND porder.OrderState<>4 AND IFNULL(porder.IsLeaderOrder,0)=0 AND pric
public List<RB_Travel_Order_Extend> GetInPayInfoListStatistics(RB_Travel_Order_Extend model)
{
string where = " ";
if (model.RB_Group_Id > 0)
{
where += " and porder." + nameof(RB_Travel_Order.RB_Group_Id) + "=" + model.RB_Group_Id;
}
if (model.RB_Branch_Id >= 0)
{
where += " and porder." + nameof(RB_Travel_Order.RB_Branch_Id) + "=" + model.RB_Branch_Id;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment