|
@@ -115,6 +115,7 @@ namespace VitalService.Service
|
|
|
QualifiedArchivesNum = doctorStatisticEntities.Sum(x => x.QualifiedArchivesNum),
|
|
|
SignQualifiedArchivesNum = doctorStatisticEntities.Sum(x => x.SignQualifiedArchivesNum),
|
|
|
RenewalsNum = doctorStatisticEntities.Sum(x => x.RenewalsNum),
|
|
|
+ KeyPeopleRenewalsNum = doctorStatisticEntities.Sum(x => x.KeyPeopleRenewalsNum),
|
|
|
KeyPeopleSignNum = doctorStatisticEntities.Sum(x => x.KeyPeopleSignNum),
|
|
|
KeyPeopleNum = doctorStatisticEntities.Sum(x => x.KeyPeopleNum),
|
|
|
ThatDay = currentDay,
|
|
@@ -153,6 +154,7 @@ namespace VitalService.Service
|
|
|
{
|
|
|
InternetPlusSignRate = MathRoundPercentage(signTotalCount, archivesTotalCount),
|
|
|
SignedResidentRenewalRate = MathRoundPercentage(doctorStatisticEntities.Sum(x => x.RenewalsNum), signTotalCount),
|
|
|
+ KeepPeopleRenewalRate = MathRoundPercentage(doctorStatisticEntities.Sum(x => x.KeyPeopleRenewalsNum), doctorStatisticEntities.Sum(x => x.KeyPeopleSignNum)),
|
|
|
SignedResidentFirstConsultationRate = 0,
|
|
|
SignedResidentEffectiveReferralRate = 0,
|
|
|
};
|
|
@@ -260,6 +262,7 @@ namespace VitalService.Service
|
|
|
QualifiedArchivesNum = villageStatisticEntities.Sum(x => x.ArchivesStatisticsData.QualifiedArchivesNum),
|
|
|
SignQualifiedArchivesNum = villageStatisticEntities.Sum(x => x.ArchivesStatisticsData.SignQualifiedArchivesNum),
|
|
|
RenewalsNum = villageStatisticEntities.Sum(x => x.ArchivesStatisticsData.RenewalsNum),
|
|
|
+ KeyPeopleRenewalsNum = villageStatisticEntities.Sum(x => x.ArchivesStatisticsData.KeyPeopleRenewalsNum),
|
|
|
KeyPeopleSignNum = villageStatisticEntities.Sum(x => x.ArchivesStatisticsData.KeyPeopleSignNum),
|
|
|
KeyPeopleNum = villageStatisticEntities.Sum(x => x.ArchivesStatisticsData.KeyPeopleNum),
|
|
|
ThatDay = currentDay,
|
|
@@ -298,6 +301,7 @@ namespace VitalService.Service
|
|
|
{
|
|
|
InternetPlusSignRate = MathRoundPercentage(signTotalCount, archivesTotalCount),
|
|
|
SignedResidentRenewalRate = MathRoundPercentage(villageStatisticEntities.Sum(x => x.ArchivesStatisticsData.RenewalsNum), signTotalCount),
|
|
|
+ KeepPeopleRenewalRate = MathRoundPercentage(villageStatisticEntities.Sum(x => x.ArchivesStatisticsData.KeyPeopleRenewalsNum), villageStatisticEntities.Sum(x => x.ArchivesStatisticsData.KeyPeopleSignNum)),
|
|
|
SignedResidentFirstConsultationRate = 0,
|
|
|
SignedResidentEffectiveReferralRate = 0,
|
|
|
};
|
|
@@ -403,6 +407,7 @@ namespace VitalService.Service
|
|
|
QualifiedArchivesNum = townStatisticEntities.Sum(x => x.VillageArchivesStatisticsData.QualifiedArchivesNum),
|
|
|
SignQualifiedArchivesNum = townStatisticEntities.Sum(x => x.VillageArchivesStatisticsData.SignQualifiedArchivesNum),
|
|
|
RenewalsNum = townStatisticEntities.Sum(x => x.VillageArchivesStatisticsData.RenewalsNum),
|
|
|
+ KeyPeopleRenewalsNum = townStatisticEntities.Sum(x => x.VillageArchivesStatisticsData.KeyPeopleRenewalsNum),
|
|
|
KeyPeopleSignNum = townStatisticEntities.Sum(x => x.VillageArchivesStatisticsData.KeyPeopleSignNum),
|
|
|
KeyPeopleNum = townStatisticEntities.Sum(x => x.VillageArchivesStatisticsData.KeyPeopleNum),
|
|
|
ThatDay = currentDay,
|
|
@@ -451,6 +456,7 @@ namespace VitalService.Service
|
|
|
{
|
|
|
InternetPlusSignRate = MathRoundPercentage(signTotalCount, archivesTotalCount),
|
|
|
SignedResidentRenewalRate = MathRoundPercentage(townStatisticEntities.Sum(x => x.VillageArchivesStatisticsData.RenewalsNum), signTotalCount),
|
|
|
+ KeepPeopleRenewalRate = MathRoundPercentage(townStatisticEntities.Sum(x => x.VillageArchivesStatisticsData.KeyPeopleRenewalsNum), townStatisticEntities.Sum(x => x.VillageArchivesStatisticsData.KeyPeopleSignNum)),
|
|
|
SignedResidentFirstConsultationRate = 0,
|
|
|
SignedResidentEffectiveReferralRate = 0,
|
|
|
};
|