Compare commits
48 Commits
f75ffc63d3
...
552518cfe1
| Author | SHA1 | Date |
|---|---|---|
|
|
552518cfe1 | |
|
|
6dbb39ae69 | |
|
|
d2c91f20dd | |
|
|
bc3fe02f96 | |
|
|
c3bfc9f84d | |
|
|
c4c921f3a3 | |
|
|
206e9d6c3b | |
|
|
16fcd6efb1 | |
|
|
b419913fe1 | |
|
|
fbc29e4ef1 | |
|
|
912ffc4afc | |
|
|
5c061a1bf1 | |
|
|
bfd79d42b8 | |
|
|
6fb1047ea8 | |
|
|
42a55eba7d | |
|
|
41e1d5c76b | |
|
|
0811863d41 | |
|
|
ce42a4c1e3 | |
|
|
627b4fa799 | |
|
|
0ee3943892 | |
|
|
9be4174309 | |
|
|
9b565b6746 | |
|
|
011d75baf1 | |
|
|
1c6cd50ea9 | |
|
|
6cedda73ca | |
|
|
653af0702d | |
|
|
a8c161d969 | |
|
|
6ac7199b55 | |
|
|
7e5e49af9f | |
|
|
db49307dad | |
|
|
51f19eea91 | |
|
|
177f4c4161 | |
|
|
4ec6c1a33b | |
|
|
aacf24880f | |
|
|
88848197ee | |
|
|
6dd301e365 | |
|
|
f98af9f9ee | |
|
|
b669ac988b | |
|
|
bb31c591fb | |
|
|
5c37d6895e | |
|
|
689d999c37 | |
|
|
3a80c6cd8c | |
|
|
2600cc713d | |
|
|
fce43c3721 | |
|
|
d3049e1368 | |
|
|
dce09293c5 | |
|
|
5eb39bf12b | |
|
|
2bd85ae939 |
|
|
@ -309,6 +309,7 @@ attendanceLines.forEach(line => {
|
|||
const dateStr = createDate.toLocaleDateString('en-IN', { timeZone: 'Asia/Kolkata' });
|
||||
|
||||
const workedHours = parseFloat(line.worked_hours);
|
||||
const working_hours = ''
|
||||
const checkIn = new Date(line.check_in + 'Z');
|
||||
const checkOut = new Date(line.check_out + 'Z');
|
||||
|
||||
|
|
@ -319,6 +320,7 @@ attendanceLines.forEach(line => {
|
|||
groupedLines[dateStr] = {
|
||||
create_date: dateStr,
|
||||
worked_hours: workedHours,
|
||||
working_hours: `${Math.floor(workedHours)}h ${Math.round((workedHours - Math.floor(workedHours)) * 60)}m`,
|
||||
check_in: checkInStr,
|
||||
check_out: checkOutStr,
|
||||
earliestCheckIn: checkIn,
|
||||
|
|
@ -345,6 +347,7 @@ attendanceLines.forEach(line => {
|
|||
const groupedAttendance = Object.values(groupedLines).map(line => ({
|
||||
create_date: line.create_date,
|
||||
worked_hours: line.worked_hours.toFixed(2),
|
||||
working_hours :line.working_hours,
|
||||
check_in: line.check_in,
|
||||
check_out: line.check_out
|
||||
}));
|
||||
|
|
|
|||
|
|
@ -219,7 +219,7 @@
|
|||
</td>
|
||||
<td t-esc="line['check_out']">
|
||||
</td>
|
||||
<td t-esc="line['worked_hours']">
|
||||
<td t-esc="line['working_hours']">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
|
|||
Loading…
Reference in New Issue