-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTODO.txt
42 lines (32 loc) · 1.9 KB
/
TODO.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
################# Dcare Pending tasks ################
======= General ============
Create a service for prefetching templates.
service($http, $templateCache)
//Prefetch Templates
var non_state_linked_templates = [
'views/common-templates/date_filter.html',
'views/common-templates/list_action_sheet.html',
'views/dashboard/notification_details.html',
'views/feedback/about.html',
'views/meals/food_entry.html',
'views/meals/meals_list.html',
'views/vitals/vitals_snapshot_card.html'
];
for (i = 0; i < non_state_linked_templates.length; i++) {
var template = non_state_linked_templates[i];
if (!$templateCache.get(template)) { //prevent the prefetching if the template is already in the cache
$http.get(template).success(function (t) {
$templateCache.put(template, t);
});
}
}
======= Dashboard =======
======= Registration =======
======= Medication =========
** @@ could implement a medicine stock tracking logic, which keeps track of remaining medicine stock and alert accordingly to refill the stock.
======= Reminders ==========
## Reminders : currently it is possible to set multiple reminders for same medication/orignator. coz. there is no provision for maintaining
reference of reminder <=> medication. Try to build up a generic relationship provision , and also filtering mechanism in reminders.
======= Glucose ============
======= Vitals ============
## BMI calculation not working for data entered while on registration page.