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
82f3f5fb
Commit
82f3f5fb
authored
Apr 10, 2019
by
dahai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
322c0c9a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
2 deletions
+9
-2
FailedCardMapper.java
...ain/java/com/yxproject/start/mapper/FailedCardMapper.java
+1
-1
TaskListMapper.java
src/main/java/com/yxproject/start/mapper/TaskListMapper.java
+0
-0
TaskListServiceImpl.java
...com/yxproject/start/service/impl/TaskListServiceImpl.java
+3
-0
dispatchTask.html
...ain/resources/static/views/dispatchTask/dispatchTask.html
+3
-0
taskListPrint.html
src/main/resources/static/views/task/taskListPrint.html
+2
-1
No files found.
src/main/java/com/yxproject/start/mapper/FailedCardMapper.java
View file @
82f3f5fb
...
...
@@ -74,7 +74,7 @@ public interface FailedCardMapper {
@Select
(
"select prod_card_t.accept_no,subStr(prod_card_t.UPLOAD_NO,0,6) as COUNTY_CODE,task.CARD_TYPE\n"
+
" ,task.work_gr
uo
p from prod_card_t@prod_link\n"
+
" ,task.work_gr
ou
p from prod_card_t@prod_link\n"
+
"left join group_no on subStr(prod_card_t.ACCEPT_NO,0,8)=group_no.group_no "
+
"left join task on group_no.task_id = task.task_id "
+
"where prod_card_t.accept_no=#{acceptNo} or prod_card_t.ID_NO=#{acceptNo}"
)
...
...
src/main/java/com/yxproject/start/mapper/TaskListMapper.java
View file @
82f3f5fb
This diff is collapsed.
Click to expand it.
src/main/java/com/yxproject/start/service/impl/TaskListServiceImpl.java
View file @
82f3f5fb
...
...
@@ -1230,6 +1230,7 @@ public class TaskListServiceImpl implements TaskListService {
String
countyName
=
null
;
String
countyCode
=
null
;
Object
submitDate
=
null
;
String
workGroup
=
null
;
List
<
Map
<
String
,
Object
>>
countyMapList
=
mapList
.
get
(
taskId
);
for
(
Map
<
String
,
Object
>
countyMap
:
countyMapList
)
{
submitDate
=
countyMap
.
get
(
"SUBMIT_DATE"
);
...
...
@@ -1241,6 +1242,7 @@ public class TaskListServiceImpl implements TaskListService {
validCount
+=
Integer
.
valueOf
(
countyMap
.
get
(
"VALID_COUNT"
)
+
""
);
invalidCount
+=
Integer
.
valueOf
(
countyMap
.
get
(
"INVALID_COUNT"
)
+
""
);
specialCount
+=
Integer
.
valueOf
(
countyMap
.
get
(
"SPECIAL_CARD_COUNT"
)
+
""
);
workGroup
=
countyMap
.
get
(
"WORK_GROUP"
)
+
""
;
}
if
(
countyMapList
.
size
()
==
1
)
{
countyMapGroup
.
put
(
"groupNum"
,
countyMapList
.
get
(
0
).
get
(
"GROUP_NO"
));
...
...
@@ -1271,6 +1273,7 @@ public class TaskListServiceImpl implements TaskListService {
countyMapGroup
.
put
(
"countyName"
,
countyName
);
countyMapGroup
.
put
(
"countyValidCount"
,
validCount
);
countyMapGroup
.
put
(
"countyInvalidCount"
,
invalidCount
);
countyMapGroup
.
put
(
"workGroup"
,
workGroup
);
countyList
.
add
(
countyMapGroup
);
}
mapType
.
put
(
"typeCode"
,
typeName
);
...
...
src/main/resources/static/views/dispatchTask/dispatchTask.html
View file @
82f3f5fb
...
...
@@ -129,6 +129,7 @@
<th>
合格数量
</th>
<th>
不合格数量
</th>
<th>
特殊证件数量
</th>
<th>
工作组
</th>
<th></th>
</tr>
</thead>
...
...
@@ -140,6 +141,8 @@
<td
class=
"mailbox-attachment"
>
{{task.countyValidCount}}
</td>
<td
class=
"mailbox-date"
>
{{task.countyInvalidCount}}
</td>
<td
class=
"mailbox-date"
>
{{task.specialCount}}
</td>
<td
class=
"mailbox-attachment text-red"
ng-if=
"task.workGroup==1"
>
A组
</td>
<td
class=
"mailbox-attachment text-green"
ng-if=
"task.workGroup==2"
>
B组
</td>
<td
class=
"mailbox-date"
><a
ng-click=
"getPoliceList(task.groupList,task.taskId)"
>
组号列表
</a></td>
</tr>
<tr
ng-if=
"task.taskId==taskId"
>
...
...
src/main/resources/static/views/task/taskListPrint.html
View file @
82f3f5fb
...
...
@@ -149,7 +149,8 @@
<td
class=
"mailbox-subject"
>
{{task.countyValidCount}}
</td>
<td
class=
"mailbox-subject"
>
{{task.countyValidCount-task.specialCount}}
</td>
<td
class=
"mailbox-attachment"
>
{{task.specialCount}}
</td>
<td
class=
"mailbox-attachment"
>
{{task.workGroup}}
</td>
<td
class=
"mailbox-attachment text-red"
ng-if=
"task.workGroup==1"
>
A组
</td>
<td
class=
"mailbox-attachment text-green"
ng-if=
"task.workGroup==2"
>
B组
</td>
<td
class=
"mailbox-date"
><a
ng-click=
"getPoliceList(task.groupList,task.taskId)"
>
组号列表
</a></td>
</tr>
<tr
ng-if=
"task.taskId==taskId"
>
...
...
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