tasks
main.tasks
¤
Task definitions for project notifications using Huey.
Classes¤
Functions¤
daily_project_status_check()
¤
Daily task to check project statuses and notify leads.
Source code in main/tasks.py
77 78 79 80 81 82 83 84 | |
email_monthly_charges_report()
¤
Email the HoRSE the charges report for the last month.
Source code in main/tasks.py
274 275 276 277 278 279 280 | |
email_monthly_charges_report_logic(month, year, month_name)
¤
Logic to email the HoRSE the charges report for the last month.
Source code in main/tasks.py
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 | |
notify_funding_status()
¤
Weekly task to notify about funding status.
Source code in main/tasks.py
240 241 242 243 | |
notify_funding_status_logic(date=None)
¤
Logic for notifying the lead about funding status.
Source code in main/tasks.py
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | |
notify_left_threshold(email, lead, project_name, threshold_type, threshold, value)
¤
Huey task wrapper that calls the core notify logic.
Source code in main/tasks.py
61 62 63 64 65 66 67 68 69 70 71 72 73 | |
notify_left_threshold_logic(email, lead, project_name, threshold_type, threshold, value)
¤
Logic for notifying the lead about project status.
Source code in main/tasks.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | |
notify_monthly_days_used_exceeding_days_left()
¤
Monthly task to notify project leads and HoRSE if days used exceed days left.
Source code in main/tasks.py
432 433 434 435 | |
notify_monthly_days_used_exceeding_days_left_logic(date=None)
¤
Logic to notify project lead and HoRSE if total days used exceed days left.
This function checks each project to see if the days used for the project exceed the days left. If they do, it sends an email notification to the project lead and HoRSE.
Source code in main/tasks.py
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 | |
notify_monthly_time_logged_logic(last_month_start, last_month_name, current_month_start, current_month_name)
¤
Logic to notify users about their monthly time logged.
Source code in main/tasks.py
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | |
notify_monthly_time_logged_summary()
¤
Monthly task to notify users about their time logged.
Source code in main/tasks.py
150 151 152 153 154 155 156 157 158 159 160 161 162 | |
sync_clockify_time_entries(days_back=30, end_date=timezone.now(), page_size=1000)
¤
Task to sync time entries from Clockify API to TimeEntry model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
days_back
|
int
|
Number of days to look back for time entries. |
30
|
end_date
|
datetime
|
The end date for the time entries to fetch. |
now()
|
page_size
|
int
|
Number of entries to fetch per API call. |
1000
|
Source code in main/tasks.py
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 | |
sync_clockify_time_entries_task()
¤
Scheduled task to sync time entries from Clockify API.
Source code in main/tasks.py
372 373 374 375 376 | |