saleReport.jsp 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <%@ page language="java" contentType="text/html; charset=utf-8"
  2. pageEncoding="utf-8"%>
  3. <%
  4. request.setCharacterEncoding("utf-8");
  5. String path = request.getContextPath();
  6. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  7. %>
  8. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  9. <html xmlns="http://www.w3.org/1999/xhtml">
  10. <head>
  11. <link rel="stylesheet" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css" type="text/css"></link>
  12. <%-- <link rel="stylesheet" href="<%=basePath %>jsps/sys/css/init.css" type="text/css"></link> --%>
  13. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  14. <style>
  15. .x-btn-default-small{
  16. border-radius:0px;
  17. }
  18. td, th {
  19. display: table-cell;
  20. vertical-align: inherit;
  21. line-height:26px;
  22. }
  23. .progress>div>ul>li>span{
  24. display:inline-block!important;
  25. }
  26. .progress>div>ul>li{
  27. line-height:35px;
  28. cursor: pointer;
  29. }
  30. .progress>div>ul>li>span.font{
  31. font-size:14px!important;
  32. margin-left: 5px;
  33. }
  34. .redcircle {
  35. z-index: 2;
  36. /* position: relative; */
  37. height: 10px;
  38. width: 10px;
  39. -webkit-border-radius: 50em;
  40. -moz-border-radius: 50em;
  41. border-radius: 50em;
  42. font-size: 10px;
  43. background: red;
  44. -webkit-box-sizing: content-box;
  45. -moz-box-sizing: content-box;
  46. box-sizing: content-box;
  47. padding: 0;
  48. display: block;
  49. cursor: pointer;
  50. }
  51. .greencircle{
  52. z-index: 2;
  53. /* position: relative; */
  54. height: 10px;
  55. width: 10px;
  56. -webkit-border-radius: 50em;
  57. -moz-border-radius: 50em;
  58. border-radius: 50em;
  59. font-size: 10px;
  60. background: #6dd866;
  61. -webkit-box-sizing: content-box;
  62. -moz-box-sizing: content-box;
  63. box-sizing: content-box;
  64. padding: 0;
  65. display: block;
  66. cursor: pointer;
  67. }
  68. .salereportna {
  69. background-color:white !important;
  70. border-width:0 px !important;
  71. }
  72. </style>
  73. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  74. <script type="text/javascript" src="<%=basePath %>resource/ux/RowExpander.js"></script>
  75. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  76. <script type="text/javascript">
  77. /**
  78. * 优化
  79. */
  80. Ext.Loader.setConfig({
  81. enabled: true
  82. });//开启动态加载
  83. Ext.application({
  84. name: 'erp',//为应用程序起一个名字,相当于命名空间
  85. appFolder: basePath+'app',//app文件夹所在路径
  86. controllers: [//声明所用到的控制层
  87. 'fs.cust.SaleReport'
  88. ],
  89. launch: function() {
  90. Ext.create('erp.view.fs.cust.SaleReport');//创建视图
  91. }
  92. });
  93. var custcode = getUrlParam('sa_custcode');
  94. var ordercode = getUrlParam('sa_code');
  95. function changeModule(module){
  96. var href = "#"+module;
  97. location.hash=href;
  98. }
  99. </script>
  100. </head>
  101. <body >
  102. </body>
  103. </html>