| | |
| | | <if test="dispatchNo != null and dispatchNo != ''"> and thisTab.dispatch_no = #{dispatchNo}</if> |
| | | <if test="customerName != null and customerName != ''"> and thisTab.customer_name like concat('%', #{customerName}, '%')</if> |
| | | <if test="projectName != null and projectName != ''"> and thisTab.project_name like concat('%', #{projectName}, '%')</if> |
| | | <if test="orderDate != null "> and thisTab.order_date = #{orderDate}</if> |
| | | <if test="orderDateBegin != null and orderDateBegin!='' and orderDateEnd != null and orderDateEnd!='' "> and thisTab.order_date between #{orderDateBegin} and #{orderDateEnd}</if> |
| | | |
| | | <if test="feeName != null and feeName != ''"> and thisTab.fee_name like concat('%', #{feeName}, '%')</if> |
| | | <if test="estimatedAmount != null "> and thisTab.estimated_amount = #{estimatedAmount}</if> |
| | | <if test="currency != null and currency != ''"> and thisTab.currency = #{currency}</if> |