order_save.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. $isedit = false;
  5. $id = $_POST['id'] ?? '';
  6. if (!empty($id) && is_numeric($id)) {
  7. $isedit = true;
  8. // 检查是否为管理员,非管理员只能编辑自己的订单
  9. $isAdmin = checkIfAdmin();
  10. if (!$isAdmin) {
  11. // 验证订单所有权
  12. $checkOwnershipQuery = "SELECT id FROM orders WHERE id = $id AND employee_id = " . $_SESSION['employee_id'];
  13. $ownershipResult = mysqli_query($conn, $checkOwnershipQuery);
  14. if (mysqli_num_rows($ownershipResult) === 0) {
  15. echo "<script>alert('您没有权限编辑此订单!');history.back();</script>";
  16. exit;
  17. }
  18. }
  19. }
  20. // 获取表单数据 - 订单基本信息
  21. $order_code = mysqli_real_escape_string($conn, htmlspecialchars($_POST['order_code'], ENT_QUOTES, 'UTF-8'));
  22. $customer_id = (int)$_POST['customer_id'];
  23. $contact_id = !empty($_POST['contact_id']) ? (int)$_POST['contact_id'] : "NULL";
  24. $employee_id = $_SESSION['employee_id'];
  25. $order_date = mysqli_real_escape_string($conn, $_POST['order_date']);
  26. // 设置已删除字段的默认值
  27. $delivery_date = "NULL";
  28. $actual_delivery_date = "NULL";
  29. $order_status = 1; // 默认为"待确认"
  30. $payment_status = 0; // 默认为"未付款"
  31. $currency = "CNY"; // 默认为人民币
  32. $notes = mysqli_real_escape_string($conn, htmlspecialchars($_POST['notes'], ENT_QUOTES, 'UTF-8'));
  33. $internal_notes = ""; // 默认为空
  34. // 获取订单项信息
  35. $items = $_POST['items'] ?? [];
  36. // 计算订单总额
  37. $subtotal = 0;
  38. $discount_amount = !empty($_POST['discount_amount']) ? (float)$_POST['discount_amount'] : 0;
  39. foreach ($items as $item) {
  40. $quantity = (int)$item['quantity'];
  41. $total_price = (float)$item['total_price']; // 直接使用用户输入的总价
  42. $subtotal += $total_price;
  43. }
  44. $total_amount = $subtotal - $discount_amount;
  45. // 验证必填字段
  46. if (empty($order_code)) {
  47. echo "<script>alert('销售订单号不能为空');history.back();</script>";
  48. exit;
  49. }
  50. if ($customer_id <= 0) {
  51. echo "<script>alert('请选择客户');history.back();</script>";
  52. exit;
  53. }
  54. if (empty($items)) {
  55. echo "<script>alert('订单必须包含至少一个产品');history.back();</script>";
  56. exit;
  57. }
  58. $customer_country=0;
  59. // 检查客户国家和产品销售限制
  60. $customer_query = "SELECT cs_country FROM customer WHERE id = $customer_id LIMIT 1";
  61. $customer_result = mysqli_query($conn, $customer_query);
  62. if ($customer_result && mysqli_num_rows($customer_result) > 0) {
  63. $customer_data = mysqli_fetch_assoc($customer_result);
  64. $customer_country = $customer_data['cs_country'];
  65. if (!empty($customer_country)) {
  66. $restricted_products = [];
  67. foreach ($items as $item) {
  68. if (empty($item['product_id'])) continue;
  69. $product_id = (int)$item['product_id'];
  70. // 获取产品详情,包括nosale字段
  71. $product_query = "SELECT ProductName, nosale FROM products WHERE id = $product_id LIMIT 1";
  72. $product_result = mysqli_query($conn, $product_query);
  73. if ($product_result && mysqli_num_rows($product_result) > 0) {
  74. $product_data = mysqli_fetch_assoc($product_result);
  75. $nosale_countries = $product_data['nosale'];
  76. // 检查客户所在国家是否在销售限制列表中
  77. if (!empty($nosale_countries)) {
  78. $restricted_countries = explode(',', $nosale_countries);
  79. if (in_array($customer_country, $restricted_countries)) {
  80. $restricted_products[] = $product_data['ProductName'];
  81. }
  82. }
  83. }
  84. }
  85. // 如果有限制销售的产品,显示错误并返回
  86. if (!empty($restricted_products)) {
  87. $restricted_product_names = implode('、', $restricted_products);
  88. echo "<script>alert('以下产品不能销售给所选客户所在的国家/地区: {$restricted_product_names}');history.back();</script>";
  89. exit;
  90. }
  91. }
  92. }
  93. // 处理保存
  94. if ($isedit) {
  95. // 更新订单基本信息
  96. $sql = "UPDATE orders SET
  97. order_code = '$order_code',
  98. customer_id = $customer_id,
  99. contact_id = $contact_id,
  100. employee_id = $employee_id,
  101. order_date = '$order_date',
  102. delivery_date = $delivery_date,
  103. actual_delivery_date = $actual_delivery_date,
  104. order_status = $order_status,
  105. payment_status = $payment_status,
  106. currency = '$currency',
  107. subtotal = $subtotal,
  108. discount_amount = $discount_amount,
  109. total_amount = $total_amount,
  110. notes = '$notes',
  111. internal_notes = '$internal_notes',
  112. updated_at = NOW()
  113. WHERE id = $id";
  114. mysqli_query($conn, $sql);
  115. // 删除旧的订单项
  116. $sql = "DELETE FROM order_items WHERE order_id = $id";
  117. mysqli_query($conn, $sql);
  118. // 添加新的订单项
  119. foreach ($items as $item) {
  120. if (empty($item['product_id'])) continue; // 跳过没有选择产品的行
  121. $product_id = (int)$item['product_id'];
  122. $quantity = (int)$item['quantity'];
  123. $unit = mysqli_real_escape_string($conn, htmlspecialchars($item['unit'], ENT_QUOTES, 'UTF-8'));
  124. $total_price = (float)$item['total_price'];
  125. // 如果数量大于0,计算单价,否则单价为0
  126. $unit_price = ($quantity > 0) ? ($total_price / $quantity) : 0;
  127. $item_notes = mysqli_real_escape_string($conn, htmlspecialchars($item['notes'] ?? '', ENT_QUOTES, 'UTF-8'));
  128. $sql = "INSERT INTO order_items (
  129. order_id, product_id, specification_id, quantity, unit, unit_price,
  130. total_price, notes,
  131. created_at, updated_at
  132. ) VALUES (
  133. $id, $product_id, 0, $quantity, '$unit', $unit_price,
  134. $total_price, '$item_notes',
  135. NOW(), NOW()
  136. )";
  137. mysqli_query($conn, $sql);
  138. }
  139. $message = "订单更新成功!";
  140. } else {
  141. // 创建新订单
  142. $sql = "INSERT INTO orders (
  143. order_code, customer_id, contact_id, employee_id,
  144. order_date, delivery_date, actual_delivery_date,
  145. order_status, payment_status, currency,
  146. subtotal, discount_amount, total_amount,
  147. notes, internal_notes, created_at, updated_at
  148. ) VALUES (
  149. '$order_code', $customer_id, $contact_id, $employee_id,
  150. '$order_date', $delivery_date, $actual_delivery_date,
  151. $order_status, $payment_status, '$currency',
  152. $subtotal, $discount_amount, $total_amount,
  153. '$notes', '$internal_notes', NOW(), NOW()
  154. )";
  155. mysqli_query($conn, $sql);
  156. $order_id = mysqli_insert_id($conn);
  157. // 添加订单项
  158. foreach ($items as $item) {
  159. if (empty($item['product_id'])) continue; // 跳过没有选择产品的行
  160. $product_id = (int)$item['product_id'];
  161. $quantity = (int)$item['quantity'];
  162. $unit = mysqli_real_escape_string($conn, htmlspecialchars($item['unit'], ENT_QUOTES, 'UTF-8'));
  163. $total_price = (float)$item['total_price'];
  164. // 如果数量大于0,计算单价,否则单价为0
  165. $unit_price = ($quantity > 0) ? ($total_price / $quantity) : 0;
  166. $item_notes = mysqli_real_escape_string($conn, htmlspecialchars($item['notes'] ?? '', ENT_QUOTES, 'UTF-8'));
  167. $sql = "INSERT INTO order_items (
  168. order_id, product_id, specification_id, quantity, unit, unit_price,
  169. total_price, notes,
  170. created_at, updated_at
  171. ) VALUES (
  172. $order_id, $product_id, 0, $quantity, '$unit', $unit_price,
  173. $total_price, '$item_notes',
  174. NOW(), NOW()
  175. )";
  176. mysqli_query($conn, $sql);
  177. }
  178. $message = "订单创建成功!";
  179. }
  180. // 重定向回订单列表页面
  181. $page = $_GET['Page'] ?? '';
  182. $keys = urlencode($_GET['Keys'] ?? '');
  183. echo "<script>alert('$message');location.href='order.php?keys=$keys&Page=$page';</script>";
  184. exit;
  185. ?>