This is a package to login to ERPNext instance and show basic details like Trial Balance, Profit and Loss Account, Balance Sheet etc.

Email to info@karmalaya.in, with suggestions for improvements and if you need any further functionalities to be added to the package.

Features

  1. Login to ERPNext instance
  2. Get company details
  3. Get Chart of Accounts
  4. Get Trial Balance
  5. Get Profit and Loss Statement
  6. Get Balance Sheet

Getting started

Add the package to your application and pass the link to your ERPNext instance.

Usage

Add KarErpNext 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.

//for showing the widget without any size restriction

@override
Widget build(BuildContext context) {
  return KarERPNext(myERPNextInstance, false);
}


//for showing the widget with height restriction

@override
Widget build(BuildContext context) {
  return SizedBox(
      height:200,
      child:KarERPNext(myERPNextInstance, true)
  );
}

Additional information

ERPNext has a lot of functionalities. This package is just a basic version to show that ERPNext can be connected and some basic details can be displayed.

Additional functionalities will be added in future. Write to info@karmalaya.in with details of what functionalities can be added to this package.