修改bug 寄售 预验收 带票库存详情加排序

pro
wangwei 2 years ago
parent 62b26214a6
commit 6e2d85ed76

@ -76,4 +76,6 @@ public class FilterInvPreProductDetailRequest extends ListPageRequest {
*/ */
private String updateTime; private String updateTime;
private String orderBy;
} }

@ -85,4 +85,6 @@ public class FilterInvProductDetailRequest extends ListPageRequest {
* *
*/ */
private String expireDate; private String expireDate;
private String orderBy;
} }

@ -371,7 +371,8 @@
auth_warehouse.name, auth_warehouse.name,
auth_warehouse.parentId, auth_warehouse.parentId,
auth_warehouse.parentCode, auth_warehouse.parentCode,
auth_dept.name warehouseName auth_dept.name warehouseName,
auth_warehouse.advanceType
from auth_warehouse from auth_warehouse
inner join auth_dept on auth_warehouse.parentId = auth_dept.code inner join auth_dept on auth_warehouse.parentId = auth_dept.code
LEFT join auth_warehouse_user on auth_warehouse.code = auth_warehouse_user.code LEFT join auth_warehouse_user on auth_warehouse.code = auth_warehouse_user.code

@ -51,6 +51,16 @@
AND updateTime <![CDATA[ <= ]]> #{updateTime} AND updateTime <![CDATA[ <= ]]> #{updateTime}
</if> </if>
</where> </where>
<choose>
<when test="(orderBy!=null ) and (sort=='desc' or sort=='asc')">
order by ${orderBy} ${sort}
</when>
<otherwise>
ORDER BY updateTime DESC
</otherwise>
</choose>
</select> </select>
<delete id="deleteInvPreProductDetail"> <delete id="deleteInvPreProductDetail">

@ -51,6 +51,16 @@
AND updateTime <![CDATA[ <= ]]> #{updateTime} AND updateTime <![CDATA[ <= ]]> #{updateTime}
</if> </if>
</where> </where>
<choose>
<when test="(orderBy!=null ) and (sort=='desc' or sort=='asc')">
order by ${orderBy} ${sort}
</when>
<otherwise>
ORDER BY updateTime DESC
</otherwise>
</choose>
</select> </select>
<delete id="deleteInvPreProductDetail"> <delete id="deleteInvPreProductDetail">

@ -60,6 +60,15 @@
AND updateTime <![CDATA[ <= ]]> #{updateTime} AND updateTime <![CDATA[ <= ]]> #{updateTime}
</if> </if>
</where> </where>
<choose>
<when test="(orderBy!=null ) and (sort=='desc' or sort=='asc')">
order by ${orderBy} ${sort}
</when>
<otherwise>
ORDER BY updateTime DESC
</otherwise>
</choose>
</select> </select>
<delete id="deleteInvProductDetail"> <delete id="deleteInvProductDetail">

Loading…
Cancel
Save