配置列表接口优化
This commit is contained in:
parent
f3bedea63b
commit
06dbf00c04
|
|
@ -71,4 +71,6 @@ public interface IBmConfigService
|
||||||
public List<String> getLeaseTaskAuditRoleIds();
|
public List<String> getLeaseTaskAuditRoleIds();
|
||||||
|
|
||||||
public List<String> getBackTaskAuditRoleIds();
|
public List<String> getBackTaskAuditRoleIds();
|
||||||
|
|
||||||
|
public boolean isPurchaseAllowPartTransfer();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,7 @@ public interface PurchaseCheckDetailsMapper {
|
||||||
|
|
||||||
int updatePurchaseDetails(PurchaseCheckDetails details);
|
int updatePurchaseDetails(PurchaseCheckDetails details);
|
||||||
|
|
||||||
int getCountOfNoneThisStatus(@Param("taskId") Long taskId, @Param("newTaskStatus") Integer newTaskStatus);
|
int getCountOfNoneThisStatus(@Param("taskId") Long taskId, @Param("status") Integer status);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除新购验收任务详细
|
* 删除新购验收任务详细
|
||||||
|
|
|
||||||
|
|
@ -301,8 +301,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
from
|
from
|
||||||
purchase_check_details
|
purchase_check_details
|
||||||
where
|
where
|
||||||
`status` != #{newTaskStatus}
|
`status` != #{status}
|
||||||
and del_flag = '0'
|
and (del_flag = '0' or del_flag is null)
|
||||||
and task_id = #{taskId}
|
and task_id = #{taskId}
|
||||||
</select>
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
Loading…
Reference in New Issue