Commit e3b8a481 authored by wangxl's avatar wangxl

1

parent 7b313333
......@@ -227,7 +227,7 @@ public class TaskInfoToPDFUtil {
addValueCell(projTable, "项目开始时间", 2, fd.format(dto.getStartDate()), 2, normalFont, null, null, null);
addValueCell(projTable, "项目结束时间", 3, fd.format(dto.getEndDate()), 3, normalFont, null, null, null);
addValueCell(projTable, "项目负责人", 2, dto.getAppUnitName(), 2, normalFont, null, null, null);
addValueCell(projTable, "项目负责人", 2, dto.getAppPersonName(), 2, normalFont, null, null, null);
addValueCell(projTable, "联系电话", 3, dto.getMobile(), 3, normalFont, null, null, null);
addValueCell(projTable, "项目联系人姓名", 2, dto.getLinkName(), 2, normalFont, null, null, null);
......
......@@ -44,12 +44,13 @@
ic.total_funding,ic.gov_funding,ic.unit_funding,ic.self_funding,ic.other_funding,
ic.research_content,ic.technology_target, ic.economy_target, ic.achievement_target, ic.technology_reports_target, ic.other_target,
ic.proj_attribute,ic.remark,ic.year_target,ic.year1_goal,ic.year2_goal,ic.year3_goal,ic.file_id,
c.id download_id,c.download_url,c.file_name
c.id download_id,c.download_url,c.file_name,e.person_name app_person_name
from com_project a
left join com_project_task pt on pt.proj_id=a.id
left join com_project_basic ic on a.id=ic.proj_id
left join system_parameter b on a.knowledge_id=b.id and b.type_id=68
left join com_download c on ic.file_id=c.id
left join com_person e on a.app_person_id=e.id
where a.id = #{id}
</select>
</mapper>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment