Commit b7bb6d51 by lcx

工作量cmi药占比系数带入计算

parent 0fb16ca5
......@@ -2673,6 +2673,26 @@
预留比例金额
</summary>
</member>
<member name="P:Performance.DtoModels.ComputeResponse.Punishment">
<summary>
</summary>
</member>
<member name="P:Performance.DtoModels.ComputeResponse.GiveFee">
<summary>
</summary>
</member>
<member name="P:Performance.DtoModels.ComputeResponse.Adjust">
<summary>
</summary>
</member>
<member name="P:Performance.DtoModels.ComputeResponse.AdjustLaterOtherFee">
<summary>
</summary>
</member>
<member name="P:Performance.DtoModels.DeptDataDetails`1.Pandect">
<summary> 概览</summary>
</member>
......
......@@ -166,14 +166,14 @@ public PerSheet OnceCompute(PerSheet sheet, List<CofDrugProp> confs = null)
cellvalue = cmifactor * cellvalue;
}
return cellvalue;
}) * factor;
});
value += ngroup.Sum(s =>
{
var cellvalue = s.IsFactor ? s.CellValue * s.FactorValue : s.CellValue;
if (workitems.Any(w => w.Type == 1) && workitems.Where(w => w.Type == 1).Select(q => q.Item).Contains(s.TypeName))
{
cellvalue = cmifactor * cellvalue;
cellvalue = factor * cellvalue;
}
return cellvalue;
});
......
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