2 // We need a few arrays to populate project and task dropdowns.
3 // When client selection changes, the project dropdown must be re-populated with only relevant projects.
4 // When project selection changes, the task dropdown must be repopulated similarly.
6 // project_ids[143] = "325,370,390,400"; // Comma-separated list of project ids for client.
7 // project_names[325] = "Time Tracker"; // Project name.
8 // task_ids[325] = "100,101,302,303,304"; // Comma-separated list ot task ids for project.
9 // task_names[100] = "Coding"; // Task name.
11 //Prepare an array of projects ids for clients.
12 project_ids = new Array();
13 {foreach $client_list as $client}
14 project_ids[{$client.id}] = "{$client.projects}";
16 // Prepare an array of project names.
17 project_names = new Array();
18 {foreach $project_list as $project}
19 project_names[{$project.id}] = "{$project.name|escape:'javascript'}";
21 // We'll use this array to populate project dropdown when client is not selected.
23 projects = new Array();
24 {foreach $project_list as $project}
25 projects[idx] = new Array("{$project.id}", "{$project.name|escape:'javascript'}");
29 // Prepare an array of task ids for projects.
30 task_ids = new Array();
31 {foreach $project_list as $project}
32 task_ids[{$project.id}] = "{$project.tasks}";
34 // Prepare an array of task names.
35 task_names = new Array();
36 {foreach $task_list as $task}
37 task_names[{$task.id}] = "{$task.name|escape:'javascript'}";
40 // Mandatory top options for project and task dropdowns.
41 empty_label_project = '{$i18n.dropdown.select|escape:'javascript'}';
42 empty_label_task = '{$i18n.dropdown.select|escape:'javascript'}';
44 // The fillDropdowns function populates the "project" and "task" dropdown controls
45 // with relevant values.
46 function fillDropdowns() {
47 if(document.body.contains(document.timeRecordForm.client))
48 fillProjectDropdown(document.timeRecordForm.client.value);
50 fillTaskDropdown(document.timeRecordForm.project.value);
53 // The fillProjectDropdown function populates the project combo box with
54 // projects associated with a selected client (client id is passed here as id).
55 function fillProjectDropdown(id) {
56 var str_ids = project_ids[id];
58 var dropdown = document.getElementById("project");
59 // Determine previously selected item.
60 var selected_item = dropdown.options[dropdown.selectedIndex].value;
62 // Remove existing content.
64 var project_reset = true;
65 // Add mandatory top option.
66 dropdown.options[0] = new Option(empty_label_project, '', true);
68 // Populate project dropdown.
70 // If we are here, client is not selected.
71 var len = projects.length;
72 for (var i = 0; i < len; i++) {
73 dropdown.options[i+1] = new Option(projects[i][1], projects[i][0]);
74 if (dropdown.options[i+1].value == selected_item) {
75 dropdown.options[i+1].selected = true;
76 project_reset = false;
80 var ids = new Array();
81 ids = str_ids.split(",");
84 for (var i = 0; i < len; i++) {
86 dropdown.options[i+1] = new Option(project_names[p_id], p_id);
87 if (dropdown.options[i+1].value == selected_item) {
88 dropdown.options[i+1].selected = true;
89 project_reset = false;
94 // If project selection was reset - clear the tasks dropdown.
96 dropdown = document.getElementById("task");
98 dropdown.options[0] = new Option(empty_label_task, '', true);
102 // The fillTaskDropdown function populates the task combo box with
103 // tasks associated with a selected project (project id is passed here as id).
104 function fillTaskDropdown(id) {
105 var str_ids = task_ids[id];
107 var dropdown = document.getElementById("task");
108 if (dropdown == null) return; // Nothing to do.
110 // Determine previously selected item.
111 var selected_item = dropdown.options[dropdown.selectedIndex].value;
113 // Remove existing content.
115 // Add mandatory top option.
116 dropdown.options[0] = new Option(empty_label_task, '', true);
118 // Populate the dropdown from the task_names array.
120 var ids = new Array();
121 ids = str_ids.split(",");
122 var len = ids.length;
125 for (var i = 0; i < len; i++) {
127 if (task_names[t_id]) {
128 dropdown.options[idx] = new Option(task_names[t_id], t_id);
133 // If a previously selected item is still in dropdown - select it.
134 if (dropdown.options.length > 0) {
135 for (var i = 0; i < dropdown.options.length; i++) {
136 if (dropdown.options[i].value == selected_item) {
137 dropdown.options[i].selected = true;
144 // The formDisable function disables some fields depending on what we have in other fields.
145 function formDisable(formField) {
146 formFieldValue = eval("document.timeRecordForm." + formField + ".value");
147 formFieldName = eval("document.timeRecordForm." + formField + ".name");
149 if (((formFieldValue != "") && (formFieldName == "start")) || ((formFieldValue != "") && (formFieldName == "finish"))) {
150 var x = eval("document.timeRecordForm.duration");
153 x.style.background = "#e9e9e9";
156 if (((formFieldValue == "") && (formFieldName == "start") && (document.timeRecordForm.finish.value == "")) || ((formFieldValue == "") && (formFieldName == "finish") && (document.timeRecordForm.start.value == ""))) {
157 var x = eval("document.timeRecordForm.duration");
160 x.style.background = "white";
163 if ((formFieldValue != "") && (formFieldName == "duration")) {
164 var x = eval("document.timeRecordForm.start");
167 x.style.background = "#e9e9e9";
168 var x = eval("document.timeRecordForm.finish");
171 x.style.background = "#e9e9e9";
174 if ((formFieldValue == "") && (formFieldName == "duration")) {
175 var x = eval("document.timeRecordForm.start");
177 x.style.background = "white";
178 var x = eval("document.timeRecordForm.finish");
180 x.style.background = "white";
184 // The setNow function fills a given field with current time.
185 function setNow(formField) {
186 var x = eval("document.timeRecordForm.start");
188 x.style.background = "white";
189 var x = eval("document.timeRecordForm.finish");
191 x.style.background = "white";
192 var today = new Date();
193 var time_format = '{$user->time_format}';
194 var obj = eval("document.timeRecordForm." + formField);
195 obj.value = today.strftime(time_format);
196 formDisable(formField);
199 function get_date() {
200 var date = new Date();
201 return date.strftime("%Y-%m-%d");
211 <table cellspacing="3" cellpadding="0" border="0" width="100%">
213 <td class="sectionHeaderNoBorder" align="right"><a href="time.php?date={$prev_date}"><<</a></td>
214 <td class="sectionHeaderNoBorder" align="center">{$timestring}</td>
215 <td class="sectionHeaderNoBorder" align="left"><a href="time.php?date={$next_date}">>></a></td>
219 <table cellspacing="3" cellpadding="0" border="0" width="100%">
223 <table border='0' cellpadding='4' cellspacing='1' width="100%">
224 {foreach $time_records as $record}
225 <tr bgcolor="{cycle values="#ccccce,#f5f5f5"}" {if !$record.billable} class="not_billable" {/if}>
226 {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
227 <td valign='top'>{$record.project|escape:'html'}</td>
229 <td align='right' valign='top'>{if ($record.duration == '0:00' && $record.start <> '')}<font color="#ff0000">{/if}{$record.duration}{if ($record.duration == '0:00' && $record.start <> '')}</font>{/if}</td>
230 <td align='center'>{if $record.invoice_id} {else}<a href='time_edit.php?id={$record.id}'>{$i18n.label.edit}</a>{/if}</td>
236 <td align='right'>{$i18n.label.day_total}:</td>
237 <td>{$day_total}</td>
245 {$forms.timeRecordForm.open}
246 <table cellspacing="4" cellpadding="7" border="0">
249 <table width = "100%">
253 {if $user->isPluginEnabled('cl')}
254 <tr><td>{$i18n.label.client}:</td></tr>
255 <tr><td>{$forms.timeRecordForm.client.control}</td></tr>
257 {if $user->isPluginEnabled('iv')}
258 <tr><td><label>{$forms.timeRecordForm.billable.control}{$i18n.form.time.billable}</label></td></tr>
260 {if ($custom_fields && $custom_fields->fields[0])}
261 <tr><td>{$custom_fields->fields[0]['label']|escape:'html'}:</td></tr>
262 <tr><td>{$forms.timeRecordForm.cf_1.control}</td></tr>
264 {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
265 <tr><td>{$i18n.label.project}:</td></tr>
266 <tr><td>{$forms.timeRecordForm.project.control}</td></tr>
268 {if ($smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
269 <tr><td>{$i18n.label.task}:</td></tr>
270 <tr><td>{$forms.timeRecordForm.task.control}</td></tr>
272 {if (($smarty.const.TYPE_START_FINISH == $user->record_type) || ($smarty.const.TYPE_ALL == $user->record_type))}
273 <tr><td>{$i18n.label.start}:</td></tr>
274 <tr><td>{$forms.timeRecordForm.start.control} <input onclick="setNow('start');" type="button" value="{$i18n.button.now}"></td></tr>
276 <tr><td>{$i18n.label.finish}:</td></tr>
277 <tr><td>{$forms.timeRecordForm.finish.control} <input onclick="setNow('finish');" type="button" value="{$i18n.button.now}"></td></tr>
279 {if (($smarty.const.TYPE_DURATION == $user->record_type) || ($smarty.const.TYPE_ALL == $user->record_type))}
280 <tr><td>{$i18n.label.duration}:</td></tr>
281 <tr><td>{$forms.timeRecordForm.duration.control}</td></tr>
284 <tr><td>{$i18n.label.note}:</td></tr>
285 <tr><td>{$forms.timeRecordForm.note.control}</td></tr>
290 <td colspan="2" height="50" align="center">{$forms.timeRecordForm.btn_submit.control}</td>
296 {$forms.timeRecordForm.close}