order_save.php 14 KB

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