order.php 14 KB

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