replenishmentDetailAdvSearch.jsp 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <%@ page contentType="text/html;charset=UTF-8"%>
  2. <%@ include file="/WEB-INF/include/taglibs.jsp"%>
  3. <form id="advSearchForm" method="post">
  4. <table width="100%">
  5. <tr>
  6. <td class="title">仓库:</td>
  7. <td><input name="warehouseName" condition='"operator":"like"' /></td>
  8. <td class="title">货主:</td>
  9. <td><input name="customerName" condition='"operator":"like"' /></td>
  10. <td class="title">货主关系人:</td>
  11. <td><input name="relationedCustomerName" condition='"operator":"like"' /></td>
  12. </tr>
  13. <tr>
  14. <td class="title">储位:</td>
  15. <td>
  16. <textarea name="toLocationName" condition='"operator":"in"'></textarea>
  17. </td>
  18. <td class="title">产品:</td>
  19. <td>
  20. <textarea name="itemName" condition='"operator":"in"'></textarea>
  21. </td>
  22. <td class="title">补货任务单号:</td>
  23. <td><input name="replenishmentTaskIds" condition='"operator":"like"' /></td>
  24. </tr>
  25. <tr>
  26. <td class="title">状态:</td>
  27. <td>
  28. <select name="status" style="width:155px" class="easyui-combobox" data-options="multiple:true,editable:false,panelHeight:'auto'" condition='"operator":"in"'>${replenishmentDetailStatusList}</select>
  29. </td>
  30. <td class="title">创建时间:</td>
  31. <td colspan="3"><input class="easyui-datebox" name="creationTime" condition='"operator":">="'/> ~ <input class="easyui-datebox" name="creationTime" condition='"operator":"<="'/></td>
  32. </tr>
  33. <tr>
  34. <td colspan="6" align="right">
  35. <a id="btnQuery" href="#" class="easyui-linkbutton" data-options="iconCls:'icon-search'">查询</a>
  36. </td>
  37. </tr>
  38. </table>
  39. </form>