⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 register_choose_bat_ok.java

📁 ERO系统.针对生产型、分销型、服务型企业等不同的行业特点
💻 JAVA
字号:
/*
 *this file is part of nseer erp
 *Copyright (C)2006-2010 Nseer(Beijing) Technology co.LTD/http://www.nseer.com 
 *
 *This program is free software; you can redistribute it and/or
 *modify it under the terms of the GNU General Public License
 *as published by the Free Software Foundation; either
 *version 2 of the License, or (at your option) any later version.
 */
package crm.retail;

 import javax.servlet.http.*;
import javax.servlet.jsp.*;
 import javax.servlet.*;


 import java.sql.* ;
 import java.io.* ;
 import include.nseer_db.*;
 import include.query.getRecordCount;
 import validata.ValidataNumber;

public class register_choose_bat_ok extends HttpServlet{
ServletContext application;
HttpSession session;
nseer_db_backup1 erp_db = null;

public synchronized void doPost(HttpServletRequest request,HttpServletResponse response) throws IOException,ServletException{
HttpSession dbSession=request.getSession();
JspFactory _jspxFactory=JspFactory.getDefaultFactory();
PageContext pageContext = _jspxFactory.getPageContext(this,request,response,"",true,8192,true);
ServletContext dbApplication=dbSession.getServletContext();

try{HttpSession session=request.getSession();
	nseer_db_backup1 stock_db = new nseer_db_backup1(dbApplication);
	getRecordCount query= new getRecordCount();
	ValidataNumber  validata= new ValidataNumber();
if(stock_db.conn((String)dbSession.getAttribute("unit_db_name"))){

String order_ID=request.getParameter("order_ID");
String stock_ID=request.getParameter("stock_ID");
String product_ID=request.getParameter("product_ID");
String[] serial_number_group=request.getParameterValues("serial_number");
String[] paid_amount=request.getParameterValues("paid_amount");
String serial_number="";
String amount_number="";
int p=0;
if(serial_number_group!=null){
for(int i=0;i<serial_number_group.length;i++){
	String sql2="select * from stock_balance_details_details where product_ID='"+product_ID+"' and stock_ID='"+stock_ID+"' and serial_number='"+serial_number_group[i]+"'";
	ResultSet rs2=stock_db.executeQuery(sql2);
	if(rs2.next()){
		if(!paid_amount[i].equals("")){
		if(Double.parseDouble(paid_amount[i])>rs2.getDouble("amount")){
			p++;
		}
		}
	}
}
if(p==0){
double amount=0.0d;
for(int i=0;i<serial_number_group.length;i++){
	if(!paid_amount[i].equals("")){
	serial_number+=serial_number_group[i]+", ";
	amount_number+=paid_amount[i]+", ";
		amount+=Double.parseDouble(paid_amount[i]);
	}
}
String sql="delete from stock_paying_temp where pay_ID='"+order_ID+"' and product_ID='"+product_ID+"' and stock_ID='"+stock_ID+"'";
stock_db.executeUpdate(sql);

String sql1="insert into stock_paying_temp(pay_ID,product_ID,stock_ID,serial_number,amount_number,amount) values('"+order_ID+"','"+product_ID+"','"+stock_ID+"','"+serial_number+"','"+amount_number+"','"+amount+"')";
stock_db.executeUpdate(sql1);
response.sendRedirect("crm/retail/register_reconfirm.jsp?order_ID="+order_ID+"");
}else{

response.sendRedirect("crm/retail/register_choose_bat_ok_a.jsp");//用户时候登陆过

}}else{

response.sendRedirect("crm/retail/register_choose_bat_ok_b.jsp");//用户时候登陆过

}
stock_db.commit();
stock_db.close();
}else{
	response.sendRedirect("error_conn.htm");
}


}catch(Exception ex){}
}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -