带出工作量分隔比例BUG修复

parent a02f3fba
......@@ -418,7 +418,7 @@ private void SupplementFixedData(ag_secondallot secondAllot, List<BodyItem> body
foreach (var item in keyValue)
{
var field = bodyItems.FirstOrDefault(w => w.RowNumber == -1 && w.FiledName == item.Key);
if (field != null && string.IsNullOrEmpty(field.Value) && !string.IsNullOrEmpty(item.Value)) field.Value = item.Value;
if (field != null && !string.IsNullOrEmpty(item.Value)) field.Value = item.Value;
}
}
......
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