use of com.bc.pmpheep.back.po.DecResearch in project pmph by BCSquad.
the class ExcelHelper method fillDecResearchData.
private ColumnProperties fillDecResearchData(List<DecResearch> decResearchs, Row row, ColumnProperties properties) {
int colCount = properties.getColCount();
int[] maxLength = properties.getMaxLength();
if (CollectionUtil.isEmpty(decResearchs)) {
for (int i = 0; i < 3; i++) {
row.createCell(colCount++);
}
} else {
String value;
List<StringBuilder> builders = new ArrayList<>(3);
for (int i = 0; i < 3; i++) {
builders.add(new StringBuilder());
}
boolean isFirst = true;
for (DecResearch decResearch : decResearchs) {
if (isFirst == false) {
for (StringBuilder builder : builders) {
builder.append("\r\n");
}
} else {
isFirst = false;
}
int index = 0;
value = decResearch.getResearchName();
if (StringUtil.isEmpty(value)) {
value = "";
}
builders.get(index++).append(value);
if (value.length() > maxLength[colCount]) {
maxLength[colCount] = value.length();
}
colCount++;
value = decResearch.getApprovalUnit();
if (StringUtil.isEmpty(value)) {
value = "";
}
builders.get(index++).append(value);
if (value.length() > maxLength[colCount]) {
maxLength[colCount] = value.length();
}
colCount++;
value = decResearch.getAward();
if (StringUtil.isEmpty(value)) {
value = "";
}
builders.get(index++).append(value);
if (value.length() > maxLength[colCount]) {
maxLength[colCount] = value.length();
}
// 列数复位
colCount = properties.getColCount();
}
for (int i = 0; i < 3; i++) {
Cell cell = row.createCell(colCount++);
value = builders.get(i).toString();
cell.setCellValue(value);
}
}
properties.setColCount(colCount);
properties.setMaxLength(maxLength);
return properties;
}
use of com.bc.pmpheep.back.po.DecResearch in project pmph by BCSquad.
the class WordHelper method fillDecResearchData.
private XWPFTable fillDecResearchData(XWPFTable table, List<DecResearch> decResearchs) {
if (CollectionUtil.isEmpty(decResearchs)) {
return table;
}
if (decResearchs.size() > 1) {
int height = table.getRow(1).getHeight();
for (int i = 1; i < decResearchs.size(); i++) {
table.createRow().setHeight(height);
}
}
List<XWPFTableRow> rows = table.getRows();
List<XWPFTableCell> cells;
int rowCount = 1;
for (DecResearch decResearch : decResearchs) {
cells = rows.get(rowCount).getTableCells();
String value = decResearch.getResearchName();
if (StringUtil.notEmpty(value)) {
cells.get(0).setText(value);
}
value = decResearch.getApprovalUnit();
if (StringUtil.notEmpty(value)) {
cells.get(1).setText(value);
}
value = decResearch.getAward();
if (StringUtil.notEmpty(value)) {
cells.get(2).setText(value);
}
value = decResearch.getNote();
if (StringUtil.notEmpty(value)) {
cells.get(3).setText(value);
}
for (XWPFTableCell cell : cells) {
cell.setVerticalAlignment(XWPFVertAlign.CENTER);
}
rowCount++;
}
return table;
}
use of com.bc.pmpheep.back.po.DecResearch in project pmph by BCSquad.
the class MigrationStageSix method decResearch.
/**
* 作家科研情况表
*/
protected void decResearch() {
// 要迁移的旧库表名
String tableName = "writer_scientresearch ";
// 增加new_pk字段
JdbcHelper.addColumn(tableName);
String sql = "select ws.scientresearchid,ws.topicname,ws.approvaluntiname,ws.award,ws.remark," + "wd.new_pk id " + "from writer_scientresearch ws " + "left join writer_declaration wd on wd.writerid=ws.writerid";
// 取得该表中所有数据
List<Map<String, Object>> maps = JdbcHelper.getJdbcTemplate().queryForList(sql);
// 迁移成功的条目数
int count = 0;
int declarationidCount = 0;
List<Map<String, Object>> excel = new LinkedList<>();
Map<String, Object> result = new LinkedHashMap<>();
int correctCount = 0;
int[] state = { 0 };
StringBuilder reason = new StringBuilder();
StringBuilder dealWith = new StringBuilder();
/* 开始遍历查询结果 */
for (Map<String, Object> map : maps) {
StringBuilder sb = new StringBuilder();
// 旧表主键值
String id = (String) map.get("scientresearchid");
// 申报表id
Long declarationid = (Long) map.get("id");
// 课题名称
String researchName = (String) map.get("topicname");
// 审批单位
String approvalUnit = (String) map.get("approvaluntiname");
// 获奖情况
String award = (String) map.get("award");
DecResearch decResearch = new DecResearch();
if (ObjectUtil.isNull(declarationid) || declarationid.intValue() == 0) {
map.put(SQLParameters.EXCEL_EX_HEADER, sb.append("未找到申报表对应的关联结果。"));
excel.add(map);
logger.debug("未找到申报表对应的关联结果,此结果将被记录在Excel中");
declarationidCount++;
if (state[0] == 0) {
reason.append("找不到对应的申报作家。");
dealWith.append("放弃迁移。");
state[0] = 1;
}
continue;
}
decResearch.setDeclarationId(declarationid);
decResearch.setResearchName(researchName);
decResearch.setApprovalUnit(approvalUnit);
decResearch.setAward(award);
// 备注
decResearch.setNote((String) map.get("remark"));
// 显示顺序
decResearch.setSort(999);
decResearch = decResearchService.addDecResearch(decResearch);
long pk = decResearch.getId();
JdbcHelper.updateNewPrimaryKey(tableName, pk, "scientresearchid", id);
count++;
if (null == map.get("exception")) {
correctCount++;
}
}
if (excel.size() > 0) {
try {
excelHelper.exportFromMaps(excel, "作家科研情况表", "dec_research");
} catch (IOException ex) {
logger.error("异常数据导出到Excel失败", ex);
}
}
if (correctCount != maps.size()) {
result.put(SQLParameters.EXCEL_HEADER_TABLENAME, "dec_research");
result.put(SQLParameters.EXCEL_HEADER_DESCRIPTION, "作家科研情况表");
result.put(SQLParameters.EXCEL_HEADER_SUM_DATA, maps.size());
result.put(SQLParameters.EXCEL_HEADER_MIGRATED_DATA, count);
result.put(SQLParameters.EXCEL_HEADER_CORECT_DATA, correctCount);
result.put(SQLParameters.EXCEL_HEADER_TRANSFERED_DATA, count - correctCount);
result.put(SQLParameters.EXCEL_HEADER_NO_MIGRATED_DATA, maps.size() - count);
result.put(SQLParameters.EXCEL_HEADER_EXCEPTION_REASON, reason.toString());
result.put(SQLParameters.EXCEL_HEADER_DEAL_WITH, dealWith.toString());
SQLParameters.STATISTICS_RESULT.add(result);
}
logger.info("未找到申报表对应的关联结果数量:{}", declarationidCount);
logger.info("writer_scientresearch表迁移完成,异常条目数量:{}", excel.size());
logger.info("原数据库中共有{}条数据,迁移了{}条数据", maps.size(), count);
// 记录信息
Map<String, Object> msg = new HashMap<String, Object>();
msg.put("result", "" + tableName + " 表迁移完成" + count + "/" + maps.size());
SQLParameters.STATISTICS.add(msg);
}
use of com.bc.pmpheep.back.po.DecResearch in project pmph by BCSquad.
the class DecResearchServiceTest method testGetDecResearch.
@Test
@Rollback(Const.ISROLLBACK)
public void testGetDecResearch() {
long id = add().getId();
DecResearch decResearch = decResearchService.getDecResearchById(id);
Assert.assertNotNull("获取作家科研情况信息失败", decResearch);
}
use of com.bc.pmpheep.back.po.DecResearch in project pmph by BCSquad.
the class DeclarationServiceImpl method getDeclarationEtcBOs.
@Override
public List<DeclarationEtcBO> getDeclarationEtcBOs(Long materialId) {
List<DeclarationEtcBO> declarationEtcBOs = new ArrayList<>(20);
List<Declaration> declarations = declarationDao.getDeclarationByMaterialId(materialId);
if (CollectionUtil.isEmpty(declarations)) {
return null;
}
int count = 1;
for (Declaration declaration : declarations) {
// 学习经历
ArrayList<DecEduExp> decEduExps = (ArrayList<DecEduExp>) decEduExpDao.getListDecEduExpByDeclarationId(declaration.getId());
// 工作经历
ArrayList<DecWorkExp> decWorkExps = (ArrayList<DecWorkExp>) decWorkExpDao.getListDecWorkExpByDeclarationId(declaration.getId());
// 教学经历
ArrayList<DecTeachExp> decTeachExps = (ArrayList<DecTeachExp>) decTeachExpDao.getListDecTeachExpByDeclarationId(declaration.getId());
// 兼职学术
ArrayList<DecAcade> decAcades = (ArrayList<DecAcade>) decAcadeDao.getListDecAcadeByDeclarationId(declaration.getId());
// 上套教材
ArrayList<DecLastPosition> decLastPositions = (ArrayList<DecLastPosition>) decLastPositionDao.getListDecLastPositionByDeclarationId(declaration.getId());
// 精品课程建设情况
ArrayList<DecCourseConstruction> decCourseConstructions = (ArrayList<DecCourseConstruction>) decCourseConstructionDao.getDecCourseConstructionByDeclarationId(declaration.getId());
// 主编国家级规划
ArrayList<DecNationalPlan> decNationalPlans = (ArrayList<DecNationalPlan>) decNationalPlanDao.getListDecNationalPlanByDeclarationId(declaration.getId());
// 教材编写
ArrayList<DecTextbook> decTextbooks = (ArrayList<DecTextbook>) decTextbookDao.getListDecTextbookByDeclarationId(declaration.getId());
// 作家科研
ArrayList<DecResearch> decResearchs = (ArrayList<DecResearch>) decResearchDao.getListDecResearchByDeclarationId(declaration.getId());
/*
* ArrayList<DecAchievement> decAchievements = (ArrayList<DecAchievement>)
* decAchievementDao .getDecAchievementByDeclarationId(declaration.getId());
*/
DeclarationEtcBO declarationEtcBO = new DeclarationEtcBO();
declarationEtcBO.setRealname("欧阳望月".concat(String.valueOf(count)));
declarationEtcBO.setUsername("Smith");
// declarationEtcBO.setTextbookName("人体解剖学与组织胚胎学");
// declarationEtcBO.setPresetPosition("副主编");
declarationEtcBO.setChosenOrgName("人民卫生出版社");
declarationEtcBO.setSex("女");
declarationEtcBO.setBirthday("1975年11月22日");
declarationEtcBO.setAddress("浙江省金华市婺城区婺州街1188号");
declarationEtcBO.setExperience(23);
declarationEtcBO.setOrgName("金华职业技术学院医学院");
declarationEtcBO.setPosition("教师");
declarationEtcBO.setTitle("教授");
declarationEtcBO.setPostcode("321017");
declarationEtcBO.setHandphone("13857989881");
declarationEtcBO.setEmail("test10001test@163.com");
declarationEtcBO.setFax("01065930013");
declarationEtcBO.setTelephone("010-65930013");
declarationEtcBO.setDecEduExps(decEduExps);
declarationEtcBO.setDecWorkExps(decWorkExps);
declarationEtcBO.setDecTeachExps(decTeachExps);
declarationEtcBO.setDecAcades(decAcades);
declarationEtcBO.setDecLastPositions(decLastPositions);
declarationEtcBO.setDecCourseConstructions(decCourseConstructions);
declarationEtcBO.setDecNationalPlans(decNationalPlans);
declarationEtcBO.setDecTextbooks(decTextbooks);
declarationEtcBO.setDecResearchs(decResearchs);
// declarationEtcBO.setDecAchievement(decAchievements.get(0));
declarationEtcBOs.add(declarationEtcBO);
count++;
if (count > 21) {
break;
}
}
return declarationEtcBOs;
}
Aggregations