Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
performance
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
zry
performance
Commits
15138d91
Commit
15138d91
authored
Apr 28, 2022
by
1391696987
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复手工录入bug
parent
497fb866
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
16 additions
and
13 deletions
+16
-13
performance/Performance.Api/Controllers/AttendanceController.cs
+0
-1
performance/Performance.Api/Controllers/EmployeeController.cs
+4
-6
performance/Performance.Api/wwwroot/Performance.Api.xml
+1
-2
performance/Performance.Api/wwwroot/Performance.EntityModels.xml
+5
-0
performance/Performance.DtoModels/Enum.cs
+1
-1
performance/Performance.DtoModels/PerExcel/PerSheetHeader.cs
+1
-1
performance/Performance.DtoModels/Response/GatherResponse.cs
+0
-2
performance/Performance.EntityModels/Entity/per_dept_dic.cs
+4
-0
performance/Performance.Services/EmployeeService.cs
+0
-0
No files found.
performance/Performance.Api/Controllers/AttendanceController.cs
View file @
15138d91
...
...
@@ -148,7 +148,6 @@ public ApiResponse GetAttendanceVacationHandsonTable(int allotId)
/// 查询考勤记录
/// </summary>
/// <param name="allotId"></param>
/// <param name="hospitalId"></param>
/// <returns></returns>
[
HttpGet
(
"Vacation/{allotId},{hospitalId}"
)]
public
ApiResponse
<
List
<
RecordAttendcance
>>
GetAttendanceVacation
(
int
allotId
)
...
...
performance/Performance.Api/Controllers/EmployeeController.cs
View file @
15138d91
...
...
@@ -899,10 +899,8 @@ public ApiResponse SaveGatherHands([FromRoute] int allotId, [FromBody] SaveGathe
if
(
request
.
Data
==
null
||
!
request
.
Data
.
Any
())
return
new
ApiResponse
(
ResponseType
.
Fail
,
"用户提交数据为空"
);
employeeService
.
CheckGatherData
(
allotId
,
request
);
employeeService
.
SaveGatherHands
(
allotId
,
request
);
employeeService
.
AddCategoryToConfig
(
allotId
);
return
new
ApiResponse
(
ResponseType
.
OK
);
;
return
employeeService
.
SaveGatherHands
(
allotId
,
request
);
}
/// <summary>
...
...
@@ -965,9 +963,9 @@ public ApiResponse DeleteGather([FromBody] Gather gather)
/// <returns></returns>
[
Route
(
"auditGather"
)]
[
HttpPost
]
public
ApiResponse
a
uditGather
([
FromBody
]
List
<
Gather
>
gather
)
public
ApiResponse
A
uditGather
([
FromBody
]
List
<
Gather
>
gather
)
{
employeeService
.
a
uditGather
(
gather
);
employeeService
.
A
uditGather
(
gather
);
return
new
ApiResponse
(
ResponseType
.
OK
,
""
);
}
#
endregion
...
...
performance/Performance.Api/wwwroot/Performance.Api.xml
View file @
15138d91
...
...
@@ -384,7 +384,6 @@
查询考勤记录
</summary>
<param
name=
"allotId"
></param>
<param
name=
"hospitalId"
></param>
<returns></returns>
</member>
<member
name=
"M:Performance.Api.Controllers.AttendanceController.AttendanceBatch(System.Int32,System.Int32,Performance.DtoModels.SaveCollectData)"
>
...
...
@@ -1400,7 +1399,7 @@
<param
name=
"gather"
></param>
<returns></returns>
</member>
<member
name=
"M:Performance.Api.Controllers.EmployeeController.
a
uditGather(System.Collections.Generic.List{Performance.DtoModels.Gather})"
>
<member
name=
"M:Performance.Api.Controllers.EmployeeController.
A
uditGather(System.Collections.Generic.List{Performance.DtoModels.Gather})"
>
<summary>
批量审核
</summary>
...
...
performance/Performance.Api/wwwroot/Performance.EntityModels.xml
View file @
15138d91
...
...
@@ -6605,6 +6605,11 @@
</summary>
</member>
<member
name=
"P:Performance.EntityModels.per_dept_dic.AllotId"
>
<summary>
</summary>
</member>
<member
name=
"P:Performance.EntityModels.per_dept_dic.HISDeptName"
>
<summary>
his系统科室名称
...
...
performance/Performance.DtoModels/Enum.cs
View file @
15138d91
...
...
@@ -172,7 +172,7 @@ public enum Deduction
}
public
enum
AuditGather
public
enum
AuditGather
Enum
{
未审核
=
0
,
未通过
=
1
,
...
...
performance/Performance.DtoModels/PerExcel/PerSheetHeader.cs
View file @
15138d91
...
...
@@ -104,7 +104,7 @@ public class ColumnHeadsConfig
public
static
List
<
Heads
>
GatherTotal
{
get
;
}
=
new
List
<
Heads
>
{
new
Heads
{
Column
=
"
核算组别
"
,
Name
=
nameof
(
GatherTotalRequest
.
Department
)},
new
Heads
{
Column
=
"
His科室
"
,
Name
=
nameof
(
GatherTotalRequest
.
Department
)},
new
Heads
{
Column
=
"来源"
,
Name
=
nameof
(
GatherTotalRequest
.
Source
)},
new
Heads
{
Column
=
"核算项目"
,
Name
=
nameof
(
GatherTotalRequest
.
Category
)},
new
Heads
{
Column
=
"提交人"
,
Name
=
nameof
(
UserRequest
.
Login
)},
...
...
performance/Performance.DtoModels/Response/GatherResponse.cs
View file @
15138d91
...
...
@@ -27,8 +27,6 @@ public class GatherInfo
public
class
GatherDropResponse
{
public
string
Label
{
get
;
set
;
}
public
string
Value
{
get
;
set
;
}
public
List
<
GatherDropResponse
>
Children
{
get
;
set
;
}
...
...
performance/Performance.EntityModels/Entity/per_dept_dic.cs
View file @
15138d91
...
...
@@ -20,6 +20,10 @@ public class per_dept_dic
/// </summary>
[
Key
]
public
int
Id
{
get
;
set
;
}
/// <summary>
///
/// </summary>
public
int
AllotId
{
get
;
set
;
}
/// <summary>
/// his系统科室名称
...
...
performance/Performance.Services/EmployeeService.cs
View file @
15138d91
This diff is collapsed.
Click to expand it.
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