sql+=" where t3.bailun_order_status!='Canceled' and ((t3.platform_type!='FBA' and t3.bailun_order_status!='CantHandle') or t3.platform_type='FBA') and t3.has_scalp=0 and t3.has_innersale=0 and t3.bailun_interception_status in ('None','Failed') and t3.has_delete=0 ";
if(companyid.HasValue&&companyid.Value>0)
{
sql+=" and t3.company_id="+companyid.Value;//增加公司id过滤
}
if(!string.IsNullOrWhiteSpace(platform))
{
sql+=" and t3.platform_type='"+platform+"'";
}
if(!string.IsNullOrWhiteSpace(website))
{
sql+=" and t3.website='"+website+"'";
}
if(start.HasValue)
{
sql+=" and t3.paid_time>='"+start.Value.ToString("yyyy-MM-dd")+"'";
}
if(end.HasValue)
{
sql+=" and t3.paid_time<'"+end.Value.AddDays(1).ToString("yyyy-MM-dd")+"'";
}
sql+=") t33 on tb.bailun_order_id=t33.bailun_order_id";
}
sql+=" where tb.bailun_order_status!='Canceled' and ((tb.platform_type!='FBA' and tb.bailun_order_status!='CantHandle') or tb.platform_type='FBA') and tb.has_scalp=0 and tb.has_innersale=0 and tb.bailun_interception_status in ('None','Failed') ";