物料管理 查询添加条件 oms-gw推送-物料管理 推送更新状态
This commit is contained in:
@@ -315,6 +315,24 @@
|
||||
and DATE_FORMAT(a.create_time,'%Y-%m-%d') <![CDATA[<=]]>
|
||||
DATE_FORMAT(#{createTimeTo},'%Y-%m-%d')
|
||||
</if>
|
||||
/*更新时间*/
|
||||
<if test="updateTimeFrom != null and updateTimeFrom != ''">
|
||||
and DATE_FORMAT(a.update_time,'%Y-%m-%d') >= #{updateTimeFrom}
|
||||
</if>
|
||||
<if test="updateTimeTo != null and updateTimeTo != ''">
|
||||
and DATE_FORMAT(a.update_time,'%Y-%m-%d') <= #{updateTimeTo}
|
||||
</if>
|
||||
/*推送状态*/
|
||||
<if test="pushStatus != null">
|
||||
and b.push_status = #{pushStatus}
|
||||
</if>
|
||||
/*推送时间*/
|
||||
<if test="pushTimeFrom != null and pushTimeFrom != ''">
|
||||
and DATE_FORMAT(b.push_time,'%Y-%m-%d') >= #{pushTimeFrom}
|
||||
</if>
|
||||
<if test="pushTimeTo != null and pushTimeTo != ''">
|
||||
and DATE_FORMAT(b.push_time,'%Y-%m-%d') <= #{pushTimeTo}
|
||||
</if>
|
||||
/*审核时间*/
|
||||
<if test="userAuthTimeFrom!=null and userAuthTimeTo!=null ">
|
||||
and DATE_FORMAT(b.shipper_fill_time,'%Y-%m-%d') <![CDATA[>=]]>
|
||||
|
||||
Reference in New Issue
Block a user