|
|
@@ -101,10 +101,10 @@ namespace CallCenterApi.Interface.Controllers.quality
|
|
101
|
101
|
{
|
|
102
|
102
|
dModel.F_Sort = Convert.ToInt32(sort.Trim());
|
|
103
|
103
|
}
|
|
104
|
|
- if (!string.IsNullOrWhiteSpace(sort.Trim()))
|
|
105
|
|
- {
|
|
106
|
|
- dModel.F_Score = Convert.ToInt32(sort.Trim());
|
|
107
|
|
- }
|
|
|
104
|
+ //if (!string.IsNullOrWhiteSpace(sort.Trim()))
|
|
|
105
|
+ //{
|
|
|
106
|
+ // dModel.F_Score = Convert.ToInt32(sort.Trim());
|
|
|
107
|
+ //}
|
|
108
|
108
|
if (!string.IsNullOrWhiteSpace(title.Trim()))
|
|
109
|
109
|
{
|
|
110
|
110
|
dModel.F_Title = WebHelper.UrlDecode(title.Trim());
|
|
|
@@ -116,7 +116,7 @@ namespace CallCenterApi.Interface.Controllers.quality
|
|
116
|
116
|
|
|
117
|
117
|
if (!string.IsNullOrWhiteSpace(score))
|
|
118
|
118
|
{
|
|
119
|
|
- dModel.F_Score = Convert.ToInt32( score.Trim());
|
|
|
119
|
+ dModel.F_Score = Convert.ToDouble( score.Trim());
|
|
120
|
120
|
}
|
|
121
|
121
|
|
|
122
|
122
|
|
|
|
@@ -156,7 +156,7 @@ namespace CallCenterApi.Interface.Controllers.quality
|
|
156
|
156
|
}
|
|
157
|
157
|
if (!string.IsNullOrWhiteSpace(score.Trim()))
|
|
158
|
158
|
{
|
|
159
|
|
- dModel.F_Score = Convert.ToInt32(score);
|
|
|
159
|
+ dModel.F_Score = Convert.ToDouble(score);
|
|
160
|
160
|
}
|
|
161
|
161
|
if (!string.IsNullOrWhiteSpace(title.Trim()))
|
|
162
|
162
|
{
|