kar_erp_next 0.0.1
kar_erp_next: ^0.0.1 copied to clipboard
Flutter package to connect to ERPNext instance and provide all functionalities
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 #
- Login to ERPNext instance
- Get company details
- Get Chart of Accounts
- Get Trial Balance
- Get Profit and Loss Statement
- 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.