提交 e777d980 作者: zhenjie

订单列表报错修复、采购订单流程修改

上级 ad3d5d96
...@@ -86,7 +86,7 @@ public class UavPOServiceImpl implements UavPOService { ...@@ -86,7 +86,7 @@ public class UavPOServiceImpl implements UavPOService {
@Transactional @Transactional
public void updateUavPOrderStatus(Integer id, UavOrderStatus uavOrderStatus){ public void updateUavPOrderStatus(Integer id, UavOrderStatus uavOrderStatus){
Integer nextCode = null; Integer nextCode = null;
if (uavOrderStatus.getNextCode().equals(UavOrderStatus.PAYING.getCode())) { if (uavOrderStatus.getCode().equals(UavOrderStatus.PAYING.getCode())) {
nextCode = 420; nextCode = 420;
}else { }else {
nextCode = uavOrderStatus.getNextCode(); nextCode = uavOrderStatus.getNextCode();
......
...@@ -212,7 +212,7 @@ ...@@ -212,7 +212,7 @@
and #{endTime} >= create_time and #{endTime} >= create_time
</if> </if>
<if test="show != null"> <if test="show != null">
and #{show} = show and show = #{show}
</if> </if>
</select> </select>
...@@ -243,7 +243,7 @@ ...@@ -243,7 +243,7 @@
and #{endTime} >= uo.create_time and #{endTime} >= uo.create_time
</if> </if>
<if test="show != null"> <if test="show != null">
and #{show} = show and show = #{show}
</if> </if>
order by uo.id desc order by uo.id desc
limit #{pageNo}, #{pageSize} limit #{pageNo}, #{pageSize}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论