Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
YX_IDENT_beijing_auxiliary_YD
Project
Project
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
zhangyusheng
YX_IDENT_beijing_auxiliary_YD
Commits
8e6994ce
Commit
8e6994ce
authored
Dec 20, 2023
by
xiachenqi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加解析后的数据统计中异地首申相关数据
修改异地首申邮寄的xml包中回馈信息为制证中心
parent
f2644444
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
6 deletions
+14
-6
ExportXMLApi.java
src/main/java/com/yxproject/start/api/ExportXMLApi.java
+1
-1
queryPreproPerson.java
src/main/java/com/yxproject/start/api/queryPreproPerson.java
+6
-0
cardProdPackage.html
...sources/static/views/cardProdPackage/cardProdPackage.html
+1
-1
cardProdPackage.js
...resources/static/views/cardProdPackage/cardProdPackage.js
+2
-0
dataCheckReport.js
...resources/static/views/dataCheckReport/dataCheckReport.js
+4
-4
No files found.
src/main/java/com/yxproject/start/api/ExportXMLApi.java
View file @
8e6994ce
...
...
@@ -140,7 +140,7 @@ public class ExportXMLApi {
List
<
PreproPersonDto
>
preproPersonEntityList1
=
(
List
<
PreproPersonDto
>)
list1
;
List
<
FilesEntity
>
filesEntities
=
filesService
.
selectFilesEntityById
(
preproPersonEntityList1
.
get
(
0
).
getFileId
().
toString
());
FilesEntity
filesEntity
=
new
FilesEntity
();
if
(
preproPersonEntityList1
.
get
(
0
).
getCardTypeId
()
==
9
)
{
if
(
preproPersonEntityList1
.
get
(
0
).
getCardTypeId
()
==
9
||
preproPersonEntityList1
.
get
(
0
).
getCardTypeId
()
==
11
)
{
filesEntity
.
setVersionCode
(
"3.00"
);
filesEntity
.
setCreateTime
(
getCurrentDate2String
(
"yyyyMMddhhmmss"
));
filesEntity
.
setDwmc
(
"北京市公安局人口管理总队证件管理大队"
);
...
...
src/main/java/com/yxproject/start/api/queryPreproPerson.java
View file @
8e6994ce
...
...
@@ -44,6 +44,8 @@ public class queryPreproPerson {
map
.
put
(
"total"
,
preproPersonEntityList
.
size
());
int
youSum
=
0
;
int
puSum
=
0
;
int
yidishoushenpuSum
=
0
;
//异地首申普
int
yidishoushenyouSum
=
0
;
//异地首申邮
int
invaildCount
=
0
;
for
(
Map
<
String
,
Object
>
map1
:
preproPersonEntityList
)
{
if
(
"9"
.
equals
(
map1
.
get
(
"CARD_TYPE_ID"
)
+
""
))
{
...
...
@@ -51,6 +53,8 @@ public class queryPreproPerson {
}
else
if
(
"0"
.
equals
(
map1
.
get
(
"CARD_TYPE_ID"
)
+
""
))
{
puSum
++;
}
if
(
"10"
.
equals
(
map1
.
get
(
"CARD_TYPE_ID"
)
+
""
))
yidishoushenpuSum
++;
if
(
"11"
.
equals
(
map1
.
get
(
"CARD_TYPE_ID"
)
+
""
))
yidishoushenyouSum
++;
if
(
"0"
.
equals
(
map1
.
get
(
"IS_VALID"
)
+
""
))
{
invaildCount
++;
}
...
...
@@ -58,6 +62,8 @@ public class queryPreproPerson {
map
.
put
(
"list"
,
preproPersonEntities
);
map
.
put
(
"youSum"
,
youSum
);
map
.
put
(
"puSum"
,
puSum
);
map
.
put
(
"ydsspuSum"
,
yidishoushenpuSum
);
map
.
put
(
"ydssyouSum"
,
yidishoushenyouSum
);
map
.
put
(
"invaildCount"
,
invaildCount
);
}
catch
(
Exception
e
)
{
logger
.
error
(
"oldFile:"
+
uploadNo
+
"公民身份号码:"
+
IDCard
+
"包号:"
+
oldFile
+
"文件名:"
+
newFile
+
"签发机关:"
+
SSXQDM
+
"制证类型代码(9邮寄0大批):"
+
cardType
+
"是否有效(1有效,0无效):"
+
state
+
"上传时间:"
+
replaceDate
(
uploadDate1
)
+
replaceDate
(
uploadDate2
)
+
"页数:"
+
currPage
+
"条数:"
+
pageSize
+
"生成时间:"
+
downloadState
);
...
...
src/main/resources/static/views/cardProdPackage/cardProdPackage.html
View file @
8e6994ce
...
...
@@ -112,7 +112,7 @@
(
<span
style=
"color:#0b93d5;"
>
每页显示{{paginationConf.itemsPerPage}}条/共
{{paginationConf.totalItems}}条
</span>
)
<div
class=
"pull-right"
>
<span
style=
"color:#9f191f;"
><span
style=
"margin-right: 15px;"
>
普通证:{{simpleCardCount}}
</span><span
style=
"margin-right: 15px;"
>
邮寄证:{{postCardCount}}
</span><span>
禁用数:{{forbiddenCount}}
</span></span>
<span
style=
"color:#9f191f;"
><span
style=
"margin-right: 15px;"
>
普通证:{{simpleCardCount}}
</span><span
style=
"margin-right: 15px;"
>
邮寄证:{{postCardCount}}
</span><span
style=
"margin-right: 15px;"
>
异地首申普:{{ydSsSimpleCount}}
</span><span
style=
"margin-right: 15px;"
>
异地首申邮:{{ydSsPostCount}}
</span><span
style=
"margin-right: 15px;"
>
禁用数:{{forbiddenCount}}
</span></span>
</div>
</div>
<div
class=
"box-info"
style=
"padding: 7px; padding-top: 0px;"
>
...
...
src/main/resources/static/views/cardProdPackage/cardProdPackage.js
View file @
8e6994ce
...
...
@@ -95,6 +95,8 @@ angular.module('AvatarCheck.cardProdPackage', ['ngRoute', 'AvatarCheck.http', 't
$scope
.
paginationConf
.
totalItems
=
data
.
total
;
$scope
.
simpleCardCount
=
data
.
puSum
;
$scope
.
postCardCount
=
data
.
youSum
;
$scope
.
ydSsSimpleCount
=
data
.
ydsspuSum
;
$scope
.
ydSsPostCount
=
data
.
ydssyouSum
;
$scope
.
forbiddenCount
=
data
.
invaildCount
;
$scope
.
packageData
=
data
.
list
;
console
.
log
(
data
)
...
...
src/main/resources/static/views/dataCheckReport/dataCheckReport.js
View file @
8e6994ce
...
...
@@ -45,13 +45,13 @@ angular.module("AvatarCheck.dataCheckReport",['ngRoute', 'AvatarCheck.http'])
var
date1
=
$
(
"#datepicker1"
).
val
();
var
date2
=
$
(
"#datepicker2"
).
val
();
var
cardType
=
$
(
"#cardType"
).
val
();
if
(
cardType
==
''
){
if
(
cardType
==
=
''
){
cardType
=
-
1
;
}
if
(
date1
==
'{{choseDate}}'
){
if
(
date1
==
=
'{{choseDate}}'
){
date1
=
$filter
(
"date"
)(
new
Date
(),
"yyyy-MM-dd"
)
}
if
(
date2
==
'{{choseDate}}'
){
if
(
date2
==
=
'{{choseDate}}'
){
date2
=
$filter
(
"date"
)(
new
Date
(),
"yyyy-MM-dd"
)
}
HttpService
.
queryDataCheckReport
(
date1
,
date2
,
$scope
.
policeCode
,
$scope
.
policeName
,
cardType
,
function
(
data
)
{
...
...
@@ -59,7 +59,7 @@ angular.module("AvatarCheck.dataCheckReport",['ngRoute', 'AvatarCheck.http'])
console
.
log
(
$scope
.
dataCheckList
);
})
};
if
(
$rootScope
.
loginData
.
login
==
true
){
if
(
$rootScope
.
loginData
.
login
==
=
true
){
getTypeList
();
$scope
.
searchReportData
();
}
...
...
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