save_product.php 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?php
  2. require_once('conn.php');
  3. // Check login status
  4. checkLogin("信息管理");
  5. // Initialize all variables to avoid undefined warnings
  6. $id = isset($_POST['id']) ? $_POST['id'] : '';
  7. $product_name = isset($_POST['ProductName']) ? htmlspecialcharsFix($_POST['ProductName']) : '';
  8. $product_img = isset($_POST['ProductImg']) ? htmlspecialcharsFix($_POST['ProductImg']) : '';
  9. $unit = isset($_POST['unit']) ? htmlspecialcharsFix($_POST['unit']) : '';
  10. $moq = isset($_POST['moq']) ? htmlspecialcharsFix($_POST['moq']) : '';
  11. $category_id = isset($_POST['category_id']) ? intval($_POST['category_id']) : 0;
  12. $nosale = isset($_POST['nosale']) ? $_POST['nosale'] : array();
  13. $note = isset($_POST['note']) ? htmlspecialcharsFix($_POST['note']) : '';
  14. $tips = isset($_POST['tips']) ? htmlspecialcharsFix($_POST['tips']) : '';
  15. $keys = isset($_POST['keys']) ? $_POST['keys'] : '';
  16. $page = isset($_POST['page']) ? $_POST['page'] : 1;
  17. $rebate = isset($_POST['rebate']) ? intval($_POST['rebate']) : 0; // 获取返点启用状态
  18. // Initialize rebate rule variables
  19. $min_quantity = isset($_POST['min_quantity']) ? $_POST['min_quantity'] : array();
  20. $rebate_amount = isset($_POST['rebate_amount']) ? $_POST['rebate_amount'] : array();
  21. $rebate_id = isset($_POST['rebate_id']) ? $_POST['rebate_id'] : array();
  22. // Redirect URL
  23. $redirect_url = "products.php?Keys=" . $keys . "&Page=" . $page;
  24. if ($category_id) {
  25. $redirect_url .= "&category_id=" . $category_id;
  26. }
  27. // Determine if this is an edit or a new record
  28. $is_edit = (!empty($id) && is_numeric($id));
  29. // Process nosale array into comma-separated string
  30. $nosale_str = '';
  31. if (is_array($nosale) && !empty($nosale)) {
  32. $nosale_clean = array_map('intval', $nosale); // Ensure all values are integers
  33. $nosale_str = implode(',', $nosale_clean);
  34. }
  35. // Validate form data
  36. if (empty($product_name)) {
  37. // You could add error handling here
  38. header("Location: " . $redirect_url);
  39. exit();
  40. }
  41. // Validate rebate rules - at least one rule is required with all fields filled
  42. $has_valid_rebates = false;
  43. if (is_array($min_quantity) && !empty($min_quantity)) {
  44. foreach ($min_quantity as $key => $quantity) {
  45. if (!empty($quantity) && isset($rebate_amount[$key]) && $rebate_amount[$key] !== '') {
  46. $has_valid_rebates = true;
  47. break;
  48. }
  49. }
  50. }
  51. if (!$has_valid_rebates) {
  52. // Redirect back with error message
  53. header("Location: " . $redirect_url . "&error=missing_rebates");
  54. exit();
  55. }
  56. // 验证最低采购数量不重复,且返点金额符合规则
  57. $quantity_values = array();
  58. $rebate_rules = array();
  59. // 收集所有有效的规则
  60. if (is_array($min_quantity) && !empty($min_quantity)) {
  61. foreach ($min_quantity as $key => $quantity) {
  62. if (!empty($quantity) && isset($rebate_amount[$key]) && $rebate_amount[$key] !== '') {
  63. $quantity_value = (int)$quantity;
  64. $rebate_value = (float)$rebate_amount[$key];
  65. // 检查重复的最低采购数量
  66. if (in_array($quantity_value, $quantity_values)) {
  67. // 存在重复数量,返回错误
  68. header("Location: " . $redirect_url . "&error=duplicate_quantity");
  69. exit();
  70. }
  71. $quantity_values[] = $quantity_value;
  72. $rebate_rules[] = array(
  73. 'quantity' => $quantity_value,
  74. 'amount' => $rebate_value
  75. );
  76. }
  77. }
  78. }
  79. // 按数量从小到大排序规则
  80. usort($rebate_rules, function($a, $b) {
  81. return $a['quantity'] - $b['quantity'];
  82. });
  83. // 检查返点金额规则:数量越多,返点金额应大于等于数量小的
  84. for ($i = 1; $i < count($rebate_rules); $i++) {
  85. if ($rebate_rules[$i]['amount'] < $rebate_rules[$i-1]['amount']) {
  86. // 返点金额不符合规则,返回错误
  87. header("Location: " . $redirect_url . "&error=invalid_rebate_amount");
  88. exit();
  89. }
  90. }
  91. if ($is_edit) {
  92. // Update existing product
  93. $sql = "UPDATE products SET
  94. ProductName = '" . mysqli_real_escape_string($conn, $product_name) . "',
  95. ProductImg = '" . mysqli_real_escape_string($conn, $product_img) . "',
  96. Addtime = NOW(),
  97. moq = '" . mysqli_real_escape_string($conn, $moq) . "',
  98. unit = '" . mysqli_real_escape_string($conn, $unit) . "',
  99. nosale = '" . $nosale_str . "',
  100. note = '" . mysqli_real_escape_string($conn, $note) . "',
  101. tips = '" . mysqli_real_escape_string($conn, $tips) . "',
  102. rebate = " . $rebate . ",
  103. category_id = " . $category_id . "
  104. WHERE id = " . (int)$id;
  105. mysqli_query($conn, $sql);
  106. // 处理返点规则
  107. // Track which rebate rule IDs we're keeping in this update
  108. $kept_rebate_ids = array();
  109. // Process rebate rules
  110. if (is_array($min_quantity) && !empty($min_quantity)) {
  111. foreach ($min_quantity as $key => $quantity) {
  112. if (!empty($quantity) && isset($rebate_amount[$key]) && $rebate_amount[$key] !== '') {
  113. $quantity_value = isset($min_quantity[$key]) && is_numeric($min_quantity[$key]) ? (int)$min_quantity[$key] : 1;
  114. $rebate_value = isset($rebate_amount[$key]) && is_numeric($rebate_amount[$key]) ? (float)$rebate_amount[$key] : 0;
  115. $rebate_id_value = isset($rebate_id[$key]) && is_numeric($rebate_id[$key]) ? (int)$rebate_id[$key] : 0;
  116. if ($rebate_id_value > 0) {
  117. // Update existing rebate rule
  118. $sql = "UPDATE rebate_rules SET
  119. min_quantity = " . $quantity_value . ",
  120. rebate_amount = " . $rebate_value . "
  121. WHERE id = " . $rebate_id_value . " AND product_id = " . (int)$id;
  122. mysqli_query($conn, $sql);
  123. // Add to kept IDs list
  124. $kept_rebate_ids[] = $rebate_id_value;
  125. } else {
  126. // Insert new rebate rule
  127. $sql = "INSERT INTO rebate_rules
  128. (product_id, min_quantity, rebate_amount, addtime)
  129. VALUES (
  130. " . (int)$id . ",
  131. " . $quantity_value . ",
  132. " . $rebate_value . ",
  133. NOW()
  134. )";
  135. mysqli_query($conn, $sql);
  136. // Add newly inserted ID to kept list
  137. $kept_rebate_ids[] = mysqli_insert_id($conn);
  138. }
  139. }
  140. }
  141. }
  142. // Delete rebate rules that were removed in the form
  143. if (!empty($kept_rebate_ids)) {
  144. $delete_sql = "DELETE FROM rebate_rules WHERE product_id = " . (int)$id;
  145. if (count($kept_rebate_ids) > 0) {
  146. $delete_sql .= " AND id NOT IN (" . implode(',', $kept_rebate_ids) . ")";
  147. }
  148. mysqli_query($conn, $delete_sql);
  149. } else {
  150. // If no rebate rules are kept, delete all rules for this product
  151. mysqli_query($conn, "DELETE FROM rebate_rules WHERE product_id = " . (int)$id);
  152. }
  153. } else {
  154. // Insert new product
  155. $sql = "INSERT INTO products (ProductName, ProductImg, Addtime, moq, unit, nosale, note, tips, rebate, category_id)
  156. VALUES (
  157. '" . mysqli_real_escape_string($conn, $product_name) . "',
  158. '" . mysqli_real_escape_string($conn, $product_img) . "',
  159. NOW(),
  160. '" . mysqli_real_escape_string($conn, $moq) . "',
  161. '" . mysqli_real_escape_string($conn, $unit) . "',
  162. '" . $nosale_str . "',
  163. '" . mysqli_real_escape_string($conn, $note) . "',
  164. '" . mysqli_real_escape_string($conn, $tips) . "',
  165. " . $rebate . ",
  166. " . $category_id . "
  167. )";
  168. mysqli_query($conn, $sql);
  169. $id = mysqli_insert_id($conn);
  170. // Add rebate rules for new product
  171. if (is_array($min_quantity) && !empty($min_quantity)) {
  172. foreach ($min_quantity as $key => $quantity) {
  173. if (!empty($quantity) && isset($rebate_amount[$key]) && $rebate_amount[$key] !== '') {
  174. $quantity_value = isset($min_quantity[$key]) && is_numeric($min_quantity[$key]) ? (int)$min_quantity[$key] : 1;
  175. $rebate_value = isset($rebate_amount[$key]) && is_numeric($rebate_amount[$key]) ? (float)$rebate_amount[$key] : 0;
  176. $sql = "INSERT INTO rebate_rules
  177. (product_id, min_quantity, rebate_amount, addtime)
  178. VALUES (
  179. " . (int)$id . ",
  180. " . $quantity_value . ",
  181. " . $rebate_value . ",
  182. NOW()
  183. )";
  184. mysqli_query($conn, $sql);
  185. }
  186. }
  187. }
  188. }
  189. // Redirect after save
  190. mysqli_close($conn);
  191. header("Location: " . $redirect_url);
  192. exit();