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
438754fa
Commit
438754fa
authored
Jul 13, 2021
by
ruyun.zhang@suvalue.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
二次分配新增“备注”列
parent
5ded73b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
performance/Performance.EntityModels/Entity/ag_bodysource.cs
+5
-0
performance/Performance.Services/RedistributionService.cs
+7
-2
No files found.
performance/Performance.EntityModels/Entity/ag_bodysource.cs
View file @
438754fa
...
@@ -150,5 +150,10 @@ public class ag_bodysource
...
@@ -150,5 +150,10 @@ public class ag_bodysource
/// 实发绩效(参考,含医院其他绩效)
/// 实发绩效(参考,含医院其他绩效)
/// </summary>
/// </summary>
public
Nullable
<
decimal
>
ReferToRealAmount
{
get
;
set
;
}
public
Nullable
<
decimal
>
ReferToRealAmount
{
get
;
set
;
}
/// <summary>
/// 备注
/// </summary>
public
string
Remark
{
get
;
set
;
}
}
}
}
}
performance/Performance.Services/RedistributionService.cs
View file @
438754fa
...
@@ -617,7 +617,10 @@ private HandsonTableBase ComputeMode_Format1(List<string> colHeaders, List<Hands
...
@@ -617,7 +617,10 @@ private HandsonTableBase ComputeMode_Format1(List<string> colHeaders, List<Hands
handson
.
Columns
.
AddRange
(
columns
);
handson
.
Columns
.
AddRange
(
columns
);
handson
.
ColHeaders
.
AddRange
(
new
string
[]
{
"夜班绩效"
,
});
handson
.
ColHeaders
.
AddRange
(
new
string
[]
{
"夜班绩效"
,
});
handson
.
Columns
.
AddRange
(
new
HandsonColumn
[]
{
new
HandsonColumn
(
nameof
(
ag_bodysource
.
NightWorkPerformance
).
ToLower
(),
format
:
DataFormat
.
小数
),
});
handson
.
Columns
.
AddRange
(
new
HandsonColumn
[]
{
new
HandsonColumn
(
nameof
(
ag_bodysource
.
NightWorkPerformance
).
ToLower
(),
format
:
DataFormat
.
小数
)
});
handson
.
ColHeaders
.
AddRange
(
new
string
[]
{
"备注"
,
});
handson
.
Columns
.
AddRange
(
new
HandsonColumn
[]
{
new
HandsonColumn
(
nameof
(
ag_bodysource
.
Remark
).
ToLower
())
});
return
handson
;
return
handson
;
}
}
...
@@ -648,8 +651,10 @@ private HandsonTableBase ComputeMode_Format2(List<string> colHeaders, List<Hands
...
@@ -648,8 +651,10 @@ private HandsonTableBase ComputeMode_Format2(List<string> colHeaders, List<Hands
handson
.
Columns
.
AddRange
(
columns
);
handson
.
Columns
.
AddRange
(
columns
);
handson
.
ColHeaders
.
AddRange
(
new
string
[]
{
"夜班绩效"
,
});
handson
.
ColHeaders
.
AddRange
(
new
string
[]
{
"夜班绩效"
,
});
handson
.
Columns
.
AddRange
(
new
HandsonColumn
[]
{
new
HandsonColumn
(
nameof
(
ag_bodysource
.
NightWorkPerformance
).
ToLower
(),
format
:
DataFormat
.
小数
)
,
});
handson
.
Columns
.
AddRange
(
new
HandsonColumn
[]
{
new
HandsonColumn
(
nameof
(
ag_bodysource
.
NightWorkPerformance
).
ToLower
(),
format
:
DataFormat
.
小数
)
});
handson
.
ColHeaders
.
AddRange
(
new
string
[]
{
"备注"
,
});
handson
.
Columns
.
AddRange
(
new
HandsonColumn
[]
{
new
HandsonColumn
(
nameof
(
ag_bodysource
.
Remark
).
ToLower
())
});
return
handson
;
return
handson
;
}
}
...
...
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