横向工作量BUG修复

parent acf46419
...@@ -977,7 +977,7 @@ decimal ComputeMode_2(Dictionary<string, object> row, SecondWorkLoadDto gp, stri ...@@ -977,7 +977,7 @@ decimal ComputeMode_2(Dictionary<string, object> row, SecondWorkLoadDto gp, stri
var workload_score = 0m; var workload_score = 0m;
if (gp.Items.Count % 2 == 0) if (gp.Items.Count % 2 == 0)
{ {
for (int i = 0; i < gp.Items.Count / 2; i = i + 2) for (int i = 0; i < gp.Items.Count; i = i + 2)
{ {
// 科主任/护士长 不参与工作量考核 // 科主任/护士长 不参与工作量考核
if (specialPostName.Contains(post)) if (specialPostName.Contains(post))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment