Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
BudgetManagementSystem
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王利雷
BudgetManagementSystem
Commits
9bff1093
Commit
9bff1093
authored
May 23, 2019
by
shj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
word说明生成完成,并提供下载
parent
66c7aed3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
176 additions
and
42 deletions
+176
-42
BudgetExportUtil.java
src/main/java/util/BudgetExportUtil.java
+171
-42
PoiTest.java
src/test/java/PoiTest.java
+5
-0
No files found.
src/main/java/util/BudgetExportUtil.java
View file @
9bff1093
...
...
@@ -16,7 +16,8 @@ import java.util.List;
import
java.util.Map
;
public
class
BudgetExportUtil
{
private
static
IDetailService
detailService
=
new
DetailService
();
private
static
IDetailService
detailService
=
new
DetailService
();
public
static
void
toWord
(
Budget
budget
,
OutputStream
outputStream
)
throws
IOException
{
XWPFDocument
document
=
new
XWPFDocument
();
...
...
@@ -24,6 +25,8 @@ public class BudgetExportUtil {
XWPFParagraph
paragraph
=
document
.
createParagraph
();
XWPFRun
run
=
paragraph
.
createRun
();
run
.
setText
(
"一、设备费"
);
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
Map
<
Equipment
,
Integer
>
equipments
=
budget
.
getEquipments
();
int
i
=
0
,
total_num
=
0
;
...
...
@@ -66,6 +69,8 @@ public class BudgetExportUtil {
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setText
(
"二、材料费"
);
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
Map
<
Material
,
Integer
>
materials
=
budget
.
getMaterials
();
i
=
0
;
...
...
@@ -101,8 +106,10 @@ public class BudgetExportUtil {
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setText
(
"三、测试化验加工费"
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"测试化验加工费:万元"
);
...
...
@@ -111,8 +118,10 @@ public class BudgetExportUtil {
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setText
(
"四、燃料动力费"
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"燃料动力费:万元"
);
...
...
@@ -121,14 +130,16 @@ public class BudgetExportUtil {
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setText
(
"五、差旅费"
);
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"为顺利完成本课题实施方案中的工作内容,课题拟对上海、南宁、桂林、北海等地相关单位进行调研和技术交流。具体考察调研单位包括:上海市交通委员会、广西省交通运输厅、桂林运营公司、钦州运营公司等。"
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"北京航空航天大学人员按照《中央和国家机关差旅费管理办法》(财行[2013]531号)、《关于调整中央和国家机关差旅住宿费标准等有关问题的通知》(财行[2015]497 号)、《北京航空航天大学差旅费管理办法》(北航财字[2016]32 号)进行计算。"
);
...
...
@@ -143,20 +154,20 @@ public class BudgetExportUtil {
StringBuilder
line
=
new
StringBuilder
();
line
.
append
(
"("
).
append
(
i
).
append
(
")"
);
line
.
append
(
"北京-"
+
item
.
getName
()).
append
(
","
)
.
append
(
item
.
getDays
()
*
item
.
getPeople
()*
travels
.
get
(
item
)).
append
(
"人天,共计"
)
.
append
(
item
.
computeUnitPrice
()
*
travels
.
get
(
item
)).
append
(
"元"
);
line
.
append
(
"北京-"
+
item
.
getName
()).
append
(
","
)
.
append
(
item
.
getDays
()
*
item
.
getPeople
()
*
travels
.
get
(
item
)).
append
(
"人天,共计"
)
.
append
(
item
.
computeUnitPrice
()
*
travels
.
get
(
item
)).
append
(
"元"
);
run
.
setText
(
line
.
toString
());
line
=
new
StringBuilder
();
line
.
append
(
"本课题需要前往"
+
item
.
getName
()+
"相关单位进行调研和技术交流,"
+
"行程为 "
+
travels
.
get
(
item
)+
" 次 "
+
item
.
getPeople
()+
" 人 "
+
item
.
getDays
()+
" 天。"
+
"乘坐飞机经济舱(北京-"
+
item
.
getName
()+
"飞机均价约 "
+
item
.
getPrice
()+
" 元),"
+
"住宿标准为 "
+
item
.
getAccommodation
()+
" 元/天,"
+
"伙食与交通费包干每天 "
+(
item
.
getFood
()+
item
.
getTraffic
())+
" 元。"
+
"总计用 "
+
item
.
getPeople
()+
" 人 ×("
+
item
.
getPrice
()+
" 元+500 元 × "
+(
item
.
getDays
()-
1
)
+
" 天+"
+(
item
.
getFood
()+
item
.
getTraffic
())+
" 元 ×"
+
item
.
getDays
()+
" 天)× "
+
travels
.
get
(
item
)+
" 次"
+
"="
+
item
.
computeUnitPrice
()*
travels
.
get
(
item
)+
" 元"
);
line
.
append
(
"本课题需要前往"
+
item
.
getName
()
+
"相关单位进行调研和技术交流,"
+
"行程为 "
+
travels
.
get
(
item
)
+
" 次 "
+
item
.
getPeople
()
+
" 人 "
+
item
.
getDays
()
+
" 天。"
+
"乘坐飞机经济舱(北京-"
+
item
.
getName
()
+
"飞机均价约 "
+
item
.
getPrice
()
+
" 元),"
+
"住宿标准为 "
+
item
.
getAccommodation
()
+
" 元/天,"
+
"伙食与交通费包干每天 "
+
(
item
.
getFood
()
+
item
.
getTraffic
())
+
" 元。"
+
"总计用 "
+
item
.
getPeople
()
+
" 人 ×("
+
item
.
getPrice
()
+
" 元+500 元 × "
+
(
item
.
getDays
()
-
1
)
+
" 天+"
+
(
item
.
getFood
()
+
item
.
getTraffic
())
+
" 元 ×"
+
item
.
getDays
()
+
" 天)× "
+
travels
.
get
(
item
)
+
" 次"
+
"="
+
item
.
computeUnitPrice
()
*
travels
.
get
(
item
)
+
" 元"
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
...
...
@@ -164,16 +175,17 @@ public class BudgetExportUtil {
}
//会议费
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setText
(
"六、会议费"
);
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"本课题列支会议费 "
+
detailService
.
sumConference
(
budget
.
getConferences
())+
"元。"
);
run
.
setText
(
"本课题列支会议费 "
+
detailService
.
sumConference
(
budget
.
getConferences
())
+
"元。"
);
Map
<
Conference
,
Integer
>
conferences
=
budget
.
getConferences
();
i
=
0
;
...
...
@@ -189,13 +201,13 @@ public class BudgetExportUtil {
run
.
setText
(
line
.
toString
());
line
=
new
StringBuilder
();
line
.
append
(
"牵头单位将组织和协调各课题组召开"
+
item
.
getName
()+
",【会议任务】,"
+
"共 "
+
conferences
.
get
(
item
)+
" 次,"
+
"会期 "
+
item
.
getDays
()+
" 天,"
+
"预计参会 "
+
item
.
getPeople
()+
" 人,"
+
line
.
append
(
"牵头单位将组织和协调各课题组召开"
+
item
.
getName
()
+
",【会议任务】,"
+
"共 "
+
conferences
.
get
(
item
)
+
" 次,"
+
"会期 "
+
item
.
getDays
()
+
" 天,"
+
"预计参会 "
+
item
.
getPeople
()
+
" 人,"
+
"所需费用小计:"
+
item
.
getPrice
()+
" 元/人次× "
+
item
.
getPeople
()+
" 人× "
+
item
.
getDays
()+
" 天 × "
+
conferences
.
get
(
item
)
+
" 次= "
+
item
.
computeUnitPrice
()*
conferences
.
get
(
item
)+
" 元。"
);
+
item
.
getPrice
()
+
" 元/人次× "
+
item
.
getPeople
()
+
" 人× "
+
item
.
getDays
()
+
" 天 × "
+
conferences
.
get
(
item
)
+
" 次= "
+
item
.
computeUnitPrice
()
*
conferences
.
get
(
item
)
+
" 元。"
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
...
...
@@ -207,11 +219,13 @@ public class BudgetExportUtil {
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setText
(
"七、国际交流合作费"
);
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"本课题列支国际交流合作费 "
+
detailService
.
sumInternational
(
budget
.
getInternationalCommunications
())+
"元。"
);
run
.
setText
(
"本课题列支国际交流合作费 "
+
detailService
.
sumInternational
(
budget
.
getInternationalCommunications
())
+
"元。"
);
Map
<
InternationalCommunication
,
Integer
>
internationalCommunications
=
budget
.
getInternationalCommunications
();
i
=
0
;
...
...
@@ -227,15 +241,15 @@ public class BudgetExportUtil {
run
.
setText
(
line
.
toString
());
line
=
new
StringBuilder
();
line
.
append
(
item
.
getName
()
+
":【时间】,【地点】,"
+
"课题组预计 "
+
item
.
getPeople
()+
" 人参会,"
+
"注册费、往返机票每人约为 "
+
item
.
getPrice
()+
" 元(国航经济舱往返打折)。"
+
"每次住宿费:"
+
item
.
getAccommodation
()+
" 元/人天,"
+
"伙食费:"
+
item
.
getFood
()+
" 元/人天,"
+
"公杂费:"
+
item
.
getTraffic
()+
" 元/人天。"
+
"出访时间:"
+
item
.
getDays
()+
" 天,汇率:1 美元=6.9 元人民币。"
+
"合计:("
+
item
.
getPrice
()+
" + ( "
+
item
.
getAccommodation
()+
" + "
+
item
.
getFood
()+
" + "
+
item
.
getTraffic
()+
" )× "
+
item
.
getPeople
()+
" × "
+
item
.
getDays
()+
" × "
+
internationalCommunications
.
get
(
item
)+
" )"
+
"= "
+
item
.
computeUnitPrice
()*
internationalCommunications
.
get
(
item
)+
" 元;"
);
line
.
append
(
item
.
getName
()
+
":【时间】,【地点】,"
+
"课题组预计 "
+
item
.
getPeople
()
+
" 人参会,"
+
"注册费、往返机票每人约为 "
+
item
.
getPrice
()
+
" 元(国航经济舱往返打折)。"
+
"每次住宿费:"
+
item
.
getAccommodation
()
+
" 元/人天,"
+
"伙食费:"
+
item
.
getFood
()
+
" 元/人天,"
+
"公杂费:"
+
item
.
getTraffic
()
+
" 元/人天。"
+
"出访时间:"
+
item
.
getDays
()
+
" 天,汇率:1 美元=6.9 元人民币。"
+
"合计:("
+
item
.
getPrice
()
+
" + ( "
+
item
.
getAccommodation
()
+
" + "
+
item
.
getFood
()
+
" + "
+
item
.
getTraffic
()
+
" )× "
+
item
.
getPeople
()
+
" × "
+
item
.
getDays
()
+
" × "
+
internationalCommunications
.
get
(
item
)
+
" )"
+
"= "
+
item
.
computeUnitPrice
()
*
internationalCommunications
.
get
(
item
)
+
" 元;"
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
...
...
@@ -247,11 +261,13 @@ public class BudgetExportUtil {
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setText
(
"八、出版/文献/信息传播/知识产权事务费"
);
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"本课题列支出版/文献/信息传播/知识产权事务费 "
+
detailService
.
sumProperty
(
budget
.
getProperties
())+
"元。"
);
run
.
setText
(
"本课题列支出版/文献/信息传播/知识产权事务费 "
+
detailService
.
sumProperty
(
budget
.
getProperties
())
+
"元。"
);
Map
<
Property
,
Integer
>
properties
=
budget
.
getProperties
();
...
...
@@ -268,16 +284,129 @@ public class BudgetExportUtil {
run
.
setText
(
line
.
toString
());
line
=
new
StringBuilder
();
line
.
append
(
item
.
getName
()
+
" "
+
properties
.
get
(
item
)+
" 项,"
+
"单价 "
+
item
.
getPrice
()+
" 元,"
+
line
.
append
(
item
.
getName
()
+
" "
+
properties
.
get
(
item
)
+
" 项,"
+
"单价 "
+
item
.
getPrice
()
+
" 元,"
+
"其中专利申请费 4605 元(参考国家知识产权局公告(第 75 号)专利费收费标准,发明专利申请费 950 元,发明专利申请审查费 2500 元,专利登记、印刷、印花费 255 元,发明专利年费 900 元),"
+
"共计 "
+
item
.
getPrice
()*
properties
.
get
(
item
)+
" 元。"
);
"共计 "
+
item
.
getPrice
()
*
properties
.
get
(
item
)
+
" 元。"
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
line
.
toString
());
}
//劳务费
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setText
(
"九、劳务费"
);
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"本课题列支劳务费 "
+
detailService
.
sumLabour
(
budget
.
getLabour
())
+
"元。"
);
Map
<
Labour
,
Integer
>
labours
=
budget
.
getLabour
();
i
=
0
;
for
(
Labour
item
:
labours
.
keySet
())
{
i
++;
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
StringBuilder
line
=
new
StringBuilder
();
line
.
append
(
"("
).
append
(
i
).
append
(
")"
).
append
(
item
.
getName
());
run
.
setText
(
line
.
toString
());
line
=
new
StringBuilder
();
line
.
append
(
"投入"
+
item
.
getName
()
+
" "
+
item
.
getPeople
()
+
" 名,"
+
"按照每人每月 "
+
item
.
getPrice
()
+
" 元,"
+
"共计 "
+
item
.
getMonths
()
+
" 个月,"
+
"劳务费小计 "
+
item
.
computeUnitPrice
()
*
labours
.
get
(
item
)
+
" 元;"
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
line
.
toString
());
}
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"【参考】其中博士研究生主要任务包括突破面向流式处理任务的高效动态调度技术、面向时空大数据的计算资源动态分配技术、多系统跨平台环境下的领域知识动态获取与隐性规律挖掘技术、跨系统环境下协同服务技术、跨域时空数据隐私保护技术、分层可扩展的大数据弹性计算框架、基于边缘计算的源用分离与自适应请求相应框架和复杂异构时空数据的统一访问模型等 8 项关键技术与理论。硕士研究生主要完成相关支撑技术的技术攻关和和算法原型的设计与实现。专职研发人员 3 人包括 1 名系统架构师、1 名技术开发工程师、1 名测试工程师"
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"【参考】技术人员工资每月按 8000 元计算,养老保险单位 1600(19%) 元/月,失业保险 80(0.8%)/月,工伤 32(0.4%)/月,生育险 64 (0.8%)元/月,医疗保险 800(10%) 元/月,住房公积金 960(12%) 元/月,保险费用共计 3536 元/月,每人月成本 8000+3536=11536 元。"
);
//咨询费
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setText
(
"十、咨询费"
);
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"本课题列支咨询费 "
+
detailService
.
sumConsultation
(
budget
.
getConsultations
())
+
"元。"
);
Map
<
Consultation
,
Integer
>
consultations
=
budget
.
getConsultations
();
i
=
0
;
for
(
Conference
item
:
conferences
.
keySet
())
{
i
++;
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
StringBuilder
line
=
new
StringBuilder
();
line
.
append
(
"("
).
append
(
i
).
append
(
")"
);
line
.
append
(
item
.
getName
());
run
.
setText
(
line
.
toString
());
line
=
new
StringBuilder
();
line
.
append
(
"【具体内容请自行替换】课题启动会议,邀请专家对课题总体技术方案进行咨询、评审,咨询专家 3人,会期 1 天,标准1000元/人/天,此项专家咨询费小计:1000 元/人×2 次×3 人=0.6 万元。"
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
line
.
toString
());
}
//其他费用
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setText
(
"十一、其他费用"
);
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
//间接费用
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
setText
(
"十二、间接费用"
);
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
double
indirectSum
=
detailService
.
sumIndirect
(
budget
.
getIndirects
());
run
.
setText
(
"本课题列支间接费用 "
+
indirectSum
+
"元。"
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"参照北京航空航天大学国家科技重大专项经费管理办法(试行),间接费用是指承担课题任务的单位在组织课题任务的过程中发生的无法在直接费用中列支的相关费用。主要包括承担课题任务的单位为课题研究提供的现有仪器设备及房屋,水、电、气、暖消耗,有关管理费用的补助支出,以及绩效支出等。其中绩效支出是指承担课题任务的单位为提高科研工作的绩效安排的相关支出。"
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
run
.
addTab
();
run
.
setText
(
"间接费用实行总额控制,在与课题牵头单位信用等级挂钩基础上,按照不超过课题经费中直接费用扣除设备购置费后的一定比例核定,根据最新《北京市科技计划项目(课题)经费管理办法》和间接经费计算方法,"
+
"本课题扣除设备购置费后 "
+
detailService
.
sumEquipment
(
budget
.
getEquipments
())+
" 元,"
+
"间接经费根据上述管理办法计算为 "
+
indirectSum
+
" 元,其中绩效费用约 【自行分配】 万元,用于承担单位人员绩效支出。"
);
document
.
write
(
outputStream
);
...
...
src/test/java/PoiTest.java
View file @
9bff1093
import
org.apache.poi.xwpf.usermodel.*
;
import
org.junit.Test
;
import
org.openxmlformats.schemas.wordprocessingml.x2006.main.CTSectPr
;
import
java.io.FileNotFoundException
;
import
java.io.FileOutputStream
;
import
java.io.IOException
;
import
java.math.BigInteger
;
import
java.util.HashMap
;
import
java.util.List
;
...
...
@@ -14,8 +16,11 @@ public class PoiTest {
FileOutputStream
out
=
new
FileOutputStream
(
"F:/new.docx"
);
XWPFParagraph
paragraph
=
document
.
createParagraph
();
paragraph
.
setSpacingBeforeLines
(
100
);
XWPFRun
run
=
paragraph
.
createRun
();
run
.
setText
(
"一、设备费"
);
run
.
setFontSize
(
18
);
run
.
setBold
(
true
);
paragraph
=
document
.
createParagraph
();
run
=
paragraph
.
createRun
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment