Changes between Version 28 and Version 29 of AdvancedReports
- Timestamp:
- 03/10/22 21:33:42 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdvancedReports
v28 v29 103 103 *, 104 104 ( 105 106 107 108 109 110 111 112 105 select to_char( 106 ( 107 select 108 count(*) 109 from artists a 110 where 111 a.admin_verified_at is not null and 112 a.artist_type_id = at1.id 113 113 ) 114 114 / 115 115 ( 116 select count(*) from artists a 117 where 118 a.admin_verified_at is not null 116 select 117 count(*) 118 from artists a 119 where 120 a.admin_verified_at is not null 119 121 )::numeric , 120 122 'fm00D00%' … … 124 126 select to_char( 125 127 ( 126 127 128 129 130 131 132 128 select 129 count(*) 130 from artists a 131 where 132 a.admin_verified_at is not null and 133 a.artist_type_id = at1.id and 134 a.manager_id is not null 133 135 ) 134 136 / 135 137 ( 136 select count(*) from artists a 137 where 138 a.admin_verified_at is not null 138 select 139 count(*) 140 from artists a 141 where 142 a.admin_verified_at is not null 139 143 )::numeric * 100, 140 144 'fm00D00%' … … 155 159 ( 156 160 case when ( 157 158 159 160 161 162 163 164 161 select 162 count(*) 163 from artists a 164 join offers o on o.artist_id = a.user_id 165 where 166 a.admin_verified_at is not null and 167 a.artist_type_id = at1.id 168 ) != 0 then 165 169 ( 166 170 select … … 195 199 ( 196 200 case when ( 197 198 199 200 201 202 203 204 201 select 202 count(*) 203 from artists a 204 join offers o on o.artist_id = a.user_id 205 where 206 a.admin_verified_at is not null and 207 a.artist_type_id = at1.id 208 ) != 0 then 205 209 ( 206 210 select … … 235 239 ( 236 240 case when ( 237 238 239 240 241 242 243 244 241 select 242 count(*) 243 from artists a 244 join offers o on o.artist_id = a.user_id 245 where 246 a.admin_verified_at is not null and 247 a.artist_type_id = at1.id 248 ) != 0 then 245 249 ( 246 250 select … … 275 279 ( 276 280 case when ( 277 278 279 280 281 282 283 284 281 select 282 count(*) 283 from artists a 284 join offers o on o.artist_id = a.user_id 285 where 286 a.admin_verified_at is not null and 287 a.artist_type_id = at1.id 288 ) != 0 then 285 289 ( 286 290 select