Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
platform
/
finance_serv
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit c187fbcb
authored
Aug 14, 2018
by
王军业
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
125435454845
1 parent
df40b5de
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
1 deletions
code/finance_serv/src/main/java/com/vion/financial/excel/ExportModel.java
code/finance_serv/src/main/java/com/vion/financial/service/imp/ContractServiceImpl.java
code/finance_serv/src/main/java/com/vion/financial/excel/ExportModel.java
View file @
c187fbc
...
...
@@ -10,8 +10,10 @@ public class ExportModel {
private
String
contract_unid
;
//合同编号
@Excel
(
name
=
"所属年份"
)
private
String
year
;
//所属年份
@ExcelIgnore
()
private
String
product_line_type
;
@Excel
(
name
=
"产品线类型"
)
private
String
product_line_type
;
//产品线类型
private
String
product_line_type
_name
;
//产品线类型
@Excel
(
name
=
"签订日期"
,
format
=
"yyyy-MM-dd"
,
width
=
15
)
private
Date
sign_date
;
//签订日期
@Excel
(
name
=
"所属月份"
)
...
...
@@ -303,5 +305,11 @@ public class ExportModel {
public
void
setAmount_state_unid
(
String
amount_state_unid
)
{
this
.
amount_state_unid
=
amount_state_unid
;
}
public
String
getProduct_line_type_name
()
{
return
product_line_type_name
;
}
public
void
setProduct_line_type_name
(
String
product_line_type_name
)
{
this
.
product_line_type_name
=
product_line_type_name
;
}
}
code/finance_serv/src/main/java/com/vion/financial/service/imp/ContractServiceImpl.java
View file @
c187fbc
...
...
@@ -443,7 +443,26 @@ public class ContractServiceImpl implements ContractService {
default
:
break
;
}
}
if
(
exportModel
.
getProduct_line_type
()!=
null
)
{
switch
(
exportModel
.
getProduct_line_type
())
{
case
"1"
:
exportModel
.
setProduct_line_type_name
(
"安防"
);
break
;
case
"2"
:
exportModel
.
setProduct_line_type_name
(
"交通"
);
break
;
case
"3"
:
exportModel
.
setProduct_line_type_name
(
"客流"
);
break
;
case
"4"
:
exportModel
.
setProduct_line_type_name
(
"维保"
);
break
;
default
:
break
;
}
}
/*if(list_province != null && list_province.size() > 0) {
for(Map _map:list_province) {
if(exportModel.getProvince()!=null) {
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment