This is a package for adding Employee Self Service (ESS) functionality available in ERPNext.
Email to info@karmalaya.in, with suggestions for improvements and if you need any further functionalities to be added to the package.
Features
The current version of the package only shows a few lists relating to ESS.
1. Leaves List of leave applications are displayed 2. Expenses List of expenses claim are displayed 3. Attendance List of attendance are displayed 4. Performance List of appraisals are displayed 5. Recuritment List of referrals are displayed 6. Lifecycle List of grievances are displayed
Getting started
Install HRMS module to your ERPNext instance Add the package to your application and pass the link to your ERPNext instance.
Usage
Add KarErpnextEss package into your build function as any other widget. Pass the link to your instance as a parameter to the widget.
Below is a simple example.
String myERPNextInstance = "https://yourinstance.erpnext.com";
//for showing the widget without any size restriction
@override
Widget build(BuildContext context) {
return KarErpnextEss(myERPNextInstance, false);
}
//for showing the widget with height restriction
@override
Widget build(BuildContext context) {
return SizedBox(
height:200,
child:KarErpnextEss(myERPNextInstance, true)
);
}
Additional information
This is an initial version for the Employee Self Service functionality available in ERPNext. Only few read only list are displayed in this version.
Additional functionalities will be added in future. Write to info@karmalaya.in with details of what functionalities can be added to this package.
Libraries
- data/constants
- data/erpnext_api
- data/models/appraisal_model
- data/models/attendance_model
- data/models/expenses_model
- data/models/grievance_model
- data/models/leave_model
- data/models/referral_model
- kar_erpnext_ess
- presentation/widgets/appraisal_widget
- presentation/widgets/attendance_widget
- presentation/widgets/custom_input_widget
- presentation/widgets/dashboard_widget
- presentation/widgets/expenses_widget
- presentation/widgets/grievance_widget
- presentation/widgets/leaves_widget
- presentation/widgets/login_widget
- presentation/widgets/my_alert_dialog
- presentation/widgets/progress_indicator
- presentation/widgets/referral_widget