// 服装出库 if (ac.equals("kcout")) { String pid = request.getParameter("pid"); String num = request.getParameter("num"); String type = request.getParameter("type"); String reason = request.getParameter("reason"); String savetime = Info.getDateStr(); int znum = 0; int innum = 0; int outnum = 0; ArrayList<HashMap> inlist = (ArrayList<HashMap>) dao .select("select * from kcrecord where type='in' and pid='" + pid + "' "); ArrayList<HashMap> outlist = (ArrayList<HashMap>) dao .select("select * from kcrecord where type='out' and pid='" + pid + "' "); if (inlist.size() > 0) { for (HashMap inmap : inlist) { innum += Integer.parseInt(inmap.get("num").toString());// 总入库量 } } if (outlist.size() > 0) { for (HashMap outmap : outlist) { outnum += Integer.parseInt(outmap.get("num").toString());// 总出库量 } } znum = innum - outnum;// 库存量 if (Integer.parseInt(num) > znum) { request.setAttribute("no", ""); go("/admin/kcout.jsp", request, response); } else { dao.commOper("insert into kcrecord (pid,num,type,reason,savetime) values" + " ('" + pid + "','" + Integer.parseInt(num) + "','" + type + "','" + reason + "','" + savetime + "') "); request.setAttribute("suc", ""); go("/admin/kcout.jsp", request, response); } }
时间: 2024-04-27 20:23:46 浏览: 178
java中equals和==的区别.doc
这段代码实现了一个服装出库的功能。具体来说,如果用户提交了一个名为"kcout"的表单,程序会从请求参数中获取"pid"、"num"、"type"和"reason"的值。然后,它会查询数据库中"pid"对应的"kcrecord"表中的所有入库和出库记录,并计算出当前库存量。如果出库数量大于当前库存量,它会将一个名为"no"的属性添加到请求中,并将请求转发到"/admin/kcout.jsp"页面。否则,它会向"kcrecord"表中插入一条出库记录,并将一个名为"suc"的属性添加到请求中,并将请求转发到"/admin/kcout.jsp"页面。
具体来说,它首先使用一个select语句查询"kcrecord"表中所有"pid"等于请求参数中的"pid",并且"类型"等于"入库"的记录,然后使用一个for循环遍历查询结果,计算出所有入库数量的总和。接着,它使用另外一个select语句查询"kcrecord"表中所有"pid"等于请求参数中的"pid",并且"类型"等于"出库"的记录,然后使用一个for循环遍历查询结果,计算出所有出库数量的总和。最后,它将总入库数量减去总出库数量得到当前库存量。如果出库数量大于当前库存量,它将跳转到错误页面,否则,它将向"kcrecord"表中插入一条新的出库记录。
阅读全文