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,17 @@
import 'finance_record.dart';
class ExtraPaymentModel extends FinanceRecord {
final double amount;
final String? note;
final bool isPenalty;
ExtraPaymentModel({
required super.id,
required super.employeeId,
super.date,
super.reason,
required this.amount,
this.note,
required this.isPenalty,
});
}