order_details.php 9.4 KB

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