修改bug

This commit is contained in:
yangjun 2026-04-09 09:49:55 +08:00
parent f45a861d1d
commit 2b53822c36
2 changed files with 3 additions and 8 deletions

View File

@ -93,7 +93,7 @@ public class ShiroConfig {
filterChainDefinitionMap.put("/api/pad/invoicing/getShareInfoByCgdId", "anon"); //查询采购单信息分享接口使用
filterChainDefinitionMap.put("/api/pad/invoicing/getCgdListByGysId", "anon"); //查询采购单列表信息小程序使用
filterChainDefinitionMap.put("/api/pad/invoicing/getCgdInfoByCgdId", "anon"); //查询采购单列表详细信息小程序使用
filterChainDefinitionMap.put("/api/pad/baseInfo/queryPadPageList", "anon"); //查询采购单列表详细信息小程序使用
// filterChainDefinitionMap.put("/api/pad/baseInfo/queryPadPageList", "anon"); //查询采购单列表详细信息小程序使用
// filterChainDefinitionMap.put("/api/pad/invoicing/pdd/**", "anon"); //查询盘点单
// filterChainDefinitionMap.put("/api/employeesInfo/**", "anon"); //测试员工接口
// filterChainDefinitionMap.put("/api/pad/invoicing/**", "anon"); //测试进销存对应的接口

View File

@ -81,15 +81,10 @@
</select>
<select id="queryReadList" resultType="com.nu.modules.nubaseinfo.entity.NuBaseInfo">
select employee_id as empId,nu_id,'gd' as type , '工单' as typeName from nu_biz_directive_order where employee_id = #{employeesId} GROUP BY employee_id,nu_id
select employee_id as empId,nu_id,'gd' as type , '工单' as typeName from nu_biz_directive_order where employee_id = #{employeesId} and serv_start_time like CONCAT('%',DATE_FORMAT(NOW(), '%Y-%m-%d'),'%') and (serv_start_time > NOW() or serv_end_time > now()) and emp_end_time is null GROUP BY employee_id,nu_id
union ALL
select create_by as empId,nu_id,'pdd' as type,'盘点单' as typeName from nu_invoicing_pdd_main where pdd_type = '1' and create_by = #{username} GROUP BY create_by,nu_id
<!-- union all-->
<!-- select tj_by as empId,nu_id,'qld' as type,'请领单' as typeName from nu_invoicing_qld_main where status in (1,3,4) and tj_by = #{employeesId} GROUP BY tj_by,nu_id-->
<!-- union all-->
<!-- select create_by as empId,nu_id,'cgd' as type,'采购单' as typeName from nu_invoicing_cgd_main where cgd_type in (0,1) and create_by = #{username} GROUP BY create_by,nu_id-->
<!-- union ALL-->
<!-- select fq_by as empId,nu_id,'thd' as type,'退货单' as typeName from nu_invoicing_thd_main where status = '1' and fq_by = #{employeesId} GROUP BY fq_by,nu_id-->
</select>
<update id="updateSbsfTplink">