order_details.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. $id = $_GET['id'] ?? '';
  5. // 验证并获取订单数据
  6. if (!empty($id) && is_numeric($id)) {
  7. // 获取订单基本信息
  8. $employee_id = $_SESSION['employee_id'];
  9. $isAdmin = checkIfAdmin();
  10. $sql = "SELECT o.*, c.cs_company, c.cs_code, cc.contact_name, e.em_user as employee_name
  11. FROM orders o
  12. LEFT JOIN customer c ON o.customer_id = c.id
  13. LEFT JOIN customer_contact cc ON o.contact_id = cc.id
  14. LEFT JOIN employee e ON o.employee_id = e.id
  15. WHERE o.id = $id";
  16. // 非管理员只能查看自己的订单
  17. if (!$isAdmin) {
  18. $sql .= " AND o.employee_id = $employee_id";
  19. }
  20. $result = mysqli_query($conn, $sql);
  21. if ($row = mysqli_fetch_assoc($result)) {
  22. $order = $row;
  23. } else {
  24. echo "<script>alert('订单不存在或您没有权限查看');history.back();</script>";
  25. exit;
  26. }
  27. // 获取订单项信息
  28. $sql = "SELECT oi.*, p.ProductName,ps.spec_name
  29. FROM order_items oi
  30. LEFT JOIN products p ON oi.product_id = p.id
  31. LEFT JOIN product_specifications ps ON oi.specification_id = ps.id
  32. WHERE oi.order_id = $id";
  33. $itemsResult = mysqli_query($conn, $sql);
  34. $orderItems = [];
  35. while ($itemRow = mysqli_fetch_assoc($itemsResult)) {
  36. $orderItems[] = $itemRow;
  37. }
  38. } else {
  39. echo "<script>alert('订单不存在!');history.back();</script>";
  40. exit;
  41. }
  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. .order-info {
  62. border: 1px solid #ddd;
  63. padding: 15px;
  64. margin-bottom: 20px;
  65. background-color: #f9f9f9;
  66. border-radius: 4px;
  67. box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  68. }
  69. .order-info h2 {
  70. margin-top: 0;
  71. border-bottom: 1px solid #ddd;
  72. padding-bottom: 10px;
  73. }
  74. .order-info .info-row {
  75. margin-bottom: 10px;
  76. }
  77. .order-info .info-label {
  78. font-weight: bold;
  79. display: inline-block;
  80. width: 120px;
  81. }
  82. /* 产品行样式 - 从order_add.php采用 */
  83. .product-row {
  84. position: relative;
  85. padding: 12px 15px;
  86. margin-bottom: 8px;
  87. border-radius: 4px;
  88. display: flex;
  89. align-items: center;
  90. flex-wrap: wrap;
  91. gap: 8px;
  92. background-color: #f9f9f9;
  93. box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  94. }
  95. .product-info {
  96. flex: 2;
  97. min-width: 200px;
  98. }
  99. .product-spec {
  100. flex: 2;
  101. min-width: 200px;
  102. }
  103. .product-quantity {
  104. flex: 1;
  105. min-width: 80px;
  106. }
  107. .product-unit {
  108. flex: 0.5;
  109. min-width: 60px;
  110. }
  111. .product-price {
  112. flex: 1;
  113. min-width: 100px;
  114. }
  115. .product-total {
  116. flex: 1;
  117. min-width: 100px;
  118. font-weight: bold;
  119. }
  120. .product-discount {
  121. flex: 1;
  122. min-width: 100px;
  123. }
  124. .product-notes {
  125. flex: 2;
  126. min-width: 200px;
  127. }
  128. .row-section {
  129. display: flex;
  130. flex-direction: column;
  131. }
  132. .row-section-label {
  133. font-size: 12px;
  134. color: #666;
  135. margin-bottom: 3px;
  136. }
  137. .product-list-header {
  138. display: flex;
  139. background-color: #eee;
  140. padding: 8px 15px;
  141. margin-bottom: 10px;
  142. border-radius: 4px;
  143. font-weight: bold;
  144. color: #555;
  145. font-size: 13px;
  146. gap: 8px;
  147. }
  148. /* 响应式设计 */
  149. @media (max-width: 768px) {
  150. .product-row {
  151. flex-direction: column;
  152. align-items: flex-start;
  153. }
  154. .product-info, .product-spec, .product-quantity,
  155. .product-unit, .product-price, .product-total,
  156. .product-discount, .product-notes {
  157. width: 100%;
  158. min-width: 100%;
  159. margin-bottom: 8px;
  160. }
  161. .product-list-header {
  162. display: none !important;
  163. }
  164. .row-section-label span {
  165. display: inline;
  166. }
  167. }
  168. .notes-section {
  169. border: 1px solid #ddd;
  170. padding: 15px;
  171. margin-bottom: 20px;
  172. border-radius: 4px;
  173. box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  174. }
  175. .total-section {
  176. text-align: right;
  177. font-size: 1.1em;
  178. margin-top: 10px;
  179. border-top: 1px solid #ddd;
  180. padding-top: 10px;
  181. background-color: #f5f5f5;
  182. border-radius: 4px;
  183. padding: 15px;
  184. box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  185. }
  186. </style>
  187. </head>
  188. <body>
  189. <div id="man_zone">
  190. <div align="right" style="margin-bottom: 10px;">
  191. <input type="button" value="返回订单列表" class="btn1" onClick="location.href='order.php'" />
  192. <input type="button" value="编辑此订单" class="btn1" onClick="location.href='order_edit.php?id=<?= $id ?>'" />
  193. </div>
  194. <div class="order-info">
  195. <h2>订单信息</h2>
  196. <div class="info-row">
  197. <span class="info-label">销售订单号:</span> <?= htmlspecialcharsFix($order['order_code']) ?>
  198. </div>
  199. <div class="info-row">
  200. <span class="info-label">客户:</span>
  201. <?php if (!empty($order['cs_code'])): ?>
  202. <?= htmlspecialcharsFix($order['cs_code']) ?> -
  203. <?php endif; ?>
  204. <?= htmlspecialcharsFix($order['cs_company']) ?>
  205. </div>
  206. <!-- <div class="info-row">-->
  207. <!-- <span class="info-label">联系人:</span> --><?php //= htmlspecialcharsFix($order['contact_name']) ?>
  208. <!-- </div>-->
  209. <div class="info-row">
  210. <span class="info-label">出货日期:</span> <?= date('Y-m-d', strtotime($order['order_date'])) ?>
  211. </div>
  212. <div class="info-row">
  213. <span class="info-label">创建时间:</span> <?= $order['created_at'] ?>
  214. </div>
  215. <div class="info-row">
  216. <span class="info-label">最后更新:</span> <?= $order['updated_at'] ?>
  217. </div>
  218. <div class="info-row">
  219. <span class="info-label">销售员:</span> <?= htmlspecialcharsFix($order['employee_name']) ?>
  220. </div>
  221. </div>
  222. <h2>订单产品</h2>
  223. <!-- 产品表头 -->
  224. <div class="product-list-header">
  225. <div style="flex: 2; min-width: 200px;">产品</div>
  226. <div style="flex: 2; min-width: 200px;">规格</div>
  227. <div style="flex: 1; min-width: 80px;">数量</div>
  228. <div style="flex: 0.5; min-width: 60px;">单位</div>
  229. <div style="flex: 1; min-width: 100px;">单价</div>
  230. <div style="flex: 1; min-width: 100px;">总价</div>
  231. </div>
  232. <!-- 产品列表 -->
  233. <div id="product-container">
  234. <?php foreach ($orderItems as $index => $item): ?>
  235. <div class="product-row">
  236. <!-- 产品名称 -->
  237. <div class="row-section product-info">
  238. <div class="selected-product-info"><?= htmlspecialcharsFix($item['ProductName']) ?></div>
  239. </div>
  240. <!-- 规格 -->
  241. <div class="row-section product-spec">
  242. <div><?= $item['spec_name'] ?></div>
  243. </div>
  244. <!-- 数量 -->
  245. <div class="row-section product-quantity">
  246. <div><?= $item['quantity'] ?></div>
  247. </div>
  248. <!-- 单位 -->
  249. <div class="row-section product-unit">
  250. <div><?= htmlspecialcharsFix($item['unit']) ?></div>
  251. </div>
  252. <!-- 单价 -->
  253. <div class="row-section product-price">
  254. <div><?= number_format($item['unit_price'], 2) ?></div>
  255. </div>
  256. <!-- 总价 -->
  257. <div class="row-section product-total">
  258. <div><?= number_format($item['total_price'], 2) ?></div>
  259. </div>
  260. </div>
  261. <?php endforeach; ?>
  262. </div>
  263. <div class="total-section">
  264. <div style="font-size: 1.2em; margin-top: 5px;">
  265. <strong>订单总额:</strong> <?= number_format($order['total_amount'], 2) ?>
  266. </div>
  267. </div>
  268. <div class="notes-section">
  269. <h2>订单备注</h2>
  270. <div>
  271. <?php if (!empty($order['notes'])): ?>
  272. <p><?= nl2br(htmlspecialcharsFix($order['notes'])) ?></p>
  273. <?php else: ?>
  274. <p><em>无备注</em></p>
  275. <?php endif; ?>
  276. </div>
  277. </div>
  278. </div>
  279. </body>
  280. </html>