order_save.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  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. // 获取表单数据 - 订单基本信息
  10. $order_code = mysqli_real_escape_string($conn, htmlspecialchars($_POST['order_code'], ENT_QUOTES, 'UTF-8'));
  11. $customer_id = (int)$_POST['customer_id'];
  12. $contact_id = !empty($_POST['contact_id']) ? (int)$_POST['contact_id'] : "NULL";
  13. $employee_id = $_SESSION['employee_id'];
  14. $order_date = mysqli_real_escape_string($conn, $_POST['order_date']);
  15. // 设置已删除字段的默认值
  16. $delivery_date = "NULL";
  17. $actual_delivery_date = "NULL";
  18. $order_status = 1; // 默认为"待确认"
  19. $payment_status = 0; // 默认为"未付款"
  20. $currency = "CNY"; // 默认为人民币
  21. $notes = mysqli_real_escape_string($conn, htmlspecialchars($_POST['notes'], ENT_QUOTES, 'UTF-8'));
  22. $internal_notes = ""; // 默认为空
  23. // 获取订单项信息
  24. $items = $_POST['items'] ?? [];
  25. // 计算订单总额
  26. $subtotal = 0;
  27. $discount_amount = !empty($_POST['discount_amount']) ? (float)$_POST['discount_amount'] : 0;
  28. foreach ($items as $item) {
  29. $quantity = (int)$item['quantity'];
  30. $unit_price = (float)$item['unit_price'];
  31. $item_total = $quantity * $unit_price;
  32. $subtotal += $item_total;
  33. }
  34. $total_amount = $subtotal - $discount_amount;
  35. // 验证必填字段
  36. if (empty($order_code)) {
  37. echo "<script>alert('订单编号不能为空');history.back();</script>";
  38. exit;
  39. }
  40. if ($customer_id <= 0) {
  41. echo "<script>alert('请选择客户');history.back();</script>";
  42. exit;
  43. }
  44. if (empty($items)) {
  45. echo "<script>alert('订单必须包含至少一个产品');history.back();</script>";
  46. exit;
  47. }
  48. // 检查客户国家和产品销售限制
  49. $customer_query = "SELECT cs_country FROM customer WHERE id = $customer_id LIMIT 1";
  50. $customer_result = mysqli_query($conn, $customer_query);
  51. if ($customer_result && mysqli_num_rows($customer_result) > 0) {
  52. $customer_data = mysqli_fetch_assoc($customer_result);
  53. $customer_country = $customer_data['cs_country'];
  54. if (!empty($customer_country)) {
  55. $restricted_products = [];
  56. foreach ($items as $item) {
  57. if (empty($item['product_id'])) continue;
  58. $product_id = (int)$item['product_id'];
  59. // 获取产品详情,包括nosale字段
  60. $product_query = "SELECT ProductName, nosale FROM products WHERE id = $product_id LIMIT 1";
  61. $product_result = mysqli_query($conn, $product_query);
  62. if ($product_result && mysqli_num_rows($product_result) > 0) {
  63. $product_data = mysqli_fetch_assoc($product_result);
  64. $nosale_countries = $product_data['nosale'];
  65. // 检查客户所在国家是否在销售限制列表中
  66. if (!empty($nosale_countries)) {
  67. $restricted_countries = explode(',', $nosale_countries);
  68. if (in_array($customer_country, $restricted_countries)) {
  69. $restricted_products[] = $product_data['ProductName'];
  70. }
  71. }
  72. }
  73. }
  74. // 如果有限制销售的产品,显示错误并返回
  75. if (!empty($restricted_products)) {
  76. $restricted_product_names = implode('、', $restricted_products);
  77. echo "<script>alert('以下产品不能销售给所选客户所在的国家/地区: {$restricted_product_names}');history.back();</script>";
  78. exit;
  79. }
  80. }
  81. }
  82. // 处理保存
  83. if ($isedit) {
  84. //价格判断,不能低于指导价
  85. $price_error = false;
  86. $error_product_name = '';
  87. $error_min_price = 0;
  88. $error_current_price = 0;
  89. foreach ($items as $item) {
  90. if (empty($item['product_id'])) continue;
  91. $product_id = (int)$item['product_id'];
  92. $quantity = (int)$item['quantity'];
  93. $unit_price = (float)$item['unit_price'];
  94. // 查询产品名称,用于错误提示
  95. $product_query = "SELECT ProductName FROM products WHERE id = $product_id";
  96. $product_result = mysqli_query($conn, $product_query);
  97. // 检查产品是否存在
  98. if (mysqli_num_rows($product_result) === 0) {
  99. echo "<script>alert(\"订单中包含不存在的产品(ID: {$product_id}),请检查订单数据\");history.back();</script>";
  100. exit;
  101. }
  102. $product_row = mysqli_fetch_assoc($product_result);
  103. $product_name = $product_row['ProductName'];
  104. // 查询该产品在价格表中的最低价格要求
  105. // 根据产品ID和数量查找最接近但不超过当前订单数量的价格记录
  106. $price_query = "SELECT * FROM price
  107. WHERE productId = $product_id
  108. AND num <= $quantity
  109. ORDER BY num DESC
  110. LIMIT 1";
  111. $price_result = mysqli_query($conn, $price_query);
  112. if (mysqli_num_rows($price_result) > 0) {
  113. $price_row = mysqli_fetch_assoc($price_result);
  114. $min_price = (float)$price_row['price'];
  115. // 如果单价低于指导价,标记错误
  116. if ($unit_price < $min_price) {
  117. $price_error = true;
  118. $error_product_name = $product_name;
  119. $error_min_price = $min_price;
  120. $error_current_price = $unit_price;
  121. break;
  122. }
  123. }
  124. }
  125. // 如果价格低于指导价,显示错误并返回
  126. if ($price_error) {
  127. $error_message = "产品 {$error_product_name} 的价格 ({$error_current_price}) 低于指导价 ({$error_min_price})";
  128. echo "<script>alert(\"{$error_message}\");history.back();</script>";
  129. exit;
  130. }
  131. // 更新订单基本信息
  132. $sql = "UPDATE orders SET
  133. order_code = '$order_code',
  134. customer_id = $customer_id,
  135. contact_id = $contact_id,
  136. employee_id = $employee_id,
  137. order_date = '$order_date',
  138. delivery_date = $delivery_date,
  139. actual_delivery_date = $actual_delivery_date,
  140. order_status = $order_status,
  141. payment_status = $payment_status,
  142. currency = '$currency',
  143. subtotal = $subtotal,
  144. discount_amount = $discount_amount,
  145. total_amount = $total_amount,
  146. notes = '$notes',
  147. internal_notes = '$internal_notes',
  148. updated_at = NOW()
  149. WHERE id = $id";
  150. mysqli_query($conn, $sql);
  151. // 删除旧的订单项
  152. $sql = "DELETE FROM order_items WHERE order_id = $id";
  153. mysqli_query($conn, $sql);
  154. // 添加新的订单项
  155. foreach ($items as $item) {
  156. if (empty($item['product_id'])) continue; // 跳过没有选择产品的行
  157. $product_id = (int)$item['product_id'];
  158. $spec_id = isset($item['spec_id']) ? (int)$item['spec_id'] : 0; // 添加规格ID
  159. $quantity = (int)$item['quantity'];
  160. $unit = mysqli_real_escape_string($conn, htmlspecialchars($item['unit'], ENT_QUOTES, 'UTF-8'));
  161. $unit_price = (float)$item['unit_price'];
  162. $total_price = $quantity * $unit_price;
  163. $item_notes = mysqli_real_escape_string($conn, htmlspecialchars($item['notes'] ?? '', ENT_QUOTES, 'UTF-8'));
  164. $sql = "INSERT INTO order_items (
  165. order_id, product_id, specification_id, quantity, unit, unit_price,
  166. total_price, notes,
  167. created_at, updated_at
  168. ) VALUES (
  169. $id, $product_id, $spec_id, $quantity, '$unit', $unit_price,
  170. $total_price, '$item_notes',
  171. NOW(), NOW()
  172. )";
  173. mysqli_query($conn, $sql);
  174. }
  175. $message = "订单更新成功!";
  176. } else {
  177. //价格判断,不能低于指导价
  178. $price_error = false;
  179. $error_product_name = '';
  180. $error_min_price = 0;
  181. $error_current_price = 0;
  182. foreach ($items as $item) {
  183. if (empty($item['product_id'])) continue;
  184. $product_id = (int)$item['product_id'];
  185. $quantity = (int)$item['quantity'];
  186. $unit_price = (float)$item['unit_price'];
  187. // 查询产品名称,用于错误提示
  188. $product_query = "SELECT ProductName FROM products WHERE id = $product_id";
  189. $product_result = mysqli_query($conn, $product_query);
  190. // 检查产品是否存在
  191. if (mysqli_num_rows($product_result) === 0) {
  192. echo "<script>alert(\"订单中包含不存在的产品(ID: {$product_id}),请检查订单数据\");history.back();</script>";
  193. exit;
  194. }
  195. $product_row = mysqli_fetch_assoc($product_result);
  196. $product_name = $product_row['ProductName'];
  197. // 查询该产品在价格表中的最低价格要求
  198. // 根据产品ID和数量查找最接近但不超过当前订单数量的价格记录
  199. $price_query = "SELECT * FROM price
  200. WHERE productId = $product_id
  201. AND num <= $quantity
  202. ORDER BY num DESC
  203. LIMIT 1";
  204. $price_result = mysqli_query($conn, $price_query);
  205. if (mysqli_num_rows($price_result) > 0) {
  206. $price_row = mysqli_fetch_assoc($price_result);
  207. $min_price = (float)$price_row['price'];
  208. // 如果单价低于指导价,标记错误
  209. if ($unit_price < $min_price) {
  210. $price_error = true;
  211. $error_product_name = $product_name;
  212. $error_min_price = $min_price;
  213. $error_current_price = $unit_price;
  214. break;
  215. }
  216. }
  217. }
  218. // 如果价格低于指导价,显示错误并返回
  219. if ($price_error) {
  220. $error_message = "产品 {$error_product_name} 的价格 ({$error_current_price}) 低于指导价 ({$error_min_price})";
  221. echo "<script>alert(\"{$error_message}\");history.back();</script>";
  222. exit;
  223. }
  224. // 创建新订单
  225. $sql = "INSERT INTO orders (
  226. order_code, customer_id, contact_id, employee_id,
  227. order_date, delivery_date, actual_delivery_date,
  228. order_status, payment_status, currency,
  229. subtotal, discount_amount, total_amount,
  230. notes, internal_notes, created_at, updated_at
  231. ) VALUES (
  232. '$order_code', $customer_id, $contact_id, $employee_id,
  233. '$order_date', $delivery_date, $actual_delivery_date,
  234. $order_status, $payment_status, '$currency',
  235. $subtotal, $discount_amount, $total_amount,
  236. '$notes', '$internal_notes', NOW(), NOW()
  237. )";
  238. mysqli_query($conn, $sql);
  239. $order_id = mysqli_insert_id($conn);
  240. // 添加订单项
  241. foreach ($items as $item) {
  242. if (empty($item['product_id'])) continue; // 跳过没有选择产品的行
  243. $product_id = (int)$item['product_id'];
  244. $spec_id = isset($item['spec_id']) ? (int)$item['spec_id'] : 0; // 添加规格ID
  245. $quantity = (int)$item['quantity'];
  246. $unit = mysqli_real_escape_string($conn, htmlspecialchars($item['unit'], ENT_QUOTES, 'UTF-8'));
  247. $unit_price = (float)$item['unit_price'];
  248. $total_price = $quantity * $unit_price;
  249. $item_notes = mysqli_real_escape_string($conn, htmlspecialchars($item['notes'] ?? '', ENT_QUOTES, 'UTF-8'));
  250. $sql = "INSERT INTO order_items (
  251. order_id, product_id, specification_id, quantity, unit, unit_price,
  252. total_price, notes,
  253. created_at, updated_at
  254. ) VALUES (
  255. $order_id, $product_id, $spec_id, $quantity, '$unit', $unit_price,
  256. $total_price, '$item_notes',
  257. NOW(), NOW()
  258. )";
  259. mysqli_query($conn, $sql);
  260. }
  261. $message = "订单创建成功!";
  262. }
  263. // 重定向回订单列表页面
  264. $page = $_GET['Page'] ?? '';
  265. $keys = urlencode($_GET['Keys'] ?? '');
  266. echo "<script>alert('$message');location.href='order.php?keys=$keys&Page=$page';</script>";
  267. exit;
  268. ?>