Current File : //home/obabain/public_html/abc/IssueUpdate.jsp |
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ include file="Connection.jsp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%
try
{
String id= request.getParameter("id");
String id3= request.getParameter("id2");
String issuqty=request.getParameter("issuqty");
String clstock=request.getParameter("clstock");
String itemid=request.getParameter("itemid");
String price=request.getParameter("price");
String value=request.getParameter("value");
Double avgprice1=0.0;
Double val1=0.0;
Double tp=0.0;
String uom1=null;
Double clsvaue1=0.0;
Double clsvaue=0.0;
String price1=null;
Double closingval=0.0;
closingval=(Double.parseDouble(price)-Double.parseDouble(clstock));
double d=Double.parseDouble(issuqty)*(-1);
Statement stm=con.createStatement();
System.out.println(d);
ResultSet ru1=stm.executeQuery("select sum(qty_pur)sqty1 from ip_stock_register where product_id="+itemid+"");
while(ru1.next())
{
uom1=ru1.getString("sqty1");
System.out.println("umo1 is ........"+uom1);
}
clsvaue1=(Double.parseDouble(uom1)-Double.parseDouble(issuqty));
clsvaue=(clsvaue1*Double.parseDouble(price));
ResultSet re=stm.executeQuery("select * from ip_products where product_id='"+itemid+"'");
while(re.next())
{
price1=re.getString("avgprice");
System.out.println("price1 is............."+price1);
avgprice1=(Double.parseDouble(price1)*Double.parseDouble(issuqty));
System.out.println("avgprice is............."+avgprice1);
}
int i=stm.executeUpdate("update issue_table set issue_qty='"+issuqty+"',closing_stock='"+clstock+"', value='"+value+"',avgprice='"+avgprice1+"',closing_valu='"+closingval+"' where id='"+id+"'");
int x1=stm.executeUpdate("update ip_products set opn1='"+clsvaue1+"',opnvalue='"+clsvaue+"' where product_id='"+itemid+"'");
int j=stm.executeUpdate("update ip_stock_register set qty_pur ='"+d+"', closing_qty='"+clstock+"',value='"+value+"' where branch_id ='"+id+"' and type='I' ");
response.sendRedirect("Issue_no_View1.jsp?id="+id3+"");
}
catch(Exception el){
out.println(el);
}
%>
</body>
</html>
</html>