| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/context/mytags.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <title>项目库</title>
- <t:base type="jquery,easyui,tools,DatePicker"></t:base>
- <script type="text/javascript">
- $(document).ready(function(){
- //编写自定义JS代码
- });
-
- function beforeSave(){
- return true;
- }
-
- </script>
- </head>
- <body>
- <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="onhandController.do?doUpdate" beforeSubmit="beforeSave">
- <input id="id" name="id" type="hidden" value="${onhand.id }"/>
- <table cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 仓库:
- </label>
- </td>
- <td class="value">
- <input id="wname" name="wname" type="text" style="width: 150px" class="inputxt" readonly="readonly" value='${wname}'/>
- <%-- <t:dictSelect field="warehouseId" id= 'warehouseId' type="list" extendJson="{class:'form-control'}"
- dictTable="t_b_warehouse" dictField="id" dictText="warehouse_name" defaultVal="${onhand.warehouseId}" hasLabel="false" title="仓库"></t:dictSelect> --%>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">仓库</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 货品:
- </label>
- </td>
- <td class="value">
- <input id="gname" name="gname" type="text" style="width: 150px" class="inputxt" readonly="readonly" value='${gname}'/>
- <%-- <t:dictSelect field="goodsId" id= 'goodsId' type="list" extendJson="{class:'form-control'}"
- dictTable="t_b_goods_info" dictField="id" dictText="goods_name" defaultVal="${onhand.goodsId}" hasLabel="false" title="存货"></t:dictSelect> --%>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">货品</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 型号:
- </label>
- </td>
- <td class="value">
- <input id="specType" name="specType" type="text" style="width: 150px" class="inputxt" readonly="readonly" value='${onhand.specType}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">型号</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- <span color="red" class="requiredIcon">*</span>数量:
- </label>
- </td>
- <td class="value">
- <input id="quantity" name="quantity" type="text" style="width: 150px" class="inputxt" datatype="*" ignore="chack" value='${onhand.quantity}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">数量</label>
- </td>
- </tr>
-
- </table>
- </t:formvalid>
- </body>
|