Current File : /home/obabain/public_html/abc/ProformaInvoiceMain.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
        <%@ include file="Connection.jsp" %>
         <%!String lpo=null;
    int inid=0;
    String date=null;
    %>
    <%    
	Statement st=con.createStatement();
    ResultSet rs=st.executeQuery("select * from ip_proforma_invoice where sinvoice_id=(select max(sinvoice_id) from ip_proforma_invoice)");
    while(rs.next())
    {
    lpo=rs.getString("sales_invoice_no");
    }
    rs=st.executeQuery("select NOW() as date");
    while(rs.next())
    {
    date=rs.getString("date");
    }
    
    %>
<!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>Sales Invoice</title>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"  rel="stylesheet">
    <link href="css/select2.min.css" rel="stylesheet">
    <link href="css/jquery.datetimepicker.css" rel="stylesheet">
  
</head>
<body>
<form  method="post"name= "so">
<%@include file="master.jsp" %>
<div class="content">
<div class="row">
<div class="col-md-9"  style="background-color:white;">
<div class="panel panel-default" >
       <div class="panel-heading main-color-bg">
        <h3 class="panel-title">Proforma Invoice</h3>
              </div>
             </div>
<div class="panel-body">
<!-- <div align="right" >
 <a href="ViewInvoices.jsp" style="background:#204b58;" class="btn btn-info"  >View</a>
 </div> -->
<div class="row">
<div class="form-group col-xs-2">
             
            <div class="onerow">
            Last Invoice Created:<span style="color:red;"><%=lpo %></span>
            </div>
            </div>
</div>
<div class="row">
<div class="form-group col-xs-2">
            <div class="onerow">
            <p><label for="status" style="margin:5px;">
            Invoice No.<span style="color:red;">*</span></label></p>
<input type="text"  class="form-control" name="invoiceno" id="sino">
            </div>
            

</div>
<div class="form-group col-xs-2">
<p><label for="status" style="margin:5px;">
Invoice Date<span style="color:red;">*</span></label></p>
<input type="text"  class="form-control"  name="invoicedate" id="datetimepicker">
</div>
<div class="form-group col-xs-2">
<p><label for="status" style="margin:5px;">
P.O No.</label></p>
<input type="text" class="form-control" name="PoNo">
</div>
<div class="form-group col-xs-2">
<p><label for="status" style="margin:5px;">
P.O Date.<span style="color:red;">*</span></label></p>
<input type="text" class="form-control" name="Podate2" id="datetimepicker2">
</div>
<div class="form-group col-xs-3">
<p><label for="status" style="margin:5px;">
Client Name</label></p>
<select id="ddlsname" name="cname" class="form-control">
<%Statement st1=con.createStatement();
ResultSet r1=st1.executeQuery("select * from ip_clients");
while(r1.next())
{
%>
<option value="<%=r1.getString("client_id") %>"><%=r1.getString("client_name") %></option>
<%} %>
</select>
</div>

</div>
<div class="row">
<!-- <div class="form-group col-xs-2">
Due Date
<input type="text"  class="form-control"  name="duedate">
</div> -->
<div class="form-group col-xs-2">
 <p> <label for="invgrp" style="margin:5px;">
Invoice Group</label></p>
<select  class="form-control" name="invgrp">
<option value="1">Invoice default</option>
<option value="2">Porder default</option>
<option value="3">Quote default</option>
</select>


</div>
<div class="form-group col-xs-2">
<div class="onerow">
  <p><label for="status" style="margin:5px;">
Status</label></p>
<select class="form-control" name="status">
<%
Statement sts=con.createStatement();
ResultSet rt=sts.executeQuery("select * from ip_status");
while(rt.next())
{
	 %>
<option value="<%=rt.getString("id")%>"><%=rt.getString("description")%></option>
<%} %>
</select>
</div>
</div>

<!-- <div class="form-group">
Quotation No
<input type="text" class="form-control" name="qtno">
</div> -->
<div class="form-group col-xs-2">
<p><label for="status" style="margin:5px;">
Dispatch Through</label></p>
<input type="text" class="form-control" name="dispt">
</div>
<div class="form-group col-xs-2">
<p><label for="status" style="margin:5px;">
Freight </label></p>
<select name="freight" class="form-control" >
<option>To Pay</option>
<option>Paid</option>
</select>
</div>

<div class="form-group col-xs-2">
<p><label for="status" style="margin:5px;">
Payment method</label></p>
<select name="paymethod" class="form-control" >
<%
Statement st4=con.createStatement();
ResultSet r2=st4.executeQuery("select * from ip_payment_methods");
while(r2.next())
{
%>
<option value="<%=r2.getString("payment_method_id") %>"><%=r2.getString("payment_method_name") %></option>
<%} %>
</select>
</div>
</div>
<div class="modal-footer" id="contact_submit">
<input type="button" value="Back" style="background:#204b58;" class="btn btn-info pull-left"  onclick="goBack()"/>
			<a class="btn btn-default" href="SalesInvoiceMain.jsp">Reset</a>
			<input type="submit" value="Next" style="background:#204b58" class="btn btn-info" onclick="validate();">
			</div>
			<%
try{
		String invno=request.getParameter("invoiceno");
			String sid=request.getParameter("cname");
			String sdate=request.getParameter("invoicedate");
			String exdate=request.getParameter("duedate");
			String qtno=request.getParameter("qtno");
			String paym=request.getParameter("paymethod");
			String status=request.getParameter("status");
			String damt=request.getParameter("discamt");
			String PoNo=request.getParameter("PoNo");
			String chrg=request.getParameter("forwchrg");	
			String invdate=request.getParameter("podate");
			String podate=request.getParameter("Podate2");
			
			String freight=request.getParameter("freight"); 
			String disp=request.getParameter("dispt"); 
			String invgp=request.getParameter("invgrp");
			String gurl=request.getParameter("gurl");
			String discpe=request.getParameter("discper");
			if((invno.length()!=0||invno!="") &&( sdate.length()!=0 || sdate!=""  ))
			{
				ResultSet rr=st.executeQuery("SELECT  sinvoice_id FROM  ip_proforma_invoice where sales_invoice_no="+invno+"");
				if(rr.next())
				{
					int r= st.executeUpdate("update ip_proforma_invoice set supplier_id="+sid+",inv_group_id="+invgp+",salesinv_status="+status+",payment_method="+paym+",invoice_date_created='"+sdate+"',pono='"+PoNo+"',dispatch='"+disp+"',freight='"+freight+"',podate='"+podate+"' where sales_invoice_no="+invno+"");
				}
				else
				{
			int r=st.executeUpdate("insert into ip_proforma_invoice (sinvoice_id, invoice_id, user_id, supplier_id, inv_group_id, salesinv_status, payment_method, invoice_date_created, invoice_date_modified, sales_invoice_no, discount_amt, purchase_pfc, discount_percent, total,pono,dispatch,freight,ship_addr,podate)  values(0,0,0,"+sid+","+invgp+","+status+","+paym+",'"+sdate+"',NOW(),'"+invno+"',0.00,0.00,0.00,0.00,'"+PoNo+"','"+disp+"','"+freight+"','','"+podate+"')");
			
}
				response.sendRedirect("proformaProductSelect.jsp");
				}}
			catch(Exception el){}
			%>
</div>
</div>

</div>
</div>
<%@include file="footer.jsp" %>
</form>
<script type="text/javascript">
function validate()
{
	 
	 // var t2=document.po.expdate.value;
	  var t3=document.getElementById("quotno").value;
	 var t1=document.getElementById("datetimepicker").value;
	  var t4=document.getElementById("pono").value;
	  
	  
	  if( t1==null || t1=="" || t4==null || t4=="" )
		  
		 alert('Fill all mandatory fields');

		  
}
</script>

<script type="text/javascript">
function goBack() {
    window.history.back();
   
};
</script>
<script type="text/javascript">
function validate()
{
	 
	 // var t2=document.po.expdate.value;
	  //var t3=document.getElementById("quotno").value;
	 var t1=document.getElementById("datetimepicker").value;
	  var t4=document.getElementById("sino").value;
	  
	  
	  if( t1==null || t1=="" || t4==null || t4=="" )
		  
		 alert('Fill all mandatory fields');

		  
}
</script>


 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"></script>
    <script src="js/select2.min.js"></script>
    <script src="js/jquery.datetimepicker.full.js"></script>
   
    <script>
    $('select').select2();
    </script>
     <script>
     jQuery('#datetimepicker').datetimepicker({
    	 timepicker:false,
    	 todayBtn: "linked"
    	 //mask:true, // '9999/19/39 29:59' - digit is the maximum possible for a cell
    	});
     jQuery('#datetimepicker2').datetimepicker({
    	 timepicker:false,
    	 todayBtn: "linked"
    	 //mask:true, // '9999/19/39 29:59' - digit is the maximum possible for a cell
    	});
    </script>
</body>
</html>