taxInfoPop.jsp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <%--
  2. - FileName : UserList.jsp
  3. - Author(s) : Joung Kyu Park
  4. - Date : 2007.05.16
  5. - Copyright : Copyright (c) 2002-2007 www.hwenc.com, Inc.
  6. -
  7. - Description: 세금계산서 팝업
  8. --%>
  9. <%@ page contentType="text/html; charset=utf-8" %>
  10. <%@ page import="com.udapsoft.waf.system.HandlerStorage" %>
  11. <%@ page import="com.udapsoft.waf.common.ui.*" %>
  12. <%@ page import="kr.co.hsnc.common.util.*"%>
  13. <%@ page import="kr.co.hsnc.common.sql.*" %>
  14. <%@ page import="kr.co.hsnc.common.config.WAFConfig"%>
  15. <%@ include file="/jsp/work/taglib.jsp" %>
  16. <%@ page contentType="text/html; charset=utf-8" %>
  17. <jsp:useBean id="ctx" class="com.udapsoft.waf.system.context.SessionContext" scope="session" />
  18. <%
  19. ctx.init(request, response);
  20. HandlerStorage storage = ctx.getHandlerStorage();
  21. ValueObject params = storage.getParams();
  22. RowSet rowSet = storage.getRowSet("rowSet");
  23. String sUrl = WAFConfig.get("waf.smb.url");
  24. for(int i=0; i<rowSet.size();i++)
  25. {
  26. %>
  27. <iframe src="<%=sUrl%>/callSB_V3/XXSB_DTI_PRINT_VIEW.asp?CONVERSATION_ID=<%=rowSet.getRow(i).get("CONVERSATION_ID")%>&SBTYPE=AP" frameborder="0" width="660" height="530">
  28. </iframe><br/>
  29. <%
  30. }
  31. %>