简体   繁体   中英

Inventory Management System In Php

I am workin on a project in which i need to design and hotel inventory management system below are mention few point which i need to keep in mind while creating such flow

  1. user Interface of the system should look like an excel sheet where Column Should represent date and row should represent number of room in each category.
  2. Boxes in user interface should be clickable.
  3. by clicking on that box user should be able to block that particular cell and block his inventory
  4. Also on second click on that block celll user should be able to open that block inventory
  5. Blocked Inventory should show some icon like cross to represent that is inventory is blocked

Now below are few questions on which i would like to have your help.

  1. How this user interface can be build on php
  2. How i need to design my sql query
  3. How database normalization should be done in such case

i have not build a single line of code so would not be able to share. would request you to suggest some artical or webpage where i can understand such inventory management system.

Thanks Pratik Verma

In the database aspect of your question:

To normalize you should make sure you don't have repeating information, generally don't store fields that are calculated, and make sure the relationships of your tables are one to many if possible. Assign meaningful primary and foreign keys that are unique to their tables. Referential integrity is key! I'd also stay away from null values.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM