JSP inventory management system

With the rapid development of computer technology, people are increasingly dependent on computers, especially the use of computer database development and data management systems in life applications become more prominent. Through the design and development of pharmacy inventory management system, design a standardized, automated, simple, intelligent pharmacy inventory management system to improve the efficiency of pharmacy inventory management.

This design of inventory management system is based on JSP technology, it has flexibility. In this paper, an integrated development strategy, the successful completion of a comprehensive examination of the entire system. Inventory management system, the interface is simple, easy to operate, flexible, practical, effective pharmacy management simplifies the process, greatly improving the efficiency of inventory management work, making inventory management system is more systematic, standardized, automated, with excellent availability, reliability, security. The system uses a standard three-tier architecture, the performance of the specific function module is divided into layers, a layer structure control layer, the business layer, reducing the complexity of the development system. This system mainly uses JSP technology development, improve operational performance and system security performance, ease of operation and maintenance. The system realizes the function menu, statistical analysis, and other basic information maintenance function modules.

Due to the small domestic pharmacy market, the number of speed in the process of this information should be in the back of medium-sized pharmacies, and enterprise resource management, information storage and processing seem to be an urgent need to adapt to market competition, we must have excellent processing techniques and methods, thus speeding up the process of information is vital to the pharmacy.

With the rapid economic development, pharmacies have become more complex, previously unable to meet later in the form of development of the existing industry-counter sales clerk, there is an urgent need to introduce new management techniques.

Pharmacies have different strengths to form, but in the present circumstances, it is generally still lagging behind retail level, such as: can not effectively manage every piece of merchandise, settlement receivables slow, error-prone business, rather than commodity prices, inventory, low efficiency, experience and decision-making in pharmacies, import and sale, storage and other commodities, the lack of real-time function of the daily management, timely provide the requested information management does not always arrive. Pharmacies daily amount, to address the growing number of middle part of trade gradually increase the required data, the original manual management can not deal with this complex market. The system relies on pharmacy inventory management, innovative technology information processing computer to manage the pharmacy, thus saving a lot of manpower, material resources, improve the conditions of employment, reduce labor intensity, can quickly for goods, sales, warehousing and other conditions, and learning about different information feedback, allowing managers to rapid market changes, make appropriate decisions, in order to promote the efficiency of pharmacy management.

Part of the code:

IF(ac.equals("login"))

{

String username = request.getParameter("username");

String password = request.getParameter("pass");

String utype = request.getParameter("utype");

String pagerandom = request.getParameter("pagerandom")==NULL?"":request.getParameter("pagerandom");

String random = (String)SESSION.getAttribute("random");

IF(!pagerandom.equals(random)&&request.getParameter("a")!=NULL)

{

request.setAttribute("random", "");

GO("/admin/login.jsp", request, response);

}

ELSE{

String sql1 = "select * from sysuser where uname='"+username+"' and upass='"+password+"' and utype='"+utype+"'";

System.out.println(sql1);

List<HashMap> userlist1 = dao.select(sql1);

IF(userlist1.size()==1)

{

request.getSession(). setAttribute("admin", userlist1.get(0));

gor("/storebase/admin/index.jsp", request, response);

}ELSE{

request.setAttribute("error", "");

GO("/admin/login.jsp", request, response);

}

}

}
 

 

Guess you like

Origin www.cnblogs.com/xxsnn/p/11613593.html