The Wayback Machine - https://web.archive.org/web/20240106065818/https://github.com/inoerp
Skip to content
View inoerp's full-sized avatar
  • Stockholm
Block or Report

Block or report inoerp

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
inoerp/README.md

inoERP is an OneApp (Go back-end & Flutter front-end) based enterprise management system. The ERP systems contain all the required modules for running small to midsize businesses. The features are similar to Oracle R12/ Cloud Application and SAP ECC/Hana S/4.

The application uses MySQL database and OneApp JavaScript APIs to create business logic. All the database and javascript codes are available on GitHub.

The client is available for Andriod, iOS, macOS, Windows, and Web.

The server is available for Windows, macOS, and Linux.

Documentation: http://docs.inoerp.com

REST APIs http://api.inoerp.com

Web Demo:

Contact : contact@rikdata.com, rikdata.com@gmail.com

The web client is experimental and doesn't have all functionalities of native clients (Windows/macOS/Andriod/iOS). The performance of the web is also not at the same level as a native client. So, try the application with a native client and use the above URL in your native client.

Server


MySQL

  1. Install MySQL Ver 8.0.+
  2. Change MySQL settings on the config.json file
{
      "dbConnName": "Inoerp",
      "dbType": "MySQL",
      "host": "localhost",
      "portNumber": 3306,
      "dbName": "inoerp",
      "userName": "YourDbUserName",
      "password": "YourDbPassword",
      "connPoll": 5,
      "maxConnPoll": 10,
      "defaultRowLimit": 5
    }

  1. Import the database
mysql -u root -p < /home/files/inoerp.sql

database file is available @ assets\db\mysql folder

The import process will create the required inoerp schema.

CREATE DATABASE  IF NOT EXISTS `inoerp` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
USE `inoerp`;
SET GLOBAL log_bin_trust_function_creators = 1;

Ensure SET GLOBAL log_bin_trust_function_creators = 1;

Settings

  1. Enter server hostname and port on the config.json file
  "application": {
    "protocol": "http://",
    "hostName": "localhost",
    "portNumber": 8085,
    "certFile": "",
    "keyFile": ""
  },

  1. Change any other settings on the config.json file as per business requirement

Start/Stop

You can start the server like any other application. You can stop the server using OneApp Desktop/Mobile client. You can also send a REST request to Your host/stop to stop the application. To send a stop request, you must have admin authority.

 ./oneapp_win.exe
 

or in Linux

nohup ./oneapp_linux &
 

Client

Access the application using any client of your choice. The clients are available for

  • Andriod
  • Windows
  • macOS
  • iOS
  • Web

Download Client

The console will show you a message stating the host and port when the server starts. Server start should not take more than 10-15 seconds.

Starting server @ localhost:8085
 

Open the application in a browser and test that you can login with the default username and password (admin/admin)

Click on the sign-in button, and the system will redirect you to the dashboard.

:::caution

The web client is experimental and doesn't have all functionalities of native clients (Windows/macOS/Andriod/iOS). The performance of the web is also not at the same level as a native client. So, try the application with a native client and use the above URL in your native client.

:::

Read how to configure and use any client @ OneApp

Modules


Below are the fully functional ERP Modules available in inoERP

General Ledger (GL)

Chart of Accounts inoERP allows a multi-segment accounting structure that you can use to represent all segments of a business transaction. Ex : 001-100-1020202-0100-100 Where 001 – Represents a specific company/business unit /legal entity 100 – Represents a cost center 1020202 – a Natural account such as Asset, Liability, Expense, Income, or Owners Equity

  1. Calendars Define as many different financial calendars as required Ex: One calendar INO_CORP for Corporate and INO_USA, INO_UK for specific countries
  2. Account Combinations
  3. Currency & Conversions
  4. Ledger: A set of a calendar, currency, and chart of accounts
  5. Banks
  6. Journal

Accounts Payable(AP)

  1. Suppliers
  2. AP Transactions
  • 2.1 Invoices
  • 2.2 Debit Memo
  • 2.3 Credit Memo
  1. PO/Transaction Matching
  2. Multi select matching
  3. AP Payments
  • 5.1 Single Invoice Payment
  • 5.2 Multi select Payment
  1. Transfer Journals to GL

Accounts Receivable(AR)

  1. Customer
  2. AR Transactions
  • 2.1 Invoices
  • 2.2 Debit Memo
  • 2.3 Credit Memo
  • 2.4 Deposit
  • 2.5 Guarantee
  • 2.6 Charge Back
  1. AR Payments
  • 3.1 Single Invoice Payment
  • 3.2 Multi select Payment
  1. Transfer Journals to GL

Fixed Asset Accounting(FA)

  1. Asset
  2. Depreciation
  3. Transactions
  4. Configuration

Organizations(ORG)

  1. Enterprise Org
  2. Legal Org
  3. Business Org
  4. Inventory Org 5 Address

Inventory (INV)

  1. Item Master
  2. Unit of Measure
  3. Sub inventory
  4. Locator
  5. Inventory Transactions
  6. Material Receipts
    • PO Receipt
    • IR Receipt
    • RMA Receipt
  7. Onhand Value
  8. Cycle Count
    • Cycle Count Adjustment
    • Cycle Count Approval
  9. ABC Analysis

Purchasing (PO)

  1. Purchase Order

    • Standard
    • Blanket Agreement
    • Planned PO
  2. Requisitions

    • External
    • Internal
  3. RFQ / Quote

  4. Approval for PO, Requisition

Sales & Distributions (SD)

  1. Sales Order - Creation & Auto Booking
  2. Sales Picking
  3. Delivery & Shipment
  4. Auto AR Invoice

Bills Of Material (BOM)

  1. Departments
  2. Resources
  3. Routing
  4. BOM
  5. Super BOM

Costing (CST)

  1. Material Element
  2. Material OH
  3. Overhead
  4. Resources
  5. Standard Cost
  6. Cost Roll Up
  7. Cost Update

Work in Process (WIP)

  1. Work Order
  2. WIP Move Transactions
  3. WIP Resource Transactions
  4. WIP Material Transaction
  5. WO Completion/Return

Supply Chain Planning (SCP)

  1. Forecast
  2. MDS
  3. MRP
  4. Min-Max Planning
    • Multi Bin Min Max

Human Resource (HR)

  1. Employee
    • Education
    • Experience
    • Planned PO
  2. Job
  3. Position
  4. Compensation & Payroll
  5. Leave System
  6. Approval Hierarchy

Basic Features

  1. Options
  2. Value Groups
  3. Transaction Types
  4. Custom Reporting
  5. Search
  6. Multi Select
  7. Mass Upload

Admin

  1. User
  2. Roles and Role Base Access Control
  3. Notification
  4. Document Approval

Modules Under Development


  1. Project System
  2. Asset Maintenance
  3. HelpDesk

Dynamic pull System


The idea behind inoERP is to provide a dynamic pull-based system where the demand /supply changes frequently and traditional planning systems (such as MRP or Kanban) are incompetent to provide a good inventory turn.

A dynamic pull system is an advanced version of a pull system that encompasses the best feature of the traditional pull system & MRP. The major disadvantage of the conventional Kanban system is the fixed Kanban size and requirement of at least two bins for the entire operation. In a sudden demand decrease, the Kanban system can result in extra inventory, and the value of unused inventory can go up to 2 bin size. Similarly, In case of unexpected demand increases can result in a line down, and the issue will be severe if the lead times are not short.

The dynamic pull system overcomes this issue by recalculating the bucket size (Kanban size/lot size) before creating any supply (requisitions/purchase order/work order). Each time a new supply is created, the system automatically decides the best supply size per the actual demand.

The old PHP version of inoERP is available @ https://github.com/php-inoerp/inoERP

Popular repositories

  1. inoERP inoERP Public

    inoERP is an OneApp [ Go back-end & Flutter front-end ] based enterprise management system

    JavaScript 714 678

  2. smart-view smart-view Public archive

    A reporting tool for Oracle EBS R12 based on inoERP Framework

    PHP 2 1

  3. inoerp.github.io inoerp.github.io Public

    Rich Text Format 1 16

  4. markdown-here markdown-here Public

    Forked from adam-p/markdown-here

    Google Chrome, Firefox, and Thunderbird extension that lets you write email in Markdown and render it before sending.

    JavaScript 1

  5. zebraRfid2 zebraRfid2 Public

    Forked from jiang6641/zebraRfid

    zebra rfid scaning flutter plugin

    Java

  6. icharts icharts Public

    Forked from google/charts

    forked from google/charts and updated to run on the latest SDKs and packages

    Dart 1

28 contributions in the last year

No contributions on January 1st.No contributions on January 8th.No contributions on January 15th.No contributions on January 22nd.No contributions on January 29th.No contributions on February 5th.3 contributions on February 12th.No contributions on February 19th.No contributions on February 26th.No contributions on March 5th.No contributions on March 12th.No contributions on March 19th.No contributions on March 26th.No contributions on April 2nd.No contributions on April 9th.No contributions on April 16th.No contributions on April 23rd.No contributions on April 30th.No contributions on May 7th.No contributions on May 14th.No contributions on May 21st.No contributions on May 28th.No contributions on June 4th.No contributions on June 11th.No contributions on June 18th.No contributions on June 25th.No contributions on July 2nd.1 contribution on July 9th.No contributions on July 16th.No contributions on July 23rd.No contributions on July 30th.No contributions on August 6th.No contributions on August 13th.No contributions on August 20th.No contributions on August 27th.No contributions on September 3rd.No contributions on September 10th.No contributions on September 17th.No contributions on September 24th.No contributions on October 1st.No contributions on October 8th.No contributions on October 15th.No contributions on October 22nd.No contributions on October 29th.No contributions on November 5th.No contributions on November 12th.No contributions on November 19th.No contributions on November 26th.No contributions on December 3rd.No contributions on December 10th.No contributions on December 17th.No contributions on December 24th.No contributions on December 31st.No contributions on January 2nd.No contributions on January 9th.No contributions on January 16th.No contributions on January 23rd.No contributions on January 30th.No contributions on February 6th.No contributions on February 13th.1 contribution on February 20th.No contributions on February 27th.1 contribution on March 6th.No contributions on March 13th.No contributions on March 20th.No contributions on March 27th.No contributions on April 3rd.No contributions on April 10th.No contributions on April 17th.No contributions on April 24th.No contributions on May 1st.No contributions on May 8th.No contributions on May 15th.No contributions on May 22nd.No contributions on May 29th.No contributions on June 5th.No contributions on June 12th.No contributions on June 19th.No contributions on June 26th.No contributions on July 3rd.No contributions on July 10th.No contributions on July 17th.No contributions on July 24th.No contributions on July 31st.No contributions on August 7th.No contributions on August 14th.No contributions on August 21st.No contributions on August 28th.No contributions on September 4th.No contributions on September 11th.No contributions on September 18th.No contributions on September 25th.No contributions on October 2nd.No contributions on October 9th.1 contribution on October 16th.No contributions on October 23rd.No contributions on October 30th.No contributions on November 6th.No contributions on November 13th.No contributions on November 20th.No contributions on November 27th.No contributions on December 4th.No contributions on December 11th.No contributions on December 18th.No contributions on December 25th.No contributions on January 1st.No contributions on January 3rd.No contributions on January 10th.No contributions on January 17th.3 contributions on January 24th.1 contribution on January 31st.1 contribution on February 7th.No contributions on February 14th.No contributions on February 21st.No contributions on February 28th.No contributions on March 7th.No contributions on March 14th.No contributions on March 21st.No contributions on March 28th.No contributions on April 4th.1 contribution on April 11th.No contributions on April 18th.No contributions on April 25th.No contributions on May 2nd.No contributions on May 9th.No contributions on May 16th.2 contributions on May 23rd.No contributions on May 30th.No contributions on June 6th.No contributions on June 13th.No contributions on June 20th.No contributions on June 27th.No contributions on July 4th.No contributions on July 11th.No contributions on July 18th.No contributions on July 25th.No contributions on August 1st.No contributions on August 8th.No contributions on August 15th.No contributions on August 22nd.No contributions on August 29th.No contributions on September 5th.No contributions on September 12th.No contributions on September 19th.No contributions on September 26th.No contributions on October 3rd.No contributions on October 10th.No contributions on October 17th.No contributions on October 24th.No contributions on October 31st.No contributions on November 7th.No contributions on November 14th.No contributions on November 21st.No contributions on November 28th.No contributions on December 5th.No contributions on December 12th.No contributions on December 19th.No contributions on December 26th.No contributions on January 2nd.No contributions on January 4th.No contributions on January 11th.No contributions on January 18th.1 contribution on January 25th.No contributions on February 1st.No contributions on February 8th.No contributions on February 15th.No contributions on February 22nd.No contributions on March 1st.No contributions on March 8th.No contributions on March 15th.No contributions on March 22nd.No contributions on March 29th.No contributions on April 5th.No contributions on April 12th.No contributions on April 19th.No contributions on April 26th.No contributions on May 3rd.No contributions on May 10th.No contributions on May 17th.No contributions on May 24th.1 contribution on May 31st.No contributions on June 7th.No contributions on June 14th.No contributions on June 21st.2 contributions on June 28th.No contributions on July 5th.No contributions on July 12th.No contributions on July 19th.No contributions on July 26th.No contributions on August 2nd.No contributions on August 9th.No contributions on August 16th.No contributions on August 23rd.No contributions on August 30th.No contributions on September 6th.No contributions on September 13th.No contributions on September 20th.No contributions on September 27th.No contributions on October 4th.No contributions on October 11th.No contributions on October 18th.No contributions on October 25th.No contributions on November 1st.No contributions on November 8th.No contributions on November 15th.No contributions on November 22nd.No contributions on November 29th.No contributions on December 6th.No contributions on December 13th.No contributions on December 20th.No contributions on December 27th.No contributions on January 3rd.No contributions on January 5th.No contributions on January 12th.No contributions on January 19th.No contributions on January 26th.No contributions on February 2nd.No contributions on February 9th.No contributions on February 16th.No contributions on February 23rd.No contributions on March 2nd.No contributions on March 9th.No contributions on March 16th.No contributions on March 23rd.No contributions on March 30th.No contributions on April 6th.No contributions on April 13th.No contributions on April 20th.No contributions on April 27th.No contributions on May 4th.No contributions on May 11th.No contributions on May 18th.No contributions on May 25th.No contributions on June 1st.No contributions on June 8th.No contributions on June 15th.1 contribution on June 22nd.No contributions on June 29th.No contributions on July 6th.No contributions on July 13th.No contributions on July 20th.No contributions on July 27th.No contributions on August 3rd.No contributions on August 10th.No contributions on August 17th.No contributions on August 24th.No contributions on August 31st.No contributions on September 7th.No contributions on September 14th.No contributions on September 21st.No contributions on September 28th.No contributions on October 5th.No contributions on October 12th.No contributions on October 19th.No contributions on October 26th.No contributions on November 2nd.No contributions on November 9th.No contributions on November 16th.No contributions on November 23rd.No contributions on November 30th.No contributions on December 7th.No contributions on December 14th.No contributions on December 21st.No contributions on December 28th.No contributions on January 4th.No contributions on January 6th.No contributions on January 13th.1 contribution on January 20th.No contributions on January 27th.No contributions on February 3rd.No contributions on February 10th.No contributions on February 17th.No contributions on February 24th.No contributions on March 3rd.No contributions on March 10th.No contributions on March 17th.No contributions on March 24th.No contributions on March 31st.No contributions on April 7th.No contributions on April 14th.No contributions on April 21st.No contributions on April 28th.No contributions on May 5th.No contributions on May 12th.No contributions on May 19th.No contributions on May 26th.No contributions on June 2nd.No contributions on June 9th.No contributions on June 16th.No contributions on June 23rd.No contributions on June 30th.No contributions on July 7th.No contributions on July 14th.1 contribution on July 21st.No contributions on July 28th.No contributions on August 4th.No contributions on August 11th.No contributions on August 18th.No contributions on August 25th.No contributions on September 1st.No contributions on September 8th.No contributions on September 15th.No contributions on September 22nd.No contributions on September 29th.No contributions on October 6th.No contributions on October 13th.No contributions on October 20th.No contributions on October 27th.No contributions on November 3rd.No contributions on November 10th.No contributions on November 17th.No contributions on November 24th.No contributions on December 1st.No contributions on December 8th.No contributions on December 15th.No contributions on December 22nd.No contributions on December 29th.No contributions on January 5th.No contributions on January 7th.No contributions on January 14th.3 contributions on January 21st.No contributions on January 28th.No contributions on February 4th.No contributions on February 11th.1 contribution on February 18th.No contributions on February 25th.No contributions on March 4th.1 contribution on March 11th.No contributions on March 18th.No contributions on March 25th.No contributions on April 1st.No contributions on April 8th.No contributions on April 15th.No contributions on April 22nd.No contributions on April 29th.No contributions on May 6th.No contributions on May 13th.No contributions on May 20th.No contributions on May 27th.No contributions on June 3rd.No contributions on June 10th.No contributions on June 17th.No contributions on June 24th.No contributions on July 1st.1 contribution on July 8th.No contributions on July 15th.No contributions on July 22nd.No contributions on July 29th.No contributions on August 5th.No contributions on August 12th.No contributions on August 19th.No contributions on August 26th.No contributions on September 2nd.No contributions on September 9th.No contributions on September 16th.No contributions on September 23rd.No contributions on September 30th.No contributions on October 7th.No contributions on October 14th.No contributions on October 21st.No contributions on October 28th.No contributions on November 4th.No contributions on November 11th.No contributions on November 18th.No contributions on November 25th.No contributions on December 2nd.No contributions on December 9th.No contributions on December 16th.No contributions on December 23rd.No contributions on December 30th.No contributions on January 6th.
Contribution Graph
Day of Week January February March April May June July August September October November December
Sunday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Less
No contributions.
Low contributions.
Medium-low contributions.
Medium-high contributions.
High contributions.
More

Contribution activity

January 2024

inoerp has no activity yet for this period.