| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <%@ include file="../common/header.jsp"%>
-
- <script type="text/javascript" language="javascript">
- <!--
- function doUpdateStatus(code,status){
- var x = (status == 'ACTIVE' ? window.confirm("<bean:message key="confirm.activate"/>"):window.confirm("<bean:message key="confirm.inactivate"/>"));
- if(x){
- document.forms.appUser.loginName.value=code;
- document.forms.appUser.status.value=status;
- document.forms.appUser.action.value="update_status";
- document.forms.appUser.submit();
- doDisable(document.forms.appUser, "button");
- }
- }
- function doBack(){
- document.forms.appUser.action.value="list";
- document.forms.appUser.submit();
- doDisable(document.forms.appUser, "button");
- }
- function doEdit(code){
- document.forms.appUser.loginName.value=code;
- document.forms.appUser.action.value="edit";
- document.forms.appUser.submit();
- doDisable(document.forms.appUser, "button");
- }
- -->
- </script>
- <form name="appUser" method="post" action="appUser.do">
- <input type="hidden" name="action">
- <input type="hidden" name="clear">
- <input type="hidden" name="loginName">
- <input type="hidden" name="status">
- <input type="hidden" name="appUser_status" value="<bean:write name="appUser_status"/>">
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <tr>
- <td class="titleHeader"><bean:message key="project.appUser.key"/> - DETAIL</td>
- </tr>
- <tr><td><html:errors/></td></tr>
- <tr>
- <td align="center"><table width="100%" border="0" cellspacing="1" cellpadding="2">
- <tr>
- <td width="15%"><b><bean:message key="appUser.loginName.key" /></b></td>
- <td align = "left" width="1%">:</td>
- <td width="34%"><bean:write name="appUser" property="loginName"/></td>
- <td width="5%"> </td>
- <td width="15%"> </td>
- <td width="30%"> </td>
- </tr>
- <tr align = "left">
- <td width="15%"><b><bean:message key="appUser.firstName.key" /></b></td>
- <td width="1%">:</td>
- <td align="left" width="34%">
- <bean:write name="appUser" property="firstName"/>
- </td>
- <td width="5%"></td>
- <td width="15%"></td>
- <td width="30%"></td>
- </tr>
- <tr align = "left">
- <td width="15%"><b><bean:message key="appUser.lastName.key" /></b></td>
- <td width="1%">:</td>
- <td align="left" width="34%">
- <bean:write name="appUser" property="lastName"/>
- </td>
- <td width="5%"></td>
- <td width="15%"></td>
- <td width="30%"></td>
- </tr>
- <tr align = "left">
- <td width="15%"><b><bean:message key="appUser.biller.key" /><b></td>
- <td width="1%">:</td>
- <td align="left" width="34%"><bean:write name="biller" property="code"/> - <bean:write name="biller" property="name"/></td>
- <td width="5%"> </td>
- <td width="15%"> </td>
- <td width="30%"> </td>
- </tr>
- <tr align = "left">
- <td width="15%"><b><bean:message key="appUser.billerGroup.key" /></b></td>
- <td width="1%">:</td>
- <td align="left" width="34%"><bean:write name="billerGroup" property="name"/></td>
- <td width="5%"> </td>
- <td width="15%"> </td>
- <td width="30%"> </td>
- </tr>
- <tr align = "left">
- <td valign="top" width="15%"><b><bean:message key="appUser.roles.key" /></b></td>
- <td valign="top" width="1%">:</td>
- <td align="left" width="84%" colspan="4">
- <logic:notEmpty name="appUser" property="roles">
- <logic:iterate id="element_roles" name="appUser" property="roles">
- <bean:write name="element_roles" property="name" />
- <br>
- </logic:iterate>
- </logic:notEmpty>
- </td>
- </tr>
- <tr align = "left">
- <td valign="top" width="15%"><b><bean:message key="appUser.accNo.key" /></b></td>
- <td valign="top" width="1%">:</td>
- <td align="left" width="84%" colspan="4">
- <logic:notEmpty name="appUser" property="accountNumbers">
- <logic:iterate id="element_roles" name="appUser" property="accountNumbers">
- <bean:write name="element_roles" property="acctno" />
- <br>
- </logic:iterate>
- </logic:notEmpty>
- </td>
- </tr>
- <tr align = "left">
- <td width="15%"><b><bean:message key="appUser.status.key" /></b></td>
- <td width="1%">:</td>
- <td align="left" width="34%"><bean:write name="appUser" property="status"/></td>
- <td width="5%"> </td>
- <td width="15%"> </td>
- <td width="30%"> </td>
- </tr>
- <tr align = "left">
- <td width="15%"><b><bean:message key="appUser.modifiedBy.key" /></b></td>
- <td width="1%">:</td>
- <td align="left" width="34%"><bean:write name="appUser" property="modifiedBy"/></td>
- <td width="5%"> </td>
- <td width="15%"> </td>
- <td width="30%"> </td>
- </tr>
- <tr>
- <td> </td>
- <td> </td>
- <td>
- <input type="button" value=<bean:message key="button.back" /> onclick="doBack();">
- </td>
- <td> </td>
- <td> </td>
- <td> </td>
- </tr>
- <tr>
- <td> </td>
- <td> </td>
- <td> </td>
- <td> </td>
- <td> </td>
- <td> </td>
- </tr>
- </table></td>
- </tr>
- <tr>
- <td class="search"> </td>
- </tr>
- <tr>
- <td> </td>
- </tr>
- </table>
-
- </form>
- <%@ include file="../common/footer.jsp"%>
|