order_save.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  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. $customer_country=0;
  49. // 检查客户国家和产品销售限制
  50. $customer_query = "SELECT cs_country FROM customer WHERE id = $customer_id LIMIT 1";
  51. $customer_result = mysqli_query($conn, $customer_query);
  52. if ($customer_result && mysqli_num_rows($customer_result) > 0) {
  53. $customer_data = mysqli_fetch_assoc($customer_result);
  54. $customer_country = $customer_data['cs_country'];
  55. if (!empty($customer_country)) {
  56. $restricted_products = [];
  57. foreach ($items as $item) {
  58. if (empty($item['product_id'])) continue;
  59. $product_id = (int)$item['product_id'];
  60. // 获取产品详情,包括nosale字段
  61. $product_query = "SELECT ProductName, nosale FROM products WHERE id = $product_id LIMIT 1";
  62. $product_result = mysqli_query($conn, $product_query);
  63. if ($product_result && mysqli_num_rows($product_result) > 0) {
  64. $product_data = mysqli_fetch_assoc($product_result);
  65. $nosale_countries = $product_data['nosale'];
  66. // 检查客户所在国家是否在销售限制列表中
  67. if (!empty($nosale_countries)) {
  68. $restricted_countries = explode(',', $nosale_countries);
  69. if (in_array($customer_country, $restricted_countries)) {
  70. $restricted_products[] = $product_data['ProductName'];
  71. }
  72. }
  73. }
  74. }
  75. // 如果有限制销售的产品,显示错误并返回
  76. if (!empty($restricted_products)) {
  77. $restricted_product_names = implode('、', $restricted_products);
  78. echo "<script>alert('以下产品不能销售给所选客户所在的国家/地区: {$restricted_product_names}');history.back();</script>";
  79. exit;
  80. }
  81. }
  82. }
  83. // 处理保存
  84. if ($isedit) {
  85. //价格判断,不能低于指导价
  86. $price_error = false;
  87. $error_product_name = '';
  88. $error_min_price = 0;
  89. $error_current_price = 0;
  90. foreach ($items as $item) {
  91. if (empty($item['product_id'])) continue;
  92. $product_id = (int)$item['product_id'];
  93. $spec_id = isset($item['spec_id']) ? (int)$item['spec_id'] : 0;
  94. $quantity = (int)$item['quantity'];
  95. $unit_price = (float)$item['unit_price'];
  96. // 查询产品名称,用于错误提示
  97. $product_query = "SELECT ProductName FROM products WHERE id = $product_id";
  98. $product_result = mysqli_query($conn, $product_query);
  99. // 检查产品是否存在
  100. if (mysqli_num_rows($product_result) === 0) {
  101. echo "<script>alert(\"订单中包含不存在的产品(ID: {$product_id}),请检查订单数据\");history.back();</script>";
  102. exit;
  103. }
  104. $product_row = mysqli_fetch_assoc($product_result);
  105. $product_name = $product_row['ProductName'];
  106. // 如果有规格ID,检查规格价格
  107. if ($spec_id > 0) {
  108. //先判断是否国家有特殊规格
  109. $spec_result=null;
  110. if($customer_country>0) {
  111. $spec_query = "SELECT pcp.price,pcp.min_order_quantity, ps.spec_name, ps.spec_value FROM product_country_price pcp
  112. left join product_specifications ps on pcp.specification_id=ps.id
  113. WHERE pcp.specification_id = $spec_id AND pcp.country_id = $customer_country
  114. LIMIT 1";
  115. $spec_result = mysqli_query($conn, $spec_query);
  116. }
  117. if (mysqli_num_rows($spec_result) < 1) {
  118. $spec_query = "SELECT price, spec_name, spec_value FROM product_specifications
  119. WHERE id = $spec_id AND product_id = $product_id
  120. LIMIT 1";
  121. $spec_result = mysqli_query($conn, $spec_query);
  122. }
  123. if (mysqli_num_rows($spec_result) > 0) {
  124. $spec_row = mysqli_fetch_assoc($spec_result);
  125. $min_price = (float)$spec_row['price'];
  126. // 如果单价低于规格价格,标记错误
  127. if ($min_price > 0 && $unit_price < $min_price) {
  128. $price_error = true;
  129. $error_product_name = $product_name . " (" . $spec_row['spec_name'] . ": " . $spec_row['spec_value'] . ")";
  130. $error_min_price = $min_price;
  131. $error_current_price = $unit_price;
  132. break;
  133. }
  134. }
  135. }
  136. }
  137. // 如果价格低于指导价,显示错误并返回
  138. if ($price_error) {
  139. $error_message = "产品 {$error_product_name} 的价格 ({$error_current_price}) 低于指导价 ({$error_min_price})";
  140. echo "<script>alert(\"{$error_message}\");history.back();</script>";
  141. exit;
  142. }
  143. // 更新订单基本信息
  144. $sql = "UPDATE orders SET
  145. order_code = '$order_code',
  146. customer_id = $customer_id,
  147. contact_id = $contact_id,
  148. employee_id = $employee_id,
  149. order_date = '$order_date',
  150. delivery_date = $delivery_date,
  151. actual_delivery_date = $actual_delivery_date,
  152. order_status = $order_status,
  153. payment_status = $payment_status,
  154. currency = '$currency',
  155. subtotal = $subtotal,
  156. discount_amount = $discount_amount,
  157. total_amount = $total_amount,
  158. notes = '$notes',
  159. internal_notes = '$internal_notes',
  160. updated_at = NOW()
  161. WHERE id = $id";
  162. mysqli_query($conn, $sql);
  163. // 删除旧的订单项
  164. $sql = "DELETE FROM order_items WHERE order_id = $id";
  165. mysqli_query($conn, $sql);
  166. // 添加新的订单项
  167. foreach ($items as $item) {
  168. if (empty($item['product_id'])) continue; // 跳过没有选择产品的行
  169. $product_id = (int)$item['product_id'];
  170. $spec_id = isset($item['spec_id']) ? (int)$item['spec_id'] : 0; // 添加规格ID
  171. $quantity = (int)$item['quantity'];
  172. $unit = mysqli_real_escape_string($conn, htmlspecialchars($item['unit'], ENT_QUOTES, 'UTF-8'));
  173. $unit_price = (float)$item['unit_price'];
  174. $total_price = $quantity * $unit_price;
  175. $item_notes = mysqli_real_escape_string($conn, htmlspecialchars($item['notes'] ?? '', ENT_QUOTES, 'UTF-8'));
  176. $sql = "INSERT INTO order_items (
  177. order_id, product_id, specification_id, quantity, unit, unit_price,
  178. total_price, notes,
  179. created_at, updated_at
  180. ) VALUES (
  181. $id, $product_id, $spec_id, $quantity, '$unit', $unit_price,
  182. $total_price, '$item_notes',
  183. NOW(), NOW()
  184. )";
  185. mysqli_query($conn, $sql);
  186. }
  187. $message = "订单更新成功!";
  188. } else {
  189. //价格判断,不能低于指导价
  190. $price_error = false;
  191. $error_product_name = '';
  192. $error_min_price = 0;
  193. $error_current_price = 0;
  194. foreach ($items as $item) {
  195. if (empty($item['product_id'])) continue;
  196. $product_id = (int)$item['product_id'];
  197. $spec_id = isset($item['spec_id']) ? (int)$item['spec_id'] : 0;
  198. $quantity = (int)$item['quantity'];
  199. $unit_price = (float)$item['unit_price'];
  200. // 查询产品名称,用于错误提示
  201. $product_query = "SELECT ProductName FROM products WHERE id = $product_id";
  202. $product_result = mysqli_query($conn, $product_query);
  203. // 检查产品是否存在
  204. if (mysqli_num_rows($product_result) === 0) {
  205. echo "<script>alert(\"订单中包含不存在的产品(ID: {$product_id}),请检查订单数据\");history.back();</script>";
  206. exit;
  207. }
  208. $product_row = mysqli_fetch_assoc($product_result);
  209. $product_name = $product_row['ProductName'];
  210. // 如果有规格ID,检查规格价格
  211. if ($spec_id > 0) {
  212. //先判断是否国家有特殊规格
  213. $spec_result=null;
  214. if($customer_country>0) {
  215. $spec_query = "SELECT pcp.price,pcp.min_order_quantity, ps.spec_name, ps.spec_value FROM product_country_price pcp
  216. left join product_specifications ps on pcp.specification_id=ps.id
  217. WHERE pcp.specification_id = $spec_id AND pcp.country_id = $customer_country
  218. LIMIT 1";
  219. $spec_result = mysqli_query($conn, $spec_query);
  220. }
  221. if (mysqli_num_rows($spec_result) < 1) {
  222. $spec_query = "SELECT price, spec_name, spec_value FROM product_specifications
  223. WHERE id = $spec_id AND product_id = $product_id
  224. LIMIT 1";
  225. $spec_result = mysqli_query($conn, $spec_query);
  226. }
  227. if (mysqli_num_rows($spec_result) > 0) {
  228. $spec_row = mysqli_fetch_assoc($spec_result);
  229. $min_price = (float)$spec_row['price'];
  230. // 如果单价低于规格价格,标记错误
  231. if ($min_price > 0 && $unit_price < $min_price) {
  232. $price_error = true;
  233. $error_product_name = $product_name . " (" . $spec_row['spec_name'] . ": " . $spec_row['spec_value'] . ")";
  234. $error_min_price = $min_price;
  235. $error_current_price = $unit_price;
  236. break;
  237. }
  238. }
  239. }
  240. }
  241. // 如果价格低于指导价,显示错误并返回
  242. if ($price_error) {
  243. $error_message = "产品 {$error_product_name} 的价格 ({$error_current_price}) 低于指导价 ({$error_min_price})";
  244. echo "<script>alert(\"{$error_message}\");history.back();</script>";
  245. exit;
  246. }
  247. // 创建新订单
  248. $sql = "INSERT INTO orders (
  249. order_code, customer_id, contact_id, employee_id,
  250. order_date, delivery_date, actual_delivery_date,
  251. order_status, payment_status, currency,
  252. subtotal, discount_amount, total_amount,
  253. notes, internal_notes, created_at, updated_at
  254. ) VALUES (
  255. '$order_code', $customer_id, $contact_id, $employee_id,
  256. '$order_date', $delivery_date, $actual_delivery_date,
  257. $order_status, $payment_status, '$currency',
  258. $subtotal, $discount_amount, $total_amount,
  259. '$notes', '$internal_notes', NOW(), NOW()
  260. )";
  261. mysqli_query($conn, $sql);
  262. $order_id = mysqli_insert_id($conn);
  263. // 添加订单项
  264. foreach ($items as $item) {
  265. if (empty($item['product_id'])) continue; // 跳过没有选择产品的行
  266. $product_id = (int)$item['product_id'];
  267. $spec_id = isset($item['spec_id']) ? (int)$item['spec_id'] : 0; // 添加规格ID
  268. $quantity = (int)$item['quantity'];
  269. $unit = mysqli_real_escape_string($conn, htmlspecialchars($item['unit'], ENT_QUOTES, 'UTF-8'));
  270. $unit_price = (float)$item['unit_price'];
  271. $total_price = $quantity * $unit_price;
  272. $item_notes = mysqli_real_escape_string($conn, htmlspecialchars($item['notes'] ?? '', ENT_QUOTES, 'UTF-8'));
  273. $sql = "INSERT INTO order_items (
  274. order_id, product_id, specification_id, quantity, unit, unit_price,
  275. total_price, notes,
  276. created_at, updated_at
  277. ) VALUES (
  278. $order_id, $product_id, $spec_id, $quantity, '$unit', $unit_price,
  279. $total_price, '$item_notes',
  280. NOW(), NOW()
  281. )";
  282. mysqli_query($conn, $sql);
  283. }
  284. $message = "订单创建成功!";
  285. }
  286. // 重定向回订单列表页面
  287. $page = $_GET['Page'] ?? '';
  288. $keys = urlencode($_GET['Keys'] ?? '');
  289. echo "<script>alert('$message');location.href='order.php?keys=$keys&Page=$page';</script>";
  290. exit;
  291. ?>