order.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. // 辅助函数
  5. $act = $_GET['act'] ?? '';
  6. $urlStr = '';
  7. // 处理筛选条件
  8. $fliterFromDate = $_GET['fliterFromDate'] ?? '';
  9. $fliterToDate = $_GET['fliterToDate'] ?? '';
  10. $fliterStr = "";
  11. if (!empty($fliterFromDate)) {
  12. $fliterStr .= " AND o.order_date >= '" . mysqli_real_escape_string($conn, $fliterFromDate) . "'";
  13. $urlStr .= "&fliterFromDate=" . urlencode($fliterFromDate);
  14. }
  15. if (!empty($fliterToDate)) {
  16. $fliterStr .= " AND o.order_date <= '" . mysqli_real_escape_string($conn, $fliterToDate) . " 23:59:59'";
  17. $urlStr .= "&fliterToDate=" . urlencode($fliterToDate);
  18. }
  19. // 搜索和排序
  20. $keys = $_GET['Keys'] ?? '';
  21. $keyscode = mysqli_real_escape_string($conn, $keys);
  22. $page = $_GET['Page'] ?? 1;
  23. $ord = $_GET['Ord'] ?? '';
  24. $ordStr = !empty($ord) ? "$ord," : "";
  25. // 构建查询SQL
  26. $employee_id = $_SESSION['employee_id'];
  27. $sqlStr = "SELECT o.*, c.cs_company, c.cs_code
  28. FROM orders o
  29. LEFT JOIN customer c ON o.customer_id = c.id
  30. WHERE o.employee_id = $employee_id";
  31. if (!empty($keyscode)) {
  32. $sqlStr .= " AND (o.order_code LIKE '%$keyscode%'
  33. OR c.cs_company LIKE '%$keyscode%'
  34. OR c.cs_code LIKE '%$keyscode%')";
  35. }
  36. $sqlStr .= " $fliterStr ORDER BY {$ordStr}o.created_at DESC";
  37. ?>
  38. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  39. <html xmlns="http://www.w3.org/1999/xhtml">
  40. <head>
  41. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  42. <title>订单列表</title>
  43. <link rel="stylesheet" href="css/common.css" type="text/css" />
  44. <link rel="stylesheet" href="css/alert.css" type="text/css" />
  45. <script src="js/jquery-1.7.2.min.js"></script>
  46. <script src="js/js.js"></script>
  47. <style>
  48. body {
  49. margin: 0;
  50. padding: 20px;
  51. background: #fff;
  52. }
  53. #man_zone {
  54. margin-left: 0;
  55. }
  56. /* 表格布局修复 */
  57. .table2 {
  58. width: 100%;
  59. }
  60. .theader, .tline {
  61. display: flex;
  62. flex-direction: row;
  63. align-items: center;
  64. width: 100%;
  65. border-bottom: 1px solid #ddd;
  66. }
  67. .theader {
  68. background-color: #f2f2f2;
  69. font-weight: bold;
  70. height: 40px;
  71. }
  72. .tline {
  73. height: 45px;
  74. }
  75. .tline:hover {
  76. background-color: #f5f5f5;
  77. }
  78. .col2 { width: 5%; text-align: center; }
  79. .col3 { width: 10%; }
  80. .col4 { width: 20%; }
  81. .col5 { width: 30%; }
  82. .col7 { width: 16%; }
  83. .col9 { width: 14%; text-align: right; }
  84. .col10 { width: 16%; text-align: center; }
  85. /* 表格布局修复,因为 "css/common.css 覆盖了 */
  86. .table2 .col2 { width: 5%; text-align: center; }
  87. .table2 .col3 { width: 10%; }
  88. .table2 .col4 { width: 20%; }
  89. .table2 .col5 { width: 30%; }
  90. .table2 .col7 { width: 16%; }
  91. .table2 .col9 { width: 14%; text-align: right; }
  92. .table2 .col10 { width: 16%; text-align: center; }
  93. .theader > div, .tline > div {
  94. padding: 0 5px;
  95. overflow: hidden;
  96. text-overflow: ellipsis;
  97. white-space: nowrap;
  98. }
  99. /* 日期选择器样式 */
  100. .date-input {
  101. padding: 5px;
  102. border: 1px solid #ccc;
  103. border-radius: 3px;
  104. }
  105. /* 滑动面板样式 */
  106. .slidepanel {
  107. cursor: pointer;
  108. }
  109. .slidepanel.open {
  110. font-weight: bold;
  111. color: #3366cc;
  112. }
  113. .notepanel {
  114. display: none;
  115. background: #f9f9f9;
  116. padding: 10px;
  117. border: 1px solid #eee;
  118. margin-bottom: 10px;
  119. }
  120. .notepanel .noteItem {
  121. font-weight: bold;
  122. margin-bottom: 5px;
  123. }
  124. .notepanel .noteItem2 {
  125. font-weight: bold;
  126. margin-bottom: 5px;
  127. }
  128. .lx {
  129. display: flex;
  130. flex-wrap: wrap;
  131. gap: 15px;
  132. }
  133. .lx > div {
  134. margin-bottom: 10px;
  135. }
  136. .lx > div > div {
  137. margin-bottom: 5px;
  138. }
  139. /* 按钮样式 */
  140. .ico_del {
  141. color: #e74c3c;
  142. }
  143. .ico_del:hover {
  144. color: #c0392b;
  145. }
  146. </style>
  147. </head>
  148. <body>
  149. <div id="man_zone">
  150. <div class="fastSelect clear">
  151. <H1>筛选条件</H1>
  152. <div class="selectItem">
  153. <label>订单日期</label>
  154. <input type="date" name="fliterFromDate" class="date-input filterSearch" value="<?= $fliterFromDate ?>">
  155. <label>到</label>
  156. <input type="date" name="fliterToDate" class="date-input filterSearch" value="<?= $fliterToDate ?>">
  157. </div>
  158. <div class="inputSearch" >
  159. <input type="text" id="keys" class="inputTxt" placeholder="请输入搜索关键词"
  160. value="<?= empty($keyscode) ? '' : $keyscode ?>" />
  161. <input type="button" id="searchgo" class="searchgo" value="搜索"
  162. onClick="location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)" />
  163. </div>
  164. </div>
  165. <div align="right" style="margin-bottom: 10px;">
  166. <input type="button" value="新增订单" class="btn1" onClick="location.href='order_add.php'" />
  167. </div>
  168. <div class="table2 em<?= $_SESSION['employee_id'] ?>">
  169. <div class="theader">
  170. <div class="col2">序号</div>
  171. <div class="col3">销售订单号</div>
  172. <div class="col4">客户编码</div>
  173. <div class="col5">客户</div>
  174. <div class="col7">订单日期</div>
  175. <div class="col9">订单金额</div>
  176. <div class="col10">操作</div>
  177. </div>
  178. <?php
  179. // 设置每页显示记录数
  180. $pageSize = 20;
  181. // 获取总记录数
  182. $employee_id = $_SESSION['employee_id'];
  183. $countSql = "SELECT COUNT(*) AS total FROM orders o
  184. LEFT JOIN customer c ON o.customer_id = c.id
  185. WHERE o.employee_id = $employee_id";
  186. if (!empty($keyscode)) {
  187. $countSql .= " AND (o.order_code LIKE '%$keyscode%'
  188. OR c.cs_company LIKE '%$keyscode%'
  189. OR c.cs_code LIKE '%$keyscode%')";
  190. }
  191. $countSql .= $fliterStr;
  192. $countResult = mysqli_query($conn, $countSql);
  193. $countRow = mysqli_fetch_assoc($countResult);
  194. $totalRecords = $countRow['total'];
  195. // 计算总页数
  196. $totalPages = ceil($totalRecords / $pageSize);
  197. if ($totalPages < 1) $totalPages = 1;
  198. // 验证当前页码
  199. $page = (int)$page;
  200. if ($page < 1) $page = 1;
  201. if ($page > $totalPages) $page = $totalPages;
  202. // 计算起始记录
  203. $offset = ($page - 1) * $pageSize;
  204. // 添加分页条件
  205. $sqlStr .= " LIMIT $offset, $pageSize";
  206. $result = mysqli_query($conn, $sqlStr);
  207. if (mysqli_num_rows($result) > 0) {
  208. $tempNum = ($page - 1) * $pageSize;
  209. while ($row = mysqli_fetch_assoc($result)) {
  210. $tempNum++;
  211. ?>
  212. <div class="tline">
  213. <div class="col2"><?= $tempNum ?></div>
  214. <div class="col3 slidepanel"><?= htmlspecialcharsFix($row['order_code']) ?></div>
  215. <div class="col4"><?= htmlspecialcharsFix($row['cs_code']) ?></div>
  216. <div class="col5"><?= htmlspecialcharsFix($row['cs_company']) ?></div>
  217. <div class="col7"><?= date('Y-m-d', strtotime($row['order_date'])) ?></div>
  218. <div class="col9"><?= number_format($row['total_amount'], 2) ?></div>
  219. <div class="col10">
  220. <a href="order_edit.php?id=<?= $row['id'] ?>&keys=<?= $keys ?>&page=<?= $page ?>" class="ico_edit ico">修改</a>
  221. <a href="order_details.php?id=<?= $row['id'] ?>" class="ico_view ico">查看详情</a>
  222. <a href="javascript:void(0)" onclick="confirmDelete(<?= $row['id'] ?>, '<?= htmlspecialcharsFix($row['order_code']) ?>')" class="ico_del ico">删除</a>
  223. </div>
  224. </div>
  225. <div class="notepanel clear">
  226. <div class="noteItem">订单详情</div>
  227. <div class="lx">
  228. <div><strong>总金额:</strong> <?= number_format($row['total_amount'], 2) ?></div>
  229. <!-- <div class="price-details">-->
  230. <!-- <div><strong>小计:</strong> --><?php //= number_format($row['subtotal'], 2) ?><!--</div>-->
  231. <!-- <div><strong>折扣金额:</strong> --><?php //= number_format($row['discount_amount'], 2) ?><!--</div>-->
  232. <!-- </div>-->
  233. </div>
  234. <div class="noteItem2">备注</div>
  235. <div class="notecontent"><?= htmlspecialcharsFix($row['notes']) ?></div>
  236. </div>
  237. <?php
  238. }
  239. } else {
  240. if (empty($keys) && empty($fliterStr)) {
  241. echo '<div class="tline"><div align="center" colspan="9">当前暂无订单记录</div></div>';
  242. } else {
  243. echo '<div class="tline"><div align="center" colspan="9"><a href="?">没有找到匹配的订单记录,点击返回</a></div></div>';
  244. }
  245. }
  246. ?>
  247. <div class="showpagebox">
  248. <?php
  249. if ($totalPages > 1) {
  250. $pageName = "?Keys=$keys$urlStr&";
  251. $pageLen = 3;
  252. if ($page > 1) {
  253. echo "<a href=\"{$pageName}Page=1\">首页</a>";
  254. echo "<a href=\"{$pageName}Page=" . ($page - 1) . "\">上一页</a>";
  255. }
  256. if ($pageLen * 2 + 1 >= $totalPages) {
  257. $startPage = 1;
  258. $endPage = $totalPages;
  259. } else {
  260. if ($page <= $pageLen + 1) {
  261. $startPage = 1;
  262. $endPage = $pageLen * 2 + 1;
  263. } else {
  264. $startPage = $page - $pageLen;
  265. $endPage = $page + $pageLen;
  266. }
  267. if ($page + $pageLen > $totalPages) {
  268. $startPage = $totalPages - $pageLen * 2;
  269. $endPage = $totalPages;
  270. }
  271. }
  272. for ($i = $startPage; $i <= $endPage; $i++) {
  273. if ($i == $page) {
  274. echo "<a class=\"current\">$i</a>";
  275. } else {
  276. echo "<a href=\"{$pageName}Page=$i\">$i</a>";
  277. }
  278. }
  279. if ($page < $totalPages) {
  280. if ($totalPages - $page > $pageLen) {
  281. echo "<a href=\"{$pageName}Page=$totalPages\">...$totalPages</a>";
  282. }
  283. echo "<a href=\"{$pageName}Page=" . ($page + 1) . "\">下一页</a>";
  284. echo "<a href=\"{$pageName}Page=$totalPages\">尾页</a>";
  285. }
  286. }
  287. ?>
  288. </div>
  289. </div>
  290. <script>
  291. $(document).ready(function() {
  292. // 添加日期验证逻辑
  293. $('input[name="fliterToDate"]').on('change', function() {
  294. var fromDate = $('input[name="fliterFromDate"]').val();
  295. var toDate = $(this).val();
  296. if (fromDate && toDate && new Date(toDate) < new Date(fromDate)) {
  297. alert('结束日期不能早于开始日期');
  298. $(this).val(''); // 清空结束日期
  299. return false;
  300. }
  301. });
  302. // 开始日期变更时也进行验证
  303. $('input[name="fliterFromDate"]').on('change', function() {
  304. var fromDate = $(this).val();
  305. var toDate = $('input[name="fliterToDate"]').val();
  306. if (fromDate && toDate && new Date(toDate) < new Date(fromDate)) {
  307. alert('开始日期不能晚于结束日期');
  308. $('input[name="fliterToDate"]').val(''); // 清空结束日期
  309. return false;
  310. }
  311. });
  312. // 处理筛选条件改变
  313. $('.filterSearch').change(function() {
  314. var url = '?';
  315. var keys = $('#keys').val();
  316. if (keys && keys != '请输入搜索关键词') {
  317. url += 'Keys=' + encodeURIComponent(keys) + '&';
  318. }
  319. $('.filterSearch').each(function() {
  320. var name = $(this).attr('name');
  321. var value = $(this).val();
  322. if (value) {
  323. url += name + '=' + encodeURIComponent(value) + '&';
  324. }
  325. });
  326. // 移除末尾的&
  327. if (url.endsWith('&')) {
  328. url = url.substring(0, url.length - 1);
  329. }
  330. location.href = url;
  331. });
  332. });
  333. </script>
  334. <script>
  335. function confirmDelete(id, orderCode) {
  336. if (confirm("确定要删除订单 " + orderCode + " 吗?此操作不可恢复!")) {
  337. window.location.href = "order_delete.php?id=" + id + "&keys=<?= urlencode($keys) ?>&page=<?= $page ?>";
  338. }
  339. }
  340. </script>
  341. </div>
  342. </body>
  343. </html>