kar_erp_next 0.0.2
kar_erp_next: ^0.0.2 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 #
The package shows reports from different modules of ERPNext.
- Accounting 1.1 Company Details 1.2 Chart of Accounts 1.3 Financials 1.3.1 Trial Balance 1.3.2 Profit and Loss Account 1.3.3 Balance Sheet
- Procurement 2.1 Suppliers 2.2 Purchase Orders 2.3 Purchase Invoices
- Sales 3.1 Customers 3.2 Sales Orders 3.3 Sales Invoices
- CRM 4.1 Leads 4.2 Opportunities 4.3 Campaigns
- Stock 5.1 Items 5.2 Warehouses 5.3 Item Prices
- Manufacturing 6.1 Work Orders 6.2 BOM 6.3 Production Planning
- Projects 7.1 Projects 7.2 Tasks 7.3 Timesheets
- Assets 8.1 Assets 8.2 Asset Movement 8.3 Fixed Asset Register
- Quality 9.1 Quality Goals 9.2 Quality Procedure 9.3 Quality Review
- Support 10.1 Issues 10.2 Maintenance Schedule 10.3 Maintenance Visit
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.