Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
tianjin-cement
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
竹天卫
tianjin-cement
Commits
6c990697
Commit
6c990697
authored
Nov 21, 2020
by
mengbali153
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导出列表修改
parent
90434e45
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
24 deletions
+24
-24
NonStandardApplyMapper.xml
.../sc/cement/business/mapper/xml/NonStandardApplyMapper.xml
+5
-5
NonStandardApprovalMapper.xml
.../cement/business/mapper/xml/NonStandardApprovalMapper.xml
+6
-6
NonStandardValueMapper.xml
.../sc/cement/business/mapper/xml/NonStandardValueMapper.xml
+3
-3
NonStandardApplyServiceImpl.java
...nt/business/service/impl/NonStandardApplyServiceImpl.java
+1
-1
NonStandardApprovalServiceImpl.java
...business/service/impl/NonStandardApprovalServiceImpl.java
+4
-4
NonStandardValueServiceImpl.java
...nt/business/service/impl/NonStandardValueServiceImpl.java
+5
-5
No files found.
cement-business/src/main/java/cn/wise/sc/cement/business/mapper/xml/NonStandardApplyMapper.xml
View file @
6c990697
...
...
@@ -21,7 +21,7 @@
FROM nonstandard_apply na
LEFT JOIN sys_user su ON su.id = na.user_id
<include
refid=
"where"
/>
order by na.
id a
sc
order by na.
start_time de
sc
</select>
<select
id=
"getList"
resultType=
"cn.wise.sc.cement.business.model.vo.NonStandardApplyVo"
>
...
...
@@ -29,7 +29,7 @@
from nonstandard_apply na
LEFT JOIN sys_user su ON su.id = na.user_id
<include
refid=
"where"
/>
order by na.
id a
sc
order by na.
start_time de
sc
</select>
<select
id=
"getById"
resultType=
"cn.wise.sc.cement.business.model.vo.NonStandardApplyVo"
>
...
...
@@ -37,7 +37,7 @@
FROM nonstandard_apply na
LEFT JOIN sys_user su ON na.user_id = su.id
<include
refid=
"where"
/>
ORDER BY na.id ASC
order by na.start_time desc
</select>
<select
id=
"exportList"
resultType=
"java.util.HashMap"
>
...
...
@@ -46,7 +46,7 @@
su.name as 姓名,
su.username as 账户,
na.statistical as 起止日期,
na.reported_hours as 上报工
时
,
na.reported_hours as 上报工
日
,
(
CASE na.status
WHEN 0 THEN '未申请'
...
...
@@ -61,6 +61,6 @@
FROM nonstandard_apply na
LEFT JOIN sys_user su ON su.id = na.user_id
<include
refid=
"where"
/>
ORDER BY na.id ASC
order by na.start_time desc
</select>
</mapper>
\ No newline at end of file
cement-business/src/main/java/cn/wise/sc/cement/business/mapper/xml/NonStandardApprovalMapper.xml
View file @
6c990697
...
...
@@ -25,14 +25,14 @@
LEFT JOIN sys_user su ON su.id = na.user_id
<include
refid=
"where"
/>
<where>
na.`status` != 0
</where>
order by na.
id a
sc
order by na.
start_time de
sc
</select>
<select
id=
"getList"
resultType=
"cn.wise.sc.cement.business.model.vo.NonStandardApprovalVo"
>
select na.*,su.name as name,su.username as account
from nonstandard_apply na
LEFT JOIN sys_user su ON su.id = na.user_id
order by na.
id a
sc
order by na.
start_time de
sc
</select>
<select
id=
"getById"
resultType=
"cn.wise.sc.cement.business.model.vo.NonStandardApprovalVo"
>
...
...
@@ -40,7 +40,7 @@
FROM nonstandard_apply na
LEFT JOIN sys_user su ON na.user_id = su.id
<include
refid=
"where"
/>
ORDER BY na.id ASC
order by na.start_time desc
</select>
<select
id=
"exportList"
resultType=
"java.util.HashMap"
>
...
...
@@ -49,7 +49,8 @@
su.name as 姓名,
su.username as 账户,
na.statistical as 起止日期,
na.approval_hours as 审批工时,
na.reported_hours as 上报工日,
na.approval_hours as 审批工日,
(
CASE na.status
WHEN 0 THEN '未提交'
...
...
@@ -59,12 +60,11 @@
END
)as 状态,
na.final_value as 最终产值,
na.appraisal_value as 考核公值,
na.final_rejection as 驳回意见
FROM nonstandard_apply na
left join sys_user su on na.user_id = su.id
<include
refid=
"where"
/>
ORDER BY na.id ASC
order by na.start_time desc
</select>
</mapper>
\ No newline at end of file
cement-business/src/main/java/cn/wise/sc/cement/business/mapper/xml/NonStandardValueMapper.xml
View file @
6c990697
...
...
@@ -55,18 +55,18 @@
su.name as 姓名,
su.username as 账户,
na.statistical as 起止日期,
na.approval_hours as 审批工时,
na.reported_hours as 上报工日,
na.approval_hours as 审批工日,
na.final_value as 最终产值,
na.work_type as 工作类别,
na.work_description as 工作描述,
na.start_time as 开始时间,
su.group_id as 部门id,
sg.name as 部门名
FROM nonstandard_apply na
left join sys_user su on na.user_id = su.id
LEFT JOIN sys_group sg ON sg.id = su.group_id
<include
refid=
"where"
/>
ORDER BY na.id ASC
order by na.start_time desc
</select>
</mapper>
\ No newline at end of file
cement-business/src/main/java/cn/wise/sc/cement/business/service/impl/NonStandardApplyServiceImpl.java
View file @
6c990697
...
...
@@ -143,7 +143,7 @@ public class NonStandardApplyServiceImpl extends ServiceImpl<NonStandardApplyMap
headers
[
1
]
=
"姓名"
;
headers
[
2
]
=
"账户"
;
headers
[
3
]
=
"起止日期"
;
headers
[
4
]
=
"上报工
时
"
;
headers
[
4
]
=
"上报工
日
"
;
headers
[
5
]
=
"状态"
;
headers
[
6
]
=
"工作类别"
;
headers
[
7
]
=
"工作描述"
;
...
...
cement-business/src/main/java/cn/wise/sc/cement/business/service/impl/NonStandardApprovalServiceImpl.java
View file @
6c990697
...
...
@@ -158,10 +158,10 @@ public class NonStandardApprovalServiceImpl extends ServiceImpl<NonStandardAppro
headers
[
1
]
=
"姓名"
;
headers
[
2
]
=
"账户"
;
headers
[
3
]
=
"起止日期"
;
headers
[
4
]
=
"
审批工时
"
;
headers
[
5
]
=
"
状态
"
;
headers
[
6
]
=
"
最终产值
"
;
headers
[
7
]
=
"
考核公
值"
;
headers
[
4
]
=
"
上报工日
"
;
headers
[
5
]
=
"
审批工日
"
;
headers
[
6
]
=
"
状态
"
;
headers
[
7
]
=
"
最终产
值"
;
headers
[
8
]
=
"驳回意见"
;
List
<
Object
[]>
datas
=
new
ArrayList
<>(
list
.
size
());
...
...
cement-business/src/main/java/cn/wise/sc/cement/business/service/impl/NonStandardValueServiceImpl.java
View file @
6c990697
...
...
@@ -163,11 +163,11 @@ public class NonStandardValueServiceImpl extends ServiceImpl<NonStandardValueMap
headers
[
1
]
=
"姓名"
;
headers
[
2
]
=
"账户"
;
headers
[
3
]
=
"起止日期"
;
headers
[
4
]
=
"
审批工时
"
;
headers
[
5
]
=
"
最终产值
"
;
headers
[
6
]
=
"
工作类别
"
;
headers
[
7
]
=
"工作
描述
"
;
headers
[
8
]
=
"
开始时间
"
;
headers
[
4
]
=
"
上报工日
"
;
headers
[
5
]
=
"
审批工日
"
;
headers
[
6
]
=
"
最终产值
"
;
headers
[
7
]
=
"工作
类别
"
;
headers
[
8
]
=
"
工作描述
"
;
headers
[
9
]
=
"部门id"
;
headers
[
10
]
=
"部门名"
;
...
...
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