Hogyan készítsünk fantasztikus készletkezelő alkalmazást a PHP és a MySQL fájlokban

A készlet hatékony nyomon követéséhez nincs szükség felfújt vállalati szoftverre. Ez az oktatóanyag segít saját egyéni készletkövető alkalmazás kifejlesztésében, így időben és pontos készletadatok alapján intelligens készletdöntéseket hozhat.

rendszerkövetelmények

Készletrendszerünk a szokásos kereskedelmi phpGrid és phpChart licencet igényli. Néhány összetett funkcióra van szüksége.

  • PHP 5.6+ (a PHP 7.x most nagyon ajánlott! )
  • MySQL / MariaDB
  • phpGrid Lite (subgrid) -vagy- phpGrid Enterprise (Master részlet, csoportosítás)
  • phpChart (jelentésekhez)

Mi van a készletgazdálkodási rendszerben

A készletgazdálkodási rendszernek több kritikus eleme van. Lényegében a készletellenőrzés a raktár két fő funkciójának nyomon követésével működik: fogadás (bejövő) és szállítás (kimenő). Egyéb tevékenységek is megtörténnek, például a készlet mozgatása vagy áthelyezése. A nyersanyagokat csökkentik, a késztermékeket pedig növekszik.

  • Bejövő szállítmányok
  • Kimenő megrendelések
  • Leltár
  • Beszállítók
  • Vonalkódolvasó (1/2019 Új!)

Készletrendszer adatbázistervezése

A leltározási rendszernek általában négy alapvető eleme van: termékek, vásárlások, megrendelések és beszállítók. Minden elemet a helye, az SKU és a mennyiség alapján kell követni. Az aktuális készlet vagy a rendelkezésre álló termékek frissülnek a bejövő szállítások és a kimenő megrendelések nyomon követésével. A rendelési riasztások aktiválhatók, amikor a készletszintek az egyedi minimum szintek alá esnek.

A Készletkezelő adatbázis beállítása

Töltse le az InventoryManager.sqlSQL szkriptet az oktatóanyag GitHub repójából, majd futtassa le a parancsfájlt egy MySQL eszközzel, például a MySQL Workbench segítségével. Ez új adatbázist hoz létre InventoryManager, valamint az oktatóanyaghoz szükséges táblákat.

Mellékjegyzet a ZenBase-ről

The Inventory Management System is also one of the many application templates readily available at ZenBase (built on the top of phpGrid) for anyone — with or without coding skills — to use and customize for their own needs.

A phpGrid beállítása

Menjünk tovább.

A phpGrid által létrehozott datagrid komponenst használjuk az összes belső adatbázis CRUD (Létrehozás, Eltávolítás, Frissítés és Törlés) műveletek kezelésére.

A folytatás előtt feltétlenül töltse le a phpGrid másolatát.

A phpGrid telepítéséhez kövesse az alábbi lépéseket:

  1. Csomagolja ki a phpGrid letöltési fájlt.
  2. Töltse fel a phpGridmappát a phpGrid mappába.
  3. A conf.phpfájl konfigurálásával fejezze be a telepítést .

A kódolás megkezdése előtt be kell conf.phpépítenünk a következő információkat a phpGrid konfigurációs fájlba.

A felhasználói felület (UI) létrehozása

Leltárrendszerünk négy oldalból áll:

  • Jelenlegi készlet
  • Bejövő vásárlások
  • Megrendelések a hajóra
  • Jelentések

Menük

A menü tartalmazza a fájlt egy incmegnevezett mappában menu.php. A menü kódja egyszerű. Az összpontosítás kedvéért nem fogunk részletezni. Nézze meg nyugodtan a incmappában található kódot .

Hozzáadtunk egy nevű menüpontot is Reports.

Oldalak

Ugyanazt az oldalsablont fogjuk használni, amelyet a CRM és a Projektmenedzsment oktatóanyagokhoz használtunk.

Jelenlegi készlet

Kezdjük az Aktuális készlet oldallal.

A beérkező vásárlások növelik a készletet, míg a kimenő megrendelések csökkentik. Mester-részlet szempontból az Aktuális Készletnek nem egy, hanem két részlet adattáblája van - a Vásárlások (bejövő vásárlások) és a Rendelések (kimenő megrendelések).

Tehát az Aktuális készlet oldal egy fő rácsból (az aktuális készlet raktáron) és két részlet rácsból (Bejövő vásárlások és Kimenő rendelések) áll. Könnyen bemutathatjuk ezeket a kapcsolatokat a phpGrid one master és multiple detail datagrids szolgáltatás segítségével.

phpGrid Lite vs. Professional és Enterprise

Master detail and Grouping features require phpGrid Professional or Enterprise edition. If you are on the free Lite version, you can still use subgrid in place of Master detail albeit less advanced. Professional or Enterprise versions are highly recommended.

If you have read the last tutorial Building a Donation Manager from Scratch, you will have no problem following the code below.

Note the use of the set_col_format() function used to format the integers.

That’s it for the Current Inventory datagrid. Here’s what it looks like so far:

Now, let’s make a few changes to enhance our Product datagrid.

First of all, we will add some conditional formatting: whenever the InventoryOnHand is set to zero or a negative value, it is displayed using a different background color. We will use the set_conditional_format() function for this purpose.

The above code adds a display condition so that whenever the InventoryOnHand field has a value that is less than (lt) one, the text color changes to red and the background color to dark gray (#DCDCDC).

Secondly, whenever the InventoryOnHand is less than the value shown in MinimumRequired, we would like to alert the user by displaying it in a prominent background color such as gold. To compare values between two fields, we must switch to Javascript because the set_conditional_format() function only works with a single field.

The code below uses a for loop to iterate through each row in the Products datagrid. It compares the inventoryOnHand with theminimumRequired and, when the condition is met, it will use thesetCell function to change the background color.

You can learn more about comparing multiple cell values on the phpGrid support website.

Next, on the same page, we need to see the purchases coming in (Incoming) and orders going out (Outgoing) for a specific product.

Purchases Detail Grid (Incoming)

Orders Detail Grid (Outgoing)

Both detail grids use the same foreign key ProductId to link to the master datagrid (Products).

Finally, our complete code to manage the Current Inventory page is:

Here’s the a snapshot of the inventory page:

Incoming Purchases

The next page is the Incoming Purchase page. It is similar to the Purchase Detail Grid we saw when setting up the Current Inventory page. We group the purchases by ProductId and display the sum inNumberReceived. Any incoming purchases will increase the inventory.

Note: Grouping feature is only available in the phpGrid Professional and Enterprise edition. To filter without the grouping, use the integration search.

The complete code:

Here’s a screenshot of our Incoming Purchases page with grouping enabled:

Outgoing Orders

The next page is the Outgoing Orders page. It is similar to the Orders Detail Grid from the Current Inventory page. Here, we will introduce an advanced function called set_grid_method().

Summary

This tutorial builds a simple and extendable inventory system in less than 50 lines of code. The progressive style of these tutorials also helps the reader to ultimately become more familar and comfortable with phpGrid by introducing a limited number of new phpGrid features in each one.

What’s Coming Up

This marks the end of the code needed to create the datagrids required for this tutorial. However, we are not done yet. There is still one more page we need to create — Reports. We will cover that after the jump.

What’s the use of an inventory system without some of type of report? In this section, you will learn how to use phpChart — which seamlessly integrates with phpGrid — to create visually pleasing and useful reports for your Inventory Manager application.

Here’s what our page will look like when it’s done:

Before we start, we need to install phpChart. It is recommended that you obtain the full version of phpChart since the free version (phpChart Lite) supports only the line chart.

Setup phpChart

It’s important that we keep phpGrid and phpChart in separate folders. Below is the recommended folder hierarchy.

www +-- Donation_Manager | |-- phpGrid | | +-- conf.php | |-- phpChart | | +-- conf.php | +-- ...

Report Design

We will place a pie chart next to an inventory summary grid. The datagrid provides the series data to plot the pie chart.

phpGrid and phpChart Integration

First of all, include calls to both conf.php files at the beginning of the code.

require_once("phpGrid/conf.php"); require_once("phpChart/conf.php");

Pie Chart

Below is the complete code to create our pie chart:

Let’s walk through the code.

The first line is the constructor. We pass array(null) as the series data because we don’t wish to have any data displayed in the pie chart initially. The inventory data used to plot the chart is not yet available when it is first initialized. The data is fed from the datagrid later in JSON.

We also give our chart a unique name, PieChart.

Next, we give it a title. Nothing fancy here.

Once we have the title, we call the series default function to set the renderer to PieRenderer. Unlike a bar chart, a pie chart does not have a Y axis.

We can also set the rendererOptions property. We will not go into each option in detail here, but you can find more information in the online documentation.

We also want to show a legend. The set_legend command below shows the legend to the west (noted byw) or to the left of the pie chart.

We will also remove the border and the background.

Finally, we draw our chart by giving it a height and width in pixels.

However, if you execute the code now, you will not see the chart because the data used to render it isn’t available yet.

Inventory Summary Datagrid

Here, we will use the same the inventory datagrid as we did in the Products page. We just need to add one more thing — an event handler.

In phpGrid, we can add an event handler with the add_event() function. add_event() binds an event handler, which is essentially a JavaScript function, to a specific phpGrid event. A list of possible events can be found here.

Since we must wait for the datagrid to finish loading before it can send the data to plot the chart, we use the event jqGridLoadComplete.

phpGrid 101 — jqGridLoadComplete Event

jqGridLoadComplete is last event that occurs once the whole datagrid body has finished loading. Note that the grid body will be reloaded if the user changes the sort order of a column or sets a filter.

Sending Data with Javascript

The following is the Javascript event handler for jqGridLoadComplete.

The complete code:

Now there you have it. Your just built your very first inventory management system from scratch using PHP and MySQL!

Thank you for reading! If you enjoyed this post, please give me some claps so more people see it.

New to Programming? Fear Not!

If you are new to programming and are not yet comfortable with coding, you may want to check out ZenBase that is built on the top of the phpGrid. The Inventory Management System is but one of the many application templates readily available at ZenBase for anyone — with or without coding skills — to use and customize for their own needs.

Online Demo

  • Current Inventory
  • Incoming Purchases
  • Outgoing orders
  • Reports (with datagrid side-by-side)

Next: Add the barcode scanner

Add the barcode scanner to our inventory management system

Download Source Code on Github

phpcontrols/inventory-manager

Source code of inventory-manager the awesome Inventory Management Application in PHP and MySQL from Start to Finishgithub.com

Common Issue:

Fatal error: Uncaught Error: Class ‘phpGrid\C_DataGrid’ not found

How to fix:

If you are using the free Lite version, you can either comment out the first line

// use phpGrid\C_DataGrid;

— OR —

Add a global namespace symbol — single backslash — BEFORE the constructor

$dg = new \C_DataGrid(“SELECT * FROM orders”, “orderNumber”, “orders”);

You may be also interested in those tutorials:

Build a Project Management Application From Scratch

What is a Project Management Application?Build a Simple CRM from Start to Finish

Customer Relationship Management (CRM) is a system that manages customer interactions and data throughout the customer…Building a Donation Manager from Scratch in PHP

Thanks for reading. If you enjoyed this article, please hit that clap button ? to help others find it and follow me on Twitter.

Would you like to see more tutorials like this? Send a request to my Twitter or leave a comment below!