Git Product home page Git Product logo

gianni-s_inventory's Introduction

Gianni's Inventory

This is a simple inventory management system made for counting and tracking in the quickest way possible items in a warehouse. It was made initially for tobacco shops to count cigarettes, but it can be easily adapted to any other kind of item.

Gianni's Inventory has got the following features:

  • Add items to the inventory
  • Remove items from the inventory
  • Edit items in the inventory
  • Save/Undo changes
  • Search items in the inventory
  • STAQ Mode (Scan barcode to add quantity)
  • Export inventory to CSV
  • Import inventory from CSV

Moreover, Gianni's Inventory can be run in different machines simultaneously, and it will automatically sync the inventory between them. However, items in the inventory can be modified only in one instance at a time: if one instance has got some pending changes, other instances will not be able to modify the inventory until the changes are saved or undone. This is particularly useful when you have multiple stores / warehouses.

Usage

Basic functionalities: Basic Usage

Edit quantity (absolute and incremental): Quantity can be edited by typing the new absolute quantity or by adding/subtracting a certain quantity to the current one using "=" suffix. Edit Quantity

Search and STAQ (Scan To Add Quantity) Mode: Search and STAQ Mode

Install PostgreSQL Server

Install PostgreSQL Server on your machine following the instructions at https://www.postgresql.org/download/.

Create database and user with the following commands on your server machine:

sudo -u postgres psql
CREATE DATABASE inventory;
CREATE USER <yourusername> WITH ENCRYPTED PASSWORD '<yourpass>';
GRANT ALL PRIVILEGES ON DATABASE inventory TO <yourusername>;

gianni-s_inventory's People

Contributors

tollsimy avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

gianni-s_inventory's Issues

Fix

  • Inserting already existing item does not show alert
  • Updating already existing barcode make app crash
  • Block editing table when STAQ Mode
  • 13 barcodes not working, catching 8 first

TODO

  • Fix ordering by integer and not by string on integer columns
  • add independency from database, need to fix table types and add product.
  • Show all / hide buttons and select (all / none)
  • Enlarge/shrink columns

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.