📄 showvisits.ftl
字号:
<#--
* Copyright (c) 2003 The Open For Business Project - www.ofbiz.org
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
* OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*@author Andy Zeneski (jaz@ofbiz.org)
*@author Olivier Heintz (olivier.heintz@nereide.biz)
*@version $Revision: 1.3 $
*@since 2.2
-->
<#assign uiLabelMap = requestAttributes.uiLabelMap>
<#if security.hasEntityPermission("PARTYMGR", "_VIEW", session)>
<#if partyId?exists>
<#assign title = uiLabelMap.PartyParty>
<#else>
<#assign title = uiLabelMap.PartyActive>
</#if>
<div class="head1">${title} ${uiLabelMap.PartyVisitListing}</div>
<#if !partyId?exists && showAll?lower_case == "true">
<a href="<@ofbizUrl>/showvisits?showAll=false</@ofbizUrl>" class="buttontext">[${uiLabelMap.PartyShowActive}]</a>
<#elseif !partyId?exists>
<a href="<@ofbizUrl>/showvisits?showAll=true</@ofbizUrl>" class="buttontext">[${uiLabelMap.PartyShowAll}]</a>
</#if>
<br>
<#if visitList?has_content>
<table border="0" width="100%" cellpadding="2">
<tr>
<td align='right'>
<b>
<#if 0 < viewIndex>
<a href="<@ofbizUrl>/showvisits?VIEW_SIZE=${viewSize}&VIEW_INDEX=${viewIndex-1}<#if sort?has_content>&sort=${sort}</#if><#if partyId?has_content>&partyId=${partyId}</#if>&showAll=${showAll}</@ofbizUrl>" class="buttontext">[${uiLabelMap.CommonPrevious}]</a> |
</#if>
<#if 0 < listSize>
<span class="tabletext">${lowIndex+1} - ${highIndex} of ${visitSize}</span>
</#if>
<#if highIndex < listSize>
| <a href="<@ofbizUrl>/showvisits?VIEW_SIZE=${viewSize}&VIEW_INDEX=${viewIndex+1}<#if sort?has_content>&sort=${sort}</#if><#if partyId?has_content>&partyId=${partyId}</#if>&showAll=${showAll}</@ofbizUrl>" class="buttontext">[${uiLabelMap.CommonNext}]</a>
</#if>
</b>
</td>
</tr>
</table>
<#else>
<br>
</#if>
<table width="100%" border="0" cellpadding="2" cellspacing="0">
<tr>
<td><a href="<@ofbizUrl>/showvisits?sort=visitId&showAll=${showAll}<#if partyId?has_content>&partyId=${partyId}</#if></@ofbizUrl>" class="tableheadbutton">${uiLabelMap.PartyVisitId}</a></td>
<td><a href="<@ofbizUrl>/showvisits?sort=partyId&showAll=${showAll}<#if partyId?has_content>&partyId=${partyId}</#if></@ofbizUrl>" class="tableheadbutton">${uiLabelMap.PartyPartyId}</a></td>
<td><a href="<@ofbizUrl>/showvisits?sort=userLoginId&showAll=${showAll}<#if partyId?has_content>&partyId=${partyId}</#if></@ofbizUrl>" class="tableheadbutton">${uiLabelMap.PartyUserLoginId}</a></td>
<td><a href="<@ofbizUrl>/showvisits?sort=-userCreated&showAll=${showAll}<#if partyId?has_content>&partyId=${partyId}</#if></@ofbizUrl>" class="tableheadbutton">${uiLabelMap.PartyNewUser}</a></td>
<td><a href="<@ofbizUrl>/showvisits?sort=webappName&showAll=${showAll}<#if partyId?has_content>&partyId=${partyId}</#if></@ofbizUrl>" class="tableheadbutton">${uiLabelMap.PartyWebApp}</a></td>
<td><a href="<@ofbizUrl>/showvisits?sort=clientIpAddress&showAll=${showAll}<#if partyId?has_content>&partyId=${partyId}</#if></@ofbizUrl>" class="tableheadbutton">${uiLabelMap.PartyClientIP}</a></td>
<td><a href="<@ofbizUrl>/showvisits?sort=fromDate&showAll=${showAll}<#if partyId?has_content>&partyId=${partyId}</#if></@ofbizUrl>" class="tableheadbutton">${uiLabelMap.CommonFromDate}</a></td>
<td><a href="<@ofbizUrl>/showvisits?sort=thruDate&showAll=${showAll}<#if partyId?has_content>&partyId=${partyId}</#if></@ofbizUrl>" class="tableheadbutton">${uiLabelMap.CommonThruDate}</a></td>
</tr>
<tr><td colspan="8"><hr class="sepbar"></td></tr>
<#-- set initial row color -->
<#assign rowClass = "viewManyTR2">
<#list visitList as visitObj>
<tr class="${rowClass}">
<td><a href="<@ofbizUrl>/visitdetail?visitId=${visitObj.visitId}</@ofbizUrl>" class="buttontext">${visitObj.visitId}</a></td>
<td><a href="<@ofbizUrl>/viewprofile?partyId=${visitObj.partyId?if_exists}</@ofbizUrl>" class="buttontext">${visitObj.partyId?if_exists}</a></td>
<td><div class="tabletext">${visitObj.userLoginId?if_exists}</div></td>
<td><div class="tabletext">${visitObj.userCreated?if_exists}</div></td>
<td><div class="tabletext">${visitObj.webappName?if_exists}</div></td>
<td><div class="tabletext">${visitObj.clientIpAddress?if_exists}</div></td>
<td><div class="tabletext">${(visitObj.fromDate?string)?if_exists}</div></td>
<td><div class="tabletext">${(visitObj.thruDate?string)?if_exists}</div></td>
</tr>
<#-- toggle the row color -->
<#if rowClass == "viewManyTR2">
<#assign rowClass = "viewManyTR1">
<#else>
<#assign rowClass = "viewManyTR2">
</#if>
</#list>
</table>
<#if visitList?has_content>
<table border="0" width="100%" cellpadding="2">
<tr>
<td align='right'>
<b>
<#if 0 < viewIndex>
<a href="<@ofbizUrl>/showvisits?VIEW_SIZE=${viewSize}&VIEW_INDEX=${viewIndex-1}<#if sort?has_content>&sort=${sort}</#if><#if partyId?has_content>&partyId=${partyId}</#if>&showAll=${showAll}</@ofbizUrl>" class="buttontext">[${uiLabelMap.CommonPrevious}]</a> |
</#if>
<#if 0 < listSize>
<span class="tabletext">${lowIndex+1} - ${highIndex} of ${visitSize}</span>
</#if>
<#if highIndex < listSize>
| <a href="<@ofbizUrl>/showvisits?VIEW_SIZE=${viewSize}&VIEW_INDEX=${viewIndex+1}<#if sort?has_content>&sort=${sort}</#if><#if partyId?has_content>&partyId=${partyId}</#if>&showAll=${showAll}</@ofbizUrl>" class="buttontext">[${uiLabelMap.CommonNext}]</a>
</#if>
</b>
</td>
</tr>
</table>
</#if>
<#else>
<h3>${uiLabelMap.PartyMgrViewPermissionError}</h3>
</#if>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -