header.ftl
上传用户:hbzhoufeng
上传日期:2009-12-23
资源大小:75k
文件大小:3k
源码类别:

OA系统

开发平台:

Java

  1. <#--
  2.  *  Copyright (c) 2003 The Open For Business Project - www.ofbiz.org
  3.  *
  4.  *  Permission is hereby granted, free of charge, to any person obtaining a 
  5.  *  copy of this software and associated documentation files (the "Software"), 
  6.  *  to deal in the Software without restriction, including without limitation 
  7.  *  the rights to use, copy, modify, merge, publish, distribute, sublicense, 
  8.  *  and/or sell copies of the Software, and to permit persons to whom the 
  9.  *  Software is furnished to do so, subject to the following conditions:
  10.  *
  11.  *  The above copyright notice and this permission notice shall be included 
  12.  *  in all copies or substantial portions of the Software.
  13.  *
  14.  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
  15.  *  OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
  16.  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
  17.  *  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 
  18.  *  CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT 
  19.  *  OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR 
  20.  *  THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  21.  *
  22.  *@author     Andy Zeneski (jaz@ofbiz.org)
  23.  *@version    $Revision: 1.2 $
  24.  *@since      2.1
  25. -->
  26. <#assign security = requestAttributes.security>
  27. <div class="apptitle">&nbsp;Order Manager Application&nbsp;</div>
  28. <div class="row">
  29.   <div class="col"><a href="<@ofbizUrl>/main</@ofbizUrl>" class="headerButtonLeft">Main</a></div>
  30.   <#if security.hasRolePermission("ORDERMGR", "_VIEW", "", "", session)>
  31.   <div class="col"><a href="<@ofbizUrl>/tasklist</@ofbizUrl>" class="headerButtonLeft">Order&nbsp;List</a></div>
  32.   </#if>
  33.   <#if security.hasEntityPermission("ORDERMGR", "_VIEW", session)>
  34.   <div class="col"><a href="<@ofbizUrl>/orderlist</@ofbizUrl>" class="headerButtonLeft">Find&nbsp;Orders</a></div>
  35.   </#if>
  36.   <#if security.hasEntityPermission("ORDERMGR", "_CREATE", session)>
  37.   <div class="col"><a href="<@ofbizUrl>/salesentry</@ofbizUrl>" class="headerButtonLeft">Sale&nbsp;Entry</a></div>
  38.   <#--<div class="col"><a href="<@ofbiUrl>#</@ofbizUrl>" class="headerButtonLeft">Purchase&nbsp;Entry</a></div>-->
  39.   </#if>
  40.   <div class="col"><a href="<@ofbizUrl>/orderreportlist</@ofbizUrl>" class="headerButtonLeft">Order&nbsp;Reports</a></div>                 
  41.   <#if requestAttributes.userLogin?has_content>
  42.     <div class="col-right"><a href="<@ofbizUrl>/logout</@ofbizUrl>" class="headerButtonRight">Logout</a></div>
  43.   <#else>
  44.     <div class="col-right"><a href='<@ofbizUrl>${requestAttributes.checkLoginUrl?if_exists}</@ofbizUrl>' class='headerButtonRight'>Login</a></div>
  45.   </#if>
  46.   <div class="col-right"><a href='<@ofbizUrl>/shipsetup</@ofbizUrl>' class="headerButtonRight">Setup</a></div>
  47.   <div class="col-fill">&nbsp;</div>
  48. </div>