| | |
| | | } |
| | | |
| | | /** |
| | | * 查看报告 |
| | | */ |
| | | @Override |
| | | public ResultBody getPdfPathForOperation(String diagnosticId, Integer reportType, Long hospitalId, Long departId) { |
| | | ResultBody pdfPathForOperation = diagnosticService.getPdfPathForOperation(diagnosticId, reportType, hospitalId, departId); |
| | | return pdfPathForOperation; |
| | | } |
| | | |
| | | /** |
| | | * 列表 |
| | | * |
| | | * @param params |
| | |
| | | @Override |
| | | public PageResult<ProductOrderJoinDetail> findAllList(Map<String, Object> params, SysUser sysUser) { |
| | | Page<ProductOrderJoinDetail> page = new Page<>(MapUtils.getInteger(params, "page"), MapUtils.getInteger(params, "limit")); |
| | | Map<String, Object> roleOrgMap = roleOrganizationService.getRoleOrgMap(sysUser.getRoles()); |
| | | params.putAll(roleOrgMap); |
| | | // Map<String, Object> roleOrgMap = roleOrganizationService.getRoleOrgMap(sysUser); |
| | | // params.putAll(roleOrgMap); |
| | | List<ProductOrderJoinDetail> list = baseMapper.findAllList(page, params); |
| | | for (ProductOrderJoinDetail productOrderJoinDetail : list) { |
| | | Date proBegintime = productOrderJoinDetail.getProBegintime(); |