Commit 83d93f53 by lcx

二次绩效工作量类型返回worktypid

parent f441fd10
......@@ -423,7 +423,9 @@ public dynamic GetWorkloadDict(int secondId)
{
Title = t.ItemId,
Value = t.ItemName,
Factor = t.FactorValue
Factor = t.FactorValue,
WorkTypeId = t.WorkTypeId,
Sort = t.Sort
});
}
......@@ -441,7 +443,9 @@ private dynamic GetWorkloadDictAfterAudit(int secondId)
{
Title = t.Key.ItemId,
Value = t.Key.ItemName,
Factor = t.Key.FactorValue
Factor = t.Key.FactorValue,
WorkTypeId = t.Key.WorkTypeId,
Sort = t.Key.Sort
});
return dict;
......
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