SetSampleList.aspx 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage/ErpView.master" AutoEventWireup="true" CodeFile="SetSampleList.aspx.cs" Inherits="EFinance_SetSampleList" %>
  2. <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
  3. <script type="text/javascript" src="js/SetSampleList.js?v=<%=SiteVer %>"></script>
  4. <style type="text/css">
  5. .win_tb {
  6. width: 96%;
  7. margin-left: auto;
  8. margin-right: auto;
  9. margin-top: 10px;
  10. background-color: #dedede;
  11. }
  12. .win_tb td {
  13. height: 36px;
  14. background-color: #fff;
  15. font-size: 14px;
  16. padding: 5px;
  17. }
  18. .win_tb input[type=text] {
  19. width: 90%;
  20. height: 24px;
  21. font-size: 14px;
  22. }
  23. .win_tb input[type=checkbox] {
  24. width: 18px;
  25. height: 18px;
  26. }
  27. .win_tb select {
  28. font-size: 14px;
  29. height: 30px;
  30. padding: 0px 5px;
  31. }
  32. .win_tb .td1 {
  33. color: #666;
  34. background-color: #F8F8F8;
  35. text-align: center;
  36. }
  37. .win_tb .td2 {
  38. }
  39. .word_tui {
  40. border-radius: 50%;
  41. background-color: red;
  42. color: white;
  43. font-size: 14px;
  44. text-align: center;
  45. padding: 3px;
  46. margin-left: 5px;
  47. }
  48. .word_shou {
  49. background-color: saddlebrown;
  50. }
  51. .word_green {
  52. background-color: forestgreen;
  53. }
  54. .mini-grid-cell-nowrap {
  55. overflow: hidden;
  56. word-break: keep-all;
  57. word-wrap: break-word;
  58. white-space: normal;
  59. }
  60. .hz{
  61. display:flex;flex-direction:row; float:right;margin-right:50px;font-size:14px;
  62. height:30px;line-height:30px;vertical-align:middle;
  63. }
  64. .hz a{height:30px;line-height:30px;}
  65. </style>
  66. </asp:Content>
  67. <asp:Content ID="Content2" ContentPlaceHolderID="btn" runat="Server">
  68. <a class="mini-button mini-button-primary" style="padding: 2px 5px 2px 5px;" iconcls="icon-upload" onclick="importSampleListFn()">订单导入</a>
  69. <a class="mini-button mini-button-primary" style="padding: 2px 5px 2px 5px;" iconcls="icon-download" onclick="comExportExcel('拿样明细')">导出</a>
  70. <div class="hz">
  71. 【拿样明细统计】
  72. <div id="id_gatherCount">(0)</div>
  73. <div style="margin-left:10px;" id="id_gatherSum">(0)</div>
  74. <div style="margin-left:10px;" id="id_gatherFu">(0)</div>
  75. <div style="margin-left:10px;" id="id_gatherYong" >(0)</div>
  76. <div style="margin-left: 10px;" id="id_gatherKuaidi">(0)</div>
  77. </div>
  78. </asp:Content>
  79. <asp:Content ID="Content4" ContentPlaceHolderID="content" runat="Server">
  80. <div class="mini-fit">
  81. <div id="m_grid" class="mini-datagrid" style="width: 100%; height: 100%;" showemptytext="true" emptytext="暂无记录" url="../handler/sync.ashx?t=get_erp_sample">
  82. <div property="columns">
  83. <div type="indexcolumn" width="20"></div>
  84. <div type="checkcolumn" width="20"></div>
  85. <div field="ctid" width="150" align="center" headeralign="center">订单号</div>
  86. <div field="shopName" width="80" align="center" style="color:red;" headeralign="center" renderer="SellerBuyerRenderer">店铺</div>
  87. <div field="pay_time" width="60" align="center" headeralign="center" renderer="orderPTimeRenderer">付款时间</div>
  88. <div field="payment" width="50" align="center" headeralign="center">订单金额</div>
  89. <div field="AdvanceFee" width="60" align="center" headeralign="center">垫付金额</div>
  90. <div field="Refund" width="60" align="center" headeralign="center">返款金额</div>
  91. <div field="ServiceFee" width="50" align="center" headeralign="center">服务费</div>
  92. <div field="Commission" width="50" align="center" headeralign="center">佣金</div>
  93. <div field="LogisticsFee" width="60" align="center" headeralign="center">快递费</div>
  94. <div field="status" width="100" align="center" headeralign="center" renderer="orderStatusRenderer">状态</div>
  95. </div>
  96. </div>
  97. </div>
  98. </asp:Content>