devTellerMap_detail.jsp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <%@ include file="../common/header.jsp"%>
  2. <script type="text/javascript" language="javascript">
  3. <!--
  4. function doBack(){
  5. document.forms.devTellerMap.action.value="list";
  6. document.forms.devTellerMap.submit();
  7. }
  8. function doEdit(id){
  9. document.forms.devTellerMap.id.value=id;
  10. document.forms.devTellerMap.action.value="edit";
  11. document.forms.devTellerMap.submit();
  12. }
  13. -->
  14. </script>
  15. <!-- CONTENT -->
  16. <form name="devTellerMap" method="post" action="devTellerMap.do">
  17. <input type="hidden" name="action" value ="">
  18. <input type="hidden" name="id" value ="">
  19. <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
  20. <tr>
  21. <td class="titleHeader"><bean:message key="project.devTellerMap.key"/> - DETAIL</td>
  22. </tr>
  23. </table>
  24. <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
  25. <tr>
  26. <td align="center">
  27. <table width="100%" border="0" cellspacing="1" cellpadding="2">
  28. <tr align = "left">
  29. <td width="20%"><b><bean:message key="devTellerMap.group.key"/></b></td>
  30. <td width="1%">:</td>
  31. <td width="29%"><bean:write name="devTellerMap" property="group" /></td>
  32. <td width="50%">&nbsp;</td>
  33. </tr>
  34. <tr align = "left">
  35. <td width="20%"><b><bean:message key="devTellerMap.deviceId.key"/></b></td>
  36. <td width="1%">:</td>
  37. <td width="29%" align="left"><bean:write name="devTellerMap" property="deviceId" /></td>
  38. <td width="50%">&nbsp;</td>
  39. </tr>
  40. <tr align = "left">
  41. <td width="20%"><b><bean:message key="devTellerMap.deviceName.key"/></b></td>
  42. <td width="1%">:</td>
  43. <td width="29%" align="left"><bean:write name="devTellerMap" property="deviceName" /></td>
  44. <td width="50%">&nbsp;</td>
  45. </tr>
  46. <tr align = "left">
  47. <td width="20%"><b><bean:message key="devTellerMap.terminalId.key"/></b></td>
  48. <td width="1%">:</td>
  49. <td width="29%" align="left"><bean:write name="devTellerMap" property="terminalId" /></td>
  50. <td width="50%">&nbsp;</td>
  51. </tr>
  52. <tr align = "left">
  53. <td width="20%"><b><bean:message key="devTellerMap.terminalIp.key"/></b></td>
  54. <td width="1%">:</td>
  55. <td width="29%" align="left"><bean:write name="devTellerMap" property="terminalIp" /></td>
  56. <td width="50%">&nbsp;</td>
  57. </tr>
  58. <tr align = "left">
  59. <td width="20%"><b><bean:message key="devTellerMap.tellerId.key"/></b></td>
  60. <td width="1%">:</td>
  61. <td width="29%" align="left"><bean:write name="devTellerMap" property="tellerId" /></td>
  62. <td width="50%">&nbsp;</td>
  63. </tr>
  64. <tr align = "left">
  65. <td width="20%"><b><bean:message key="devTellerMap.ctrlUnitId.key"/></b></td>
  66. <td width="1%">:</td>
  67. <td width="29%" align="left"><bean:write name="devTellerMap" property="ctrlUnitId" /></td>
  68. <td width="50%">&nbsp;</td>
  69. </tr>
  70. <tr align = "left">
  71. <td width="20%"><b><bean:message key="devTellerMap.modifiedBy.key"/></b></td>
  72. <td width="1%">:</td>
  73. <td width="29%" align="left"><bean:write name="devTellerMap" property="modifiedBy" /></td>
  74. <td width="50%">&nbsp;</td>
  75. </tr>
  76. <tr align = "left">
  77. <td width="20%"><b><bean:message key="devTellerMap.timestamp.key"/></b></td>
  78. <td width="1%">:</td>
  79. <td width="29%" align="left">
  80. <logic:notEmpty name="devTellerMap" property="timestamp">
  81. <bean:write name="devTellerMap" property="timestamp.time" format="dd/MM/yyyy" />
  82. </logic:notEmpty>
  83. </td>
  84. <td width="50%">&nbsp;</td>
  85. </tr>
  86. <tr>
  87. <td colspan="4">&nbsp;</td>
  88. </tr>
  89. <tr>
  90. <td width="20%">&nbsp;</td>
  91. <td width="1%">&nbsp;</td>
  92. <td width="29%"><input type="button" value=<bean:message key="button.back" /> onclick="doBack();"/></td>
  93. <td width="50%">&nbsp;</td>
  94. </tr>
  95. <tr>
  96. <td colspan="4">&nbsp;</td>
  97. </tr>
  98. </table>
  99. </td>
  100. </tr>
  101. <tr>
  102. <td>&nbsp;</td>
  103. </tr>
  104. </table>
  105. </form>
  106. <!-- END CONTENT -->
  107. <%@ include file="../common/footer.jsp"%>