|
@@ -207,7 +207,7 @@ namespace Com.Jpsoft.Hospital.Web.Module.FllowUp.MedicalQuality
|
|
|
if (ckbDH.Checked)
|
|
|
{
|
|
|
strWhere.Append(" and LEN(lxrdh) = 11 ");
|
|
|
- strWhere.Append(" and (lxrdh not like '133%' and lxrdh not like '149%' and lxrdh not like '153%' and lxrdh not like '173%' and lxrdh not like '174%' and lxrdh not like '177%' and lxrdh not like '180%' and lxrdh not like '181%' and lxrdh not like '189%' and lxrdh not like '199%') ");
|
|
|
+ //strWhere.Append(" and (lxrdh not like '133%' and lxrdh not like '149%' and lxrdh not like '153%' and lxrdh not like '173%' and lxrdh not like '174%' and lxrdh not like '177%' and lxrdh not like '180%' and lxrdh not like '181%' and lxrdh not like '189%' and lxrdh not like '199%') ");
|
|
|
|
|
|
}
|
|
|
if (ckbST.Checked)
|
|
@@ -313,7 +313,7 @@ namespace Com.Jpsoft.Hospital.Web.Module.FllowUp.MedicalQuality
|
|
|
/// </summary>
|
|
|
private string getSFL()
|
|
|
{
|
|
|
- string str = "去除电信号码出院患者总数:{0}。护理随访人数:{1},护理随访率:{2},护理有效随访人数:{3},护理有效随访率:{4}。医生随访人数:{5},医生随访率:{6},医生有效随访人数:{7},医生有效随访率:{8}。科室随访人数:{9},科室有效随访率:{10}。";
|
|
|
+ string str = "出院患者总数:{0}。护理随访人数:{1},护理随访率:{2},护理有效随访人数:{3},护理有效随访率:{4}。医生随访人数:{5},医生随访率:{6},医生有效随访人数:{7},医生有效随访率:{8}。科室随访人数:{9},科室有效随访率:{10}。";
|
|
|
|
|
|
int total = 0;
|
|
|
int hs = 0;
|
|
@@ -341,7 +341,7 @@ namespace Com.Jpsoft.Hospital.Web.Module.FllowUp.MedicalQuality
|
|
|
if (ckbDH.Checked)
|
|
|
{
|
|
|
sql += " and LEN(lxrdh) = 11 ";
|
|
|
- sql += " and (lxrdh not like '133%' and lxrdh not like '149%' and lxrdh not like '153%' and lxrdh not like '173%' and lxrdh not like '174%' and lxrdh not like '177%' and lxrdh not like '180%' and lxrdh not like '181%' and lxrdh not like '189%' and lxrdh not like '199%') ";
|
|
|
+ //sql += " and (lxrdh not like '133%' and lxrdh not like '149%' and lxrdh not like '153%' and lxrdh not like '173%' and lxrdh not like '174%' and lxrdh not like '177%' and lxrdh not like '180%' and lxrdh not like '181%' and lxrdh not like '189%' and lxrdh not like '199%') ";
|
|
|
}
|
|
|
DataTable dtRY = BLL.BaseClass.GetTable(sql);
|
|
|
total = dtRY.Rows.Count;
|
|
@@ -604,7 +604,7 @@ namespace Com.Jpsoft.Hospital.Web.Module.FllowUp.MedicalQuality
|
|
|
if (ckbDH.Checked)
|
|
|
{
|
|
|
sql += " and LEN(lxrdh) = 11 ";
|
|
|
- sql += " and (lxrdh not like '133%' and lxrdh not like '149%' and lxrdh not like '153%' and lxrdh not like '173%' and lxrdh not like '174%' and lxrdh not like '177%' and lxrdh not like '180%' and lxrdh not like '181%' and lxrdh not like '189%' and lxrdh not like '199%') ";
|
|
|
+ //sql += " and (lxrdh not like '133%' and lxrdh not like '149%' and lxrdh not like '153%' and lxrdh not like '173%' and lxrdh not like '174%' and lxrdh not like '177%' and lxrdh not like '180%' and lxrdh not like '181%' and lxrdh not like '189%' and lxrdh not like '199%') ";
|
|
|
}
|
|
|
DataTable dtRY = BLL.BaseClass.GetTable(sql);
|
|
|
total = dtRY.Rows.Count;
|
|
@@ -650,7 +650,7 @@ namespace Com.Jpsoft.Hospital.Web.Module.FllowUp.MedicalQuality
|
|
|
|
|
|
if (total != 0)
|
|
|
{
|
|
|
- string str = "去除电信号码出院患者总数:{0}。护理随访人数:{1},护理随访率:{2},护理有效随访人数:{3},护理有效随访率:{4}。医生随访人数:{5},医生随访率:{6},医生有效随访人数:{7},医生有效随访率:{8}。科室随访人数:{9},科室有效随访率:{10}。";
|
|
|
+ string str = "出院患者总数:{0}。护理随访人数:{1},护理随访率:{2},护理有效随访人数:{3},护理有效随访率:{4}。医生随访人数:{5},医生随访率:{6},医生有效随访人数:{7},医生有效随访率:{8}。科室随访人数:{9},科室有效随访率:{10}。";
|
|
|
str = String.Format(str, total, hsall, ((double)hsall / total).ToString("0.00%"), hs, ((double)hs / total).ToString("0.00%"), ysall, ((double)ysall / total).ToString("0.00%"), ys, ((double)ys / total).ToString("0.00%"), ks, ((double)ks / total).ToString("0.00%"));
|
|
|
|
|
|
DataRow drLast = dt.NewRow();
|