Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
8
8timerapiv200
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
8timerv2
8timerapiv200
Commits
bb151653
Commit
bb151653
authored
Nov 03, 2020
by
mobh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改问题
parent
bb65062d
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
105 additions
and
85 deletions
+105
-85
src/main/java/cn/timer/api/controller/xcgl/SalaryManagementController.java
+5
-42
src/main/java/cn/timer/api/dao/xcgl/XcglAssoGsjsmxMapper.java
+12
-3
src/main/java/cn/timer/api/dao/xcgl/XcglAssoZxfjkcMapper.java
+1
-1
src/main/java/cn/timer/api/dto/xcgl/SearchSalariedPeopleDto.java
+3
-2
src/main/resources/mapping/xcgl/XcglAssoGsjsmxMapper.xml
+56
-16
src/main/resources/mapping/xcgl/XcglAssoXzdazdyMapper.xml
+11
-5
src/main/resources/mapping/xcgl/XcglAssoZxfjkcMapper.xml
+17
-16
No files found.
src/main/java/cn/timer/api/controller/xcgl/SalaryManagementController.java
View file @
bb151653
...
...
@@ -825,14 +825,6 @@ public class SalaryManagementController {
@ApiOperation
(
value
=
"查询定薪人员/分页"
,
httpMethod
=
"POST"
,
notes
=
"接口发布说明"
)
public
Result
<
Object
>
FixedSalarStaff
(
@CurrentUser
UserBean
userBean
,
@RequestBody
SearchSalariedPeopleDto
search
)
{
search
.
setOrgcode
(
userBean
.
getOrgCode
());
if
((
"0"
).
equals
(
search
.
getStatus
()))
{
//全部
search
.
setStatus
(
""
);
}
else
if
((
"1"
).
equals
(
search
.
getStatus
()))
{
//在职
search
.
setStatus
(
"0"
);
}
else
{
search
.
setStatus
(
"3"
);
}
Page
<
FixedSalaryStaffDto
>
page
=
new
Page
<
FixedSalaryStaffDto
>(
search
.
getCurrentPage
()
==
null
?
1
:
search
.
getCurrentPage
(),
search
.
getTotalPage
()
==
null
?
10
:
search
.
getTotalPage
());
...
...
@@ -2910,15 +2902,7 @@ public class SalaryManagementController {
@PostMapping
(
value
=
"/obtainidedu"
)
@ApiOperation
(
value
=
"获取附加扣除数据"
,
httpMethod
=
"POST"
,
notes
=
"接口发布说明"
)
public
ResponseResult
ObtainAdditionalDeduction
(
@CurrentUser
UserBean
userBean
,
@RequestBody
SearchSalariedPeopleDto
search
)
{
search
.
setOrgcode
(
userBean
.
getOrgCode
());
if
((
"0"
).
equals
(
search
.
getStatus
()))
{
//全部
search
.
setStatus
(
""
);
}
else
if
((
"1"
).
equals
(
search
.
getStatus
()))
{
//在职
search
.
setStatus
(
"0"
);
}
else
{
search
.
setStatus
(
"3"
);
}
List
<
AdditionalDeductionDto
>
fjkclist
=
xcglassozxfjkcmapper
.
selectAdditionalDeductiontwo
(
search
);
return
new
ResponseResult
().
success
(
"获取附加扣除数据成功"
,
fjkclist
);
...
...
@@ -2935,13 +2919,6 @@ public class SalaryManagementController {
search
.
getTotalPage
()
==
null
?
10
:
search
.
getTotalPage
());
search
.
setOrgcode
(
userBean
.
getOrgCode
());
if
((
"0"
).
equals
(
search
.
getStatus
()))
{
//全部
search
.
setStatus
(
""
);
}
else
if
((
"1"
).
equals
(
search
.
getStatus
()))
{
//在职
search
.
setStatus
(
"66"
);
}
else
{
search
.
setStatus
(
"3"
);
}
IPage
<
AdditionalDeductionDto
>
pageAs
=
xcglassozxfjkcmapper
.
selectAdditionalDeduction
(
page
,
search
);
List
<
AdditionalDeductionDto
>
listAs
=
pageAs
.
getRecords
();
...
...
@@ -3390,18 +3367,11 @@ public class SalaryManagementController {
search
.
getTotalPage
()
==
null
?
10
:
search
.
getTotalPage
());
search
.
setOrgcode
(
userBean
.
getOrgCode
());
if
((
"0"
).
equals
(
search
.
getStatus
()))
{
//全部
search
.
setStatus
(
""
);
}
else
if
((
"1"
).
equals
(
search
.
getStatus
()))
{
//在职
search
.
setStatus
(
"0"
);
}
else
{
search
.
setStatus
(
"3"
);
}
IPage
<
XcglAssoGsjsmxDto
>
pageAs
=
xcglassogsjsmxmapper
.
SelectIndividualincomedetails
(
page
,
search
);
List
<
XcglAssoGsjsmxDto
>
listAs
=
pageAs
.
getRecords
();
page
.
setTotal
(
xcglassogsjsmxmapper
.
listPageCount
(
search
));
List
<
XcglAssoGsjsmxDto
>
listAs
=
xcglassogsjsmxmapper
.
listPage
(
search
);
return
ResultUtil
.
data
(
page
As
,
listAs
,
"操作成功!"
);
return
ResultUtil
.
data
(
page
,
listAs
,
"操作成功!"
);
}
/**
...
...
@@ -3411,14 +3381,7 @@ public class SalaryManagementController {
@ApiOperation
(
value
=
"获取个税明细数据"
,
httpMethod
=
"POST"
,
notes
=
"接口发布说明"
)
public
Result
<
Object
>
IndividualIncomeDetailsAll
(
@CurrentUser
UserBean
userBean
,
@RequestBody
SearchSalariedPeopleDto
search
)
{
search
.
setOrgcode
(
userBean
.
getOrgCode
());
if
((
"0"
).
equals
(
search
.
getStatus
()))
{
//全部
search
.
setStatus
(
""
);
}
else
if
((
"1"
).
equals
(
search
.
getStatus
()))
{
//在职
search
.
setStatus
(
"0"
);
}
else
{
search
.
setStatus
(
"3"
);
}
List
<
XcglAssoGsjsmxDto
>
listAs
=
xcglassogsjsmxmapper
.
SelectIndividualincomedetails
(
search
);
List
<
XcglAssoGsjsmxDto
>
listAs
=
xcglassogsjsmxmapper
.
SelectIndividualincomedetailsAll
(
search
);
return
ResultUtil
.
data
(
listAs
,
"操作成功!"
);
}
...
...
src/main/java/cn/timer/api/dao/xcgl/XcglAssoGsjsmxMapper.java
View file @
bb151653
...
...
@@ -17,9 +17,18 @@ import cn.timer.api.dto.xcgl.XcglAssoGsjsmxDto;
*/
@Repository
public
interface
XcglAssoGsjsmxMapper
extends
BaseMapper
<
XcglAssoGsjsmx
>
{
List
<
XcglAssoGsjsmxDto
>
SelectIndividualincomedetails
(
@Param
(
"param"
)
SearchSalariedPeopleDto
searchsalariedpeopledto
);
IPage
<
XcglAssoGsjsmxDto
>
SelectIndividualincomedetails
(
IPage
<
XcglAssoGsjsmxDto
>
page
,
@Param
(
"param"
)
SearchSalariedPeopleDto
searchsalariedpeopledto
);
List
<
XcglAssoGsjsmxDto
>
SelectIndividualincomedetailsAll
(
@Param
(
"param"
)
SearchSalariedPeopleDto
searchsalariedpeopledto
);
/**
* 分页统计总数
* @return
*/
Integer
listPageCount
(
@Param
(
"param"
)
SearchSalariedPeopleDto
searchsalariedpeopledto
);
/**
* 分页数据
* @return
*/
List
<
XcglAssoGsjsmxDto
>
listPage
(
@Param
(
"param"
)
SearchSalariedPeopleDto
searchsalariedpeopledto
);
List
<
XcglAssoGsjsmx
>
Allyearround
(
String
year
,
String
usernum
,
Integer
qyid
);
...
...
src/main/java/cn/timer/api/dao/xcgl/XcglAssoZxfjkcMapper.java
View file @
bb151653
...
...
@@ -23,7 +23,7 @@ public interface XcglAssoZxfjkcMapper extends BaseMapper<XcglAssoZxfjkc> {
int
insertXcglAssoZxfjkc
(
XcglAssoZxfjkc
xcglassozxfjkc
);
List
<
AdditionalDeductionDto
>
selectAdditionalDeductiontwo
(
SearchSalariedPeopleDto
searchsalariedpeopledto
);
List
<
AdditionalDeductionDto
>
selectAdditionalDeductiontwo
(
@Param
(
"param"
)
SearchSalariedPeopleDto
searchsalariedpeopledto
);
int
updateXcglAssoZxfjkc
(
XcglAssoZxfjkc
xcglassozxfjkc
);
...
...
src/main/java/cn/timer/api/dto/xcgl/SearchSalariedPeopleDto.java
View file @
bb151653
package
cn
.
timer
.
api
.
dto
.
xcgl
;
import
java.io.Serializable
;
import
java.util.List
;
import
cn.timer.api.utils.Page
;
import
io.swagger.annotations.ApiModelProperty
;
...
...
@@ -20,8 +21,8 @@ public class SearchSalariedPeopleDto extends Page {
private
static
final
long
serialVersionUID
=
6251994337286870380L
;
@ApiModelProperty
(
value
=
"员工状态
"
,
example
=
"员工状态
"
)
String
status
;
@ApiModelProperty
(
value
=
"员工状态
列表 "
,
example
=
"员工状态列表
"
)
List
<
Integer
>
status
;
@ApiModelProperty
(
value
=
"姓名/工号 "
,
example
=
"姓名/工号"
)
String
text
;
...
...
src/main/resources/mapping/xcgl/XcglAssoGsjsmxMapper.xml
View file @
bb151653
...
...
@@ -34,8 +34,8 @@
<resultMap
id=
"BaseXcglAssoGsjsmxDto"
type=
"cn.timer.api.dto.xcgl.XcglAssoGsjsmxDto"
>
<result
column=
"phone"
property=
"phone"
/>
<result
column=
"
user
_num"
property=
"userNum"
/>
<result
column=
"
user
_name"
property=
"userName"
/>
<result
column=
"
emp
_num"
property=
"userNum"
/>
<result
column=
"
emp
_name"
property=
"userName"
/>
<result
column=
"salary_month"
property=
"salaryMonth"
/>
<result
column=
"tax_month"
property=
"taxMonth"
/>
<result
column=
"thmonth_personal"
property=
"thmonthPersonal"
/>
...
...
@@ -60,23 +60,63 @@
<result
column=
"cum_ybtse"
property=
"cumYbtse"
/>
<result
column=
"qyid"
property=
"qyid"
/>
</resultMap>
<select
id=
"SelectIndividualincomedetails"
resultMap=
"BaseXcglAssoGsjsmxDto"
>
select em.phone,
gs.*
from xcgl_asso_gsjsmx gs
LEFT JOIN yggl_main_emp as em on em.emp_num = gs.user_num and em.org_code = #{param.orgcode}
where gs.qyid = #{param.orgcode}
<if
test=
"param.datetime != ''"
>
<!-- 分页 -->
<select
id=
"listPageCount"
resultType=
"java.lang.Integer"
>
select count(*)
from yggl_main_emp emp
where emp.org_code = #{param.orgcode}
<if
test=
"param.status != null and param.status.size() >0"
>
and emp.job_status in
<foreach
collection=
"param.status"
open=
"("
close=
")"
separator=
","
index=
"i"
item=
"item"
>
#{item, jdbcType=INTEGER}
</foreach>
</if>
<if
test=
"param.text != ''"
>
and (emp.`name` like CONCAT('%',#{param.text},'%') or emp.emp_num = #{param.text})
</if>
</select>
<select
id=
"listPage"
resultMap=
"BaseXcglAssoGsjsmxDto"
>
select emp.phone, emp.emp_num, emp.name as emp_name, gs.*
from (select emp.phone, emp.emp_num, emp.name
from yggl_main_emp emp
where emp.org_code = #{param.orgcode}
<if
test=
"param.status != null and param.status.size() >0"
>
and emp.job_status in
<foreach
collection=
"param.status"
open=
"("
close=
")"
separator=
","
index=
"i"
item=
"item"
>
#{item, jdbcType=INTEGER}
</foreach>
</if>
<if
test=
"param.text != ''"
>
and (emp.`name` like CONCAT('%',#{param.text},'%') or emp.emp_num = #{param.text})
</if>
limit #{param.offset}, #{param.totalPage}) emp
LEFT JOIN xcgl_asso_gsjsmx gs on emp.emp_num = gs.user_num and gs.qyid = #{param.orgcode}
<if
test=
"param.datetime != ''"
>
and gs.salary_month = #{param.datetime}
</if>
<if
test=
"param.status != ''"
>
and em.job_status = #{param.status}
</if>
<if
test=
"param.text != ''"
>
and (em.`name` like CONCAT('%',#{param.text},'%') or em.emp_num = #{param.text})
</if>
</select>
<select
id=
"SelectIndividualincomedetailsAll"
resultMap=
"BaseXcglAssoGsjsmxDto"
>
select emp.phone, emp.emp_num, emp.name as emp_name,gs.*
from (select emp.phone, emp.emp_num, emp.name
from yggl_main_emp emp
where emp.org_code = #{param.orgcode}
<if
test=
"param.status != null and param.status.size() >0"
>
and emp.job_status in
<foreach
collection=
"param.status"
open=
"("
close=
")"
separator=
","
index=
"i"
item=
"item"
>
#{item, jdbcType=INTEGER}
</foreach>
</if>
<if
test=
"param.text != ''"
>
and (emp.`name` like CONCAT('%',#{param.text},'%') or emp.emp_num = #{param.text})
</if>
) emp
LEFT JOIN xcgl_asso_gsjsmx gs on emp.emp_num = gs.user_num and gs.qyid = #{param.orgcode}
<if
test=
"param.datetime != ''"
>
and gs.salary_month = #{param.datetime}
</if>
</select>
<select
id=
"Allyearround"
resultMap=
"BaseResultMap"
>
select * from xcgl_asso_gsjsmx gs
...
...
src/main/resources/mapping/xcgl/XcglAssoXzdazdyMapper.xml
View file @
bb151653
...
...
@@ -175,8 +175,11 @@
<select
id=
"selectFixedSalaryStaffCount"
resultType=
"java.lang.Long"
>
select COUNT(*) from yggl_main_emp emp
where emp.org_code = #{param.orgcode}
<if
test=
"param.status != ''"
>
and emp.job_status = #{param.status}
<if
test=
"param.status != null and param.status.size() >0"
>
and emp.job_status in
<foreach
collection=
"param.status"
open=
"("
close=
")"
separator=
","
index=
"i"
item=
"item"
>
#{item, jdbcType=INTEGER}
</foreach>
</if>
<if
test=
"param.text != ''"
>
and (emp.`name` like CONCAT('%',#{param.text},'%') or emp.emp_num = #{param.text})
...
...
@@ -209,9 +212,12 @@
xzdaz.xzdadxid as xzdadxid
from (select * from yggl_main_emp emp
where emp.org_code = #{param.orgcode}
<if
test=
"param.status != ''"
>
and emp.job_status = #{param.status}
</if>
<if
test=
"param.status != null and param.status.size() >0"
>
and emp.job_status in
<foreach
collection=
"param.status"
open=
"("
close=
")"
separator=
","
index=
"i"
item=
"item"
>
#{item, jdbcType=INTEGER}
</foreach>
</if>
<if
test=
"param.text != ''"
>
and (emp.`name` like CONCAT('%',#{param.text},'%') or emp.emp_num = #{param.text})
</if>
...
...
src/main/resources/mapping/xcgl/XcglAssoZxfjkcMapper.xml
View file @
bb151653
...
...
@@ -77,13 +77,12 @@
and zxfj.taxmonth = #{param.datetime}
</if>
where emp.org_code = #{param.orgcode}
<if
test=
"param.status != '' and param.status != '66'"
>
and emp.job_status = #{param.status}
</if>
<if
test=
"param.status != '' and param.status == '66'"
>
and emp.job_status in (0,1)
</if>
<if
test=
"param.status != null and param.status.size() >0"
>
and emp.job_status in
<foreach
collection=
"param.status"
open=
"("
close=
")"
separator=
","
index=
"i"
item=
"item"
>
#{item, jdbcType=INTEGER}
</foreach>
</if>
<if
test=
"param.text != ''"
>
and (emp.`name` like CONCAT('%',#{param.text},'%') or emp.emp_num = #{param.text})
</if>
...
...
@@ -103,16 +102,18 @@
zxfj.totalmoney as lj
from yggl_main_emp emp
LEFT JOIN xcgl_asso_zxfjkc as zxfj on zxfj.userid = emp.emp_num
<if
test=
"datetime != ''"
>
and zxfj.taxmonth = #{datetime}
</if>
where emp.org_code = #{orgcode}
<if
test=
"status != ''"
>
and emp.job_status = #{status}
<if
test=
"param.datetime != ''"
>
and zxfj.taxmonth = #{param.datetime}
</if>
<if
test=
"text != ''"
>
and (emp.`name` like CONCAT('%',#{text},'%') or emp.emp_num = #{text})
where emp.org_code = #{param.orgcode}
<if
test=
"param.status != null and param.status.size() >0"
>
and emp.job_status in
<foreach
collection=
"param.status"
open=
"("
close=
")"
separator=
","
index=
"i"
item=
"item"
>
#{item, jdbcType=INTEGER}
</foreach>
</if>
<if
test=
"param.text != ''"
>
and (emp.`name` like CONCAT('%',#{param.text},'%') or emp.emp_num = #{param.text})
</if>
</select>
...
...
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