|
@@ -419,7 +419,7 @@ namespace Hotline.Share.Dtos.Order
|
|
|
// return Math.Round(((double)VerySatisfiedCount + SatisfiedCount + RegardedAsSatisfiedCount + DefaultSatisfiedCount) / (VerySatisfiedCount + SatisfiedCount + RegardedAsSatisfiedCount + DefaultSatisfiedCount + NoSatisfiedCount) * 100, 2);
|
|
|
if (TotalSumCount - NoSatisfiedCount <= 0)
|
|
|
return 0;
|
|
|
- return Math.Round(((double)TotalSumCount - NoSatisfiedCount) / TotalSumCount);
|
|
|
+ return Math.Round((((double)TotalSumCount - NoSatisfiedCount) / TotalSumCount) *100,2);
|
|
|
}
|
|
|
|
|
|
|