5 lines
369 B
SQL
5 lines
369 B
SQL
select * from dm.v_ag_sal_collection
|
|
where 1=1
|
|
${if(len(p_bill_code) == 0,"","and bill_code in ('" + p_bill_code + "')")}
|
|
${if(len(p_remark) == 0,"","and remark in ('" + p_remark + "')")}
|
|
${if(p_is_src_deal== "主经销商",if(len(p_deal_name)==0,"","and deal_name in ('" + p_deal_name + "')"),if(len(p_deal_name)==0,"","and src_deal_name in ('" + p_deal_name + "')"))} |