|
@@ -24,11 +24,10 @@ import com.kcim.service.CenterService;
|
|
|
import com.kcim.service.CostIncomeFileService;
|
|
import com.kcim.service.CostIncomeFileService;
|
|
|
import com.kcim.service.PatientItemImportService;
|
|
import com.kcim.service.PatientItemImportService;
|
|
|
import com.kcim.vo.DictDataVo;
|
|
import com.kcim.vo.DictDataVo;
|
|
|
-import com.kcim.vo.PatientInfoVo;
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.AllArgsConstructor;
|
|
|
import lombok.SneakyThrows;
|
|
import lombok.SneakyThrows;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
-import org.apache.poi.ss.usermodel.*;
|
|
|
|
|
|
|
+import org.apache.poi.ss.usermodel.Workbook;
|
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
import org.springframework.util.CollectionUtils;
|
|
|
import org.springframework.util.ObjectUtils;
|
|
import org.springframework.util.ObjectUtils;
|
|
@@ -41,7 +40,10 @@ import java.io.IOException;
|
|
|
import java.io.InputStream;
|
|
import java.io.InputStream;
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
|
import java.net.URLEncoder;
|
|
import java.net.URLEncoder;
|
|
|
-import java.util.*;
|
|
|
|
|
|
|
+import java.util.ArrayList;
|
|
|
|
|
+import java.util.Date;
|
|
|
|
|
+import java.util.List;
|
|
|
|
|
+import java.util.Map;
|
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
import static com.kcim.common.constants.Constant.CHARGE_ITEM_TYPE;
|
|
import static com.kcim.common.constants.Constant.CHARGE_ITEM_TYPE;
|
|
@@ -259,7 +261,7 @@ public class PatientItemImportServiceImpl implements PatientItemImportService {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
- public List<PatientInfoVo> getPatientItemPatientInfo(Integer current, Integer pageSize, String filter, String computeDate) {
|
|
|
|
|
|
|
+ public PageUtils getPatientItemPatientInfo(Integer current, Integer pageSize, String filter, String computeDate) {
|
|
|
return repository.getPatientItemPatientInfo(current, pageSize, computeDate,filter);
|
|
return repository.getPatientItemPatientInfo(current, pageSize, computeDate,filter);
|
|
|
}
|
|
}
|
|
|
|
|
|