|
@@ -24,9 +24,9 @@ public class MetricsDTO {
|
|
|
this.impressions += metricsDTO.impressions;
|
|
|
this.clicks += metricsDTO.clicks;
|
|
|
|
|
|
- this.ctr += metricsDTO.ctr;
|
|
|
- this.averageCpc += metricsDTO.averageCpc;
|
|
|
- this.averageCpm += metricsDTO.averageCpm;
|
|
|
+ this.ctr = Math.max(this.ctr, metricsDTO.ctr);
|
|
|
+ this.averageCpc = Math.max(this.averageCpc, metricsDTO.averageCpc);
|
|
|
+ this.averageCpm = Math.max(this.averageCpm, metricsDTO.averageCpm);
|
|
|
|
|
|
this.conversions += metricsDTO.conversions;
|
|
|
|