attendence records, extra hours , rewards and punishment funnctionality have been added

This commit is contained in:
Daniah Ayad Al-sultani
2026-02-10 16:27:08 +03:00
parent cd7ba8e9d5
commit 1002937045
25 changed files with 1048 additions and 181 deletions

View File

@@ -0,0 +1,16 @@
import 'finance_record.dart';
class OvertimeModel extends FinanceRecord {
final double hours;
final double hourlyRateAtTheTime;
final double totalAmount;
OvertimeModel({
required super.id,
required super.employeeId,
super.date,
required this.hours,
required this.hourlyRateAtTheTime,
required this.totalAmount,
});
}