order.php 14 KB

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