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.