barStockCode.jsp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <%@ page language="java" contentType="text/html; charset=utf-8"
  2. pageEncoding="utf-8"%>
  3. <%
  4. String path = request.getContextPath();
  5. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  6. %>
  7. <!DOCTYPE html>
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  11. <link rel="stylesheet" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css" type="text/css"></link>
  12. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  13. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  14. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  15. <script type="text/javascript" src="<%=basePath %>resource/lodopActivex/LodopsFuncs.js"></script>
  16. <object id="LODOP_OB" classid="clsid:2105C259-1E0C-4534-8141-A753534CB4CA" width=0 height=0>
  17. <embed id="LODOP_EM" type="application/x-print-lodop" width=0 height=0></embed>
  18. </object>
  19. <script type="text/javascript">
  20. Ext.Loader.setConfig({
  21. enabled: true
  22. });//开启动态加载
  23. Ext.application({
  24. name: 'erp',//为应用程序起一个名字,相当于命名空间
  25. appFolder: basePath+'app',//app文件夹所在路径
  26. controllers: [//声明所用到的控制层
  27. 'scm.reserve.BarStockCode'
  28. ],
  29. launch: function() {
  30. Ext.create('erp.view.scm.reserve.barStockCode.Viewport');//创建视图
  31. }
  32. });
  33. var caller ='BarStockCode';
  34. var formCondition = '';
  35. var gridCondition = '';
  36. var lps_barcaller = '';
  37. var lps_obcaller = '';
  38. if(window.parent.caller == 'BarStock!Profit'){
  39. lps_barcaller = 'BarSProfit!BarPrint';
  40. lps_obcaller = 'BarSProfit!ObxPrint';
  41. }
  42. </script>
  43. </head>
  44. <body >
  45. </body>
  46. </html>