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
fe67db6f
Commit
fe67db6f
authored
Jul 14, 2021
by
ruyun.zhang@suvalue.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/新二次分配' into release/v20210709功能分支合并
parents
3f1d5319
7261d280
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
performance/Performance.DtoModels/Second/SecondColumnDictionary.cs
+2
-2
performance/Performance.Services/RedistributionService.cs
+1
-0
No files found.
performance/Performance.DtoModels/Second/SecondColumnDictionary.cs
View file @
fe67db6f
...
...
@@ -39,7 +39,7 @@ public SecondColumnDictionary()
{
}
public
SecondColumnDictionary
(
string
label
,
string
key
,
bool
isTrue
,
int
sort
,
string
site
=
"Table"
,
string
type
=
""
,
string
color
=
""
)
public
SecondColumnDictionary
(
string
label
,
string
key
,
bool
isTrue
,
int
sort
,
string
site
=
"Table"
,
string
type
=
""
,
string
color
=
""
,
int
?
width
=
null
)
{
Label
=
label
;
Key
=
key
;
...
...
@@ -48,7 +48,7 @@ public SecondColumnDictionary(string label, string key, bool isTrue, int sort, s
Site
=
site
;
Type
=
type
;
Color
=
color
;
Width
=
((
label
??
""
).
Length
*
20
+
10
).
ToString
();
Width
=
width
.
HasValue
?
width
.
ToString
()
:
((
label
??
""
).
Length
*
20
+
10
).
ToString
();
}
}
}
performance/Performance.Services/RedistributionService.cs
View file @
fe67db6f
...
...
@@ -192,6 +192,7 @@ public List<SecondColumnDictionary> GetTableHeaderDictionary(ComputeMode compute
new
SecondColumnDictionary
(
"医院其他绩效"
,
nameof
(
ag_bodysource
.
OtherPerformance
),
false
,
801
,
color
:
"referto_color"
),
new
SecondColumnDictionary
(
"实发绩效"
,
nameof
(
ag_bodysource
.
ReferToRealAmount
),
false
,
802
,
color
:
"referto_color"
),
new
SecondColumnDictionary
(
"备注"
,
nameof
(
ag_bodysource
.
Remark
),
false
,
803
,
width
:
200
),
};
// 工作量
...
...
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