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

📄 begininformedit.jsp

📁 仓库管理系统,适合各种行业的仓库管理系统
💻 JSP
字号:
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*,com.bean.DTO.*,com.bean.DAO.*,com.database.*" errorPage="" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<link  href="../css/SMSpublic.css" rel="stylesheet" type="text/css"/>
<link  href="<%=request.getContextPath()%>/css/SMSpublic.css" rel="stylesheet" type="text/css"/>
<script language="javascript" type="text/javascript" src="../js/birthday.js"></script>
<style type="text/css">
<!--
.STYLE1 {color: #9999FF}
-->
</style>
</head>
<%
  Connection con = DataSourceFactory.getDataSource().getConnection();
			StockDAO dao = new StockDAO(con);
			String product = request.getParameter("productID");
			String page1 = request.getParameter("curpage");
			int curpage = Integer.parseInt(page1);
			String project = request.getParameter("projectID");
			int productID = Integer.parseInt(product);
			int projectID = Integer.parseInt(project);
			StockDTO dto = dao.getByID(projectID,productID);
			con.close();
 %>
<body>
<table width="1010" border="0" height="21" bgcolor="#6495ED"cellpadding="0" cellspacing="0" >
  <tr>
<td width="15%" ><font class="title1 STYLE1">               编 辑 采 购 通 知</font></td>
  </tr>
</table>
<form id="form1" name="form1" method="post" action="/SMS/begininformedit.do?curpage=<%=curpage %>" >
  <table width="80%"  border="0" align="center" cellpadding="1" cellspacing="1">
      <tr>
         <td height="41" colspan="6" align="center" class="title1">编 辑 采 购 通 知</td>
      </tr>
      <tr>
        <td width="10%" height="30" class="title2">采购项目ID:</td>
        <td width="90%" height="30" class="STYLE18"><span class="title2"><%=dto.getProjectID()%></span>
        <input type="hidden" name="projectID" value="<%=project %>"/></td>
      </tr>
      
      <tr>
        <td height="30" class="title2">采购货物ID:</td>
        <td height="30" class="STYLE18"><span class="title2"><%=dto.getProductID()%></span>
        <input type="hidden" name="productID" value="<%=product %>"/></td>
      </tr>
      
      <tr>
        <td height="30" class="title2">预算价 格:</td>
        <td height="30" class="STYLE18"><input name="budgetprice" type="text" class="inputcontent" value="<%=dto.getBudgetprice()%>"/></td>
      </tr>
      <tr>
        <td height="30" class="title2">供货  商:</td>
        <td height="30" class="STYLE18"><input name="provider" type="text" class="inputcontent" value="<%=dto.getProvider()%>"/></td>
      </tr>
      <tr>
        <td height="30" class="title2">采购时 间:</td>
        <td height="30" class="STYLE18"><input name="buytime" type="text" class="inputcontent" onfocus="show_cele_date(buytime,'','',buytime)" value="<%=dto.getBuytime()%>"/></td>
      </tr>
      <tr>
        <td height="30" class="title2">采购员 ID:</td>
        <td height="30" class="STYLE18"><input name="checkerID" type="text" class="inputcontent" value="<%=dto.getCheckerID()%>"/></td>
      </tr>
      
      <tr>
        <td height="30" class="title2">负责人 ID:</td>
        <td height="30" class="STYLE18"><input name="directorID" type="text" class="inputcontent" value="<%=dto.getDirectorID()%>"/></td>
      </tr>
      <tr>
        <td height="30" colspan="2" class="STYLE18">       
          <input type="submit" name="Submit" value="提   交" class="button"/> 
                          
          <input type="reset" name="Submit2" value="重   置" class="button"/></td>
      </tr>
  </table>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
</form>
</body>
</html>

⌨️ 快捷键说明

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