Commit 97a18f72 by lcx

绩效提取,获取核算单元修改

parent 081bd1ba
......@@ -272,18 +272,18 @@ public static string HasValue(params string[] list)
private static readonly Dictionary<string, Func<ExtractTransDto, string>> fieldInpat = new Dictionary<string, Func<ExtractTransDto, string>>
{
{ "科室名称", (dto) => dto.Department },
{ "核算单元(医生组)", (dto) => new string []{ dto.InpatDoctorAccounting, dto.OutDoctorAccounting }.FirstOrDefault(t => !string.IsNullOrEmpty(t)) },
{ "核算单元(护理组)", (dto) => new string []{ dto.InpatNurseAccounting, dto.OutNurseAccounting }.FirstOrDefault(t => !string.IsNullOrEmpty(t)) },
{ "核算单元(医技组)", (dto) => new string []{ dto.InpatTechnicAccounting, dto.OutTechnicAccounting }.FirstOrDefault(t => !string.IsNullOrEmpty(t)) },
{ "核算单元(医生组)", (dto) => dto.InpatDoctorAccounting },
{ "核算单元(护理组)", (dto) => dto.InpatNurseAccounting },
{ "核算单元(医技组)", (dto) => dto.InpatTechnicAccounting },
};
/// <summary> 门诊核算单元 </summary>
private static readonly Dictionary<string, Func<ExtractTransDto, string>> fieldOut = new Dictionary<string, Func<ExtractTransDto, string>>
{
{ "科室名称", (dto) => dto.Department },
{ "核算单元(医生组)", (dto) => new string []{ dto.OutDoctorAccounting, dto.InpatDoctorAccounting }.FirstOrDefault(t => !string.IsNullOrEmpty(t)) },
{ "核算单元(护理组)", (dto) => new string []{ dto.OutNurseAccounting, dto.InpatNurseAccounting }.FirstOrDefault(t => !string.IsNullOrEmpty(t)) },
{ "核算单元(医技组)", (dto) => new string []{ dto.OutTechnicAccounting, dto.InpatTechnicAccounting }.FirstOrDefault(t => !string.IsNullOrEmpty(t)) },
{ "核算单元(医生组)", (dto) => dto.OutDoctorAccounting },
{ "核算单元(护理组)", (dto) => dto.OutNurseAccounting },
{ "核算单元(医技组)", (dto) => dto.OutTechnicAccounting },
};
/// <summary> 医生工作量 </summary>
......
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