edit_product.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. <?php
  2. require_once('conn.php');
  3. require_once('functions.php');
  4. // Check login status
  5. checkLogin("信息管理");
  6. // Initialize variables
  7. $id = isset($_GET['id']) ? (int)$_GET['id'] : 0;
  8. $keys = isset($_GET['Keys']) ? urlencode($_GET['Keys']) : '';
  9. $page = isset($_GET['Page']) ? $_GET['Page'] : 1;
  10. $category_id = isset($_GET['category_id']) ? intval($_GET['category_id']) : 0;
  11. // Get the return URL
  12. $href_str = "products.php?keys=" . $keys . "&Page=" . $page;
  13. if ($category_id) {
  14. $href_str .= "&category_id=" . $category_id;
  15. }
  16. // Check if the product exists
  17. if ($id <= 0) {
  18. header("Location: " . $href_str);
  19. exit();
  20. }
  21. // Fetch product data
  22. $sql = "SELECT * FROM products WHERE id = " . (int)$id;
  23. $result = mysqli_query($conn, $sql);
  24. if (mysqli_num_rows($result) <= 0) {
  25. // Product not found, redirect
  26. header("Location: " . $href_str);
  27. exit();
  28. }
  29. $row = mysqli_fetch_assoc($result);
  30. $product_name = htmlspecialcharsFix($row['ProductName']);
  31. $product_img = htmlspecialcharsFix($row['ProductImg']);
  32. $unit = htmlspecialcharsFix($row['unit']);
  33. $moq = htmlspecialcharsFix($row['moq']);
  34. $nosale = $row['nosale'];
  35. $note = htmlspecialcharsFix($row['note']);
  36. $tips = htmlspecialcharsFix($row['tips']);
  37. $category_id = $row['category_id'] ? intval($row['category_id']) : 0;
  38. $rebate = isset($row['rebate']) ? intval($row['rebate']) : 0; // 默认不启用返点
  39. ?>
  40. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  41. <html xmlns="http://www.w3.org/1999/xhtml">
  42. <head>
  43. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  44. <title>编辑产品</title>
  45. <link rel="stylesheet" href="css/common.css" type="text/css" />
  46. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  47. <script type="text/javascript" src="js/js.js"></script>
  48. <script type="text/javascript" src="js/SearchArea.js"></script>
  49. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  50. <style>
  51. /* Styles for specification section */
  52. .specifications {
  53. margin-bottom: 10px;
  54. width: 100%;
  55. }
  56. .specitem {
  57. margin-bottom: 8px;
  58. padding: 8px 10px;
  59. /*background-color: #f9f9f9;*/
  60. border: 1px solid #e0e0e0;
  61. border-radius: 4px;
  62. clear: both;
  63. overflow: hidden;
  64. }
  65. .addspecitem, .delspecitem {
  66. display: inline-block;
  67. width: 20px;
  68. height: 20px;
  69. text-align: center;
  70. line-height: 18px;
  71. border-radius: 50%;
  72. font-weight: bold;
  73. cursor: pointer;
  74. margin-left: 10px;
  75. }
  76. .addspecitem {
  77. background-color: #5cb85c;
  78. color: white;
  79. }
  80. .delspecitem {
  81. background-color: #d9534f;
  82. color: white;
  83. }
  84. .spec-input {
  85. width: 160px;
  86. padding: 4px;
  87. margin-right: 10px;
  88. border: 1px solid #ccc;
  89. border-radius: 3px;
  90. }
  91. .spec-small-input {
  92. width: 80px;
  93. padding: 4px;
  94. margin-right: 10px;
  95. border: 1px solid #ccc;
  96. border-radius: 3px;
  97. }
  98. .spec-label {
  99. display: inline-block;
  100. margin-right: 5px;
  101. font-weight: normal;
  102. }
  103. .required {
  104. color: red;
  105. margin-left: 2px;
  106. }
  107. </style>
  108. </head>
  109. <body>
  110. <div id="man_zone">
  111. <form name="form1" method="post" action="save_product.php">
  112. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  113. <tbody>
  114. <tr>
  115. <th width="8%">产品名称</th>
  116. <td><input type="text" id="ProductName" name="ProductName" value="<?php echo $product_name; ?>" class="txt1" />
  117. <input type="hidden" name="id" value="<?php echo $id; ?>" />
  118. <input type="hidden" name="keys" value="<?php echo $keys; ?>" />
  119. <input type="hidden" name="page" value="<?php echo $page; ?>" />
  120. <input type="hidden" name="category_id" value="<?php echo $category_id; ?>" />
  121. </td>
  122. </tr>
  123. <tr>
  124. <th width="8%">产品分类</th>
  125. <td>
  126. <select name="category_id" id="category_id" class="select1">
  127. <option value="0">-- 请选择分类 --</option>
  128. <?php
  129. // Build category tree
  130. $category_data = buildCategoryTree($conn);
  131. $cat_tree = $category_data['tree'];
  132. // Output options
  133. outputCategoryOptions($cat_tree, $category_id);
  134. ?>
  135. </select>
  136. </td>
  137. </tr>
  138. <tr>
  139. <th width="8%">产品图片</th>
  140. <td><input type="text" id="ProductImg" name="ProductImg" placeholder="186x*186px" value="<?php echo $product_img; ?>" class="txt1" style="width:390px;float:left;" />
  141. <iframe src="uploadfile.php" frameborder="0" scrolling="no" style="width:400px;height:22px;float:left;margin-left:10px;"></iframe></td>
  142. </tr>
  143. <tr>
  144. <th width="8%">计价单位</th>
  145. <td><input type="text" id="unit" name="unit" value="<?php echo $unit; ?>" class="txt1"/></td>
  146. </tr>
  147. <!-- <tr>-->
  148. <!-- <th width="8%">起订数量</th>-->
  149. <!-- <td><input type="text" id="moq" name="moq" value="--><?php //echo $moq; ?><!--" class="txt1"/></td>-->
  150. <!-- </tr>-->
  151. <tr>
  152. <th width="8%">启用返点</th>
  153. <td>
  154. <label><input type="radio" name="rebate" value="1" <?php echo $rebate == 1 ? 'checked' : ''; ?> /> 启用</label>
  155. <label style="margin-left: 20px;"><input type="radio" name="rebate" value="0" <?php echo $rebate == 0 ? 'checked' : ''; ?> /> 不启用</label>
  156. </td>
  157. </tr>
  158. <tr id="rebate_settings">
  159. <th width="8%">返点设置</th>
  160. <td>
  161. <div class="specifications">
  162. <?php
  163. // Fetch rebate rules for this product
  164. $rebate_sql = "SELECT * FROM rebate_rules WHERE product_id = " . (int)$id . " ORDER BY min_quantity ASC";
  165. $rebate_result = mysqli_query($conn, $rebate_sql);
  166. if (mysqli_num_rows($rebate_result) > 0) {
  167. while ($rebate_row = mysqli_fetch_assoc($rebate_result)) {
  168. ?>
  169. <div class="specitem">
  170. <span class="spec-label">最低采购数量<span class="required">*</span>:</span>
  171. <input type="number" class="spec-small-input" name="min_quantity[]" value="<?php echo $rebate_row['min_quantity']; ?>" required>
  172. <span class="spec-label">单件返点金额<span class="required">*</span>:</span>
  173. <input type="text" class="spec-small-input" name="rebate_amount[]" placeholder="返点金额" value="<?php echo $rebate_row['rebate_amount']; ?>" required>
  174. <span class="addspecitem">+</span>
  175. <span class="delspecitem">-</span>
  176. <!-- 隐藏字段,保留原始ID -->
  177. <input type="hidden" name="rebate_id[]" value="<?php echo $rebate_row['id']; ?>">
  178. </div>
  179. <?php
  180. }
  181. } else {
  182. // No rebate rules found, show one default form with quantity=1 and rebate=0
  183. ?>
  184. <div class="specitem">
  185. <span class="spec-label">最低采购数量<span class="required">*</span>:</span>
  186. <input type="number" class="spec-small-input" name="min_quantity[]" value="1" required>
  187. <span class="spec-label">单件返点金额<span class="required">*</span>:</span>
  188. <input type="text" class="spec-small-input" name="rebate_amount[]" placeholder="返点金额" value="0" required>
  189. <span class="addspecitem">+</span>
  190. <span class="delspecitem">-</span>
  191. <!-- 隐藏字段,仍然提交但不显示 -->
  192. <input type="hidden" name="rebate_id[]" value="0">
  193. </div>
  194. <?php
  195. }
  196. ?>
  197. </div>
  198. </td>
  199. </tr>
  200. <tr>
  201. <th width="8%">不报价地区</th>
  202. <td>
  203. <ul class="areadd">
  204. <?php
  205. if (!empty($nosale)) {
  206. // 确保nosale是逗号分隔的字符串格式
  207. $nosale_str = is_array($nosale) ? implode(',', $nosale) : $nosale;
  208. $area_sql = "SELECT id, countryName FROM country WHERE id IN(" . $nosale_str . ")";
  209. $area_result = mysqli_query($conn, $area_sql);
  210. while ($area_row = mysqli_fetch_assoc($area_result)) {
  211. ?>
  212. <li><input type="hidden" name="nosale[]" value="<?php echo $area_row['id']; ?>"><span class="cname"><?php echo htmlspecialcharsFix($area_row['countryName']); ?></span><span class="close"></span></li>
  213. <?php
  214. }
  215. }
  216. ?>
  217. </ul>
  218. <input type="text" id="AreaSearch" class="fastsearch">
  219. <div id="arealist" class="productlist"><ul></ul></div>
  220. </td>
  221. </tr>
  222. <tr>
  223. <th width="8%">不报价处理方式</th>
  224. <td><input type="text" id="note" name="note" value="<?php echo $note; ?>" class="txt1"/></td>
  225. </tr>
  226. <tr>
  227. <th width="8%">备注</th>
  228. <td><input type="text" id="tips" name="tips" value="<?php echo $tips; ?>" class="txt1"/></td>
  229. </tr>
  230. <tr>
  231. <th></th>
  232. <td colspan="2">
  233. <input type="submit" name="save" value="确定" class="btn1" />
  234. <input type="reset" name="reset" value="重置" class="btn1" />
  235. <input type="button" value="返回" class="btn1" onClick="location.href='<?php echo $href_str; ?>'" />
  236. </td>
  237. </tr>
  238. </tbody>
  239. </table>
  240. </form>
  241. </div>
  242. <script>
  243. $(document).ready(function(){
  244. // Add rebate rule item
  245. $(document).on('click', '.addspecitem', function(){
  246. var newSpecItem = $(this).closest('.specitem').clone(true);
  247. newSpecItem.find('input[type="text"], input[type="hidden"]').val(''); // Clear values
  248. newSpecItem.find('input[name="min_quantity[]"]').val('1'); // Reset min quantity to 1
  249. newSpecItem.find('input[name="rebate_id[]"]').val('0'); // Set ID to 0 for new rebate rules
  250. $(this).closest('.specifications').append(newSpecItem);
  251. });
  252. // Remove rebate rule item
  253. $(document).on('click', '.delspecitem', function(){
  254. if($('.specitem').length > 1){
  255. $(this).closest('.specitem').remove();
  256. } else {
  257. alert('至少需要保留一个返点规则');
  258. }
  259. });
  260. // Update unit display when unit field changes
  261. $('#unit').on('change keyup', function(){
  262. $('.unit').text($(this).val());
  263. });
  264. // 验证最低采购数量不重复且返点金额符合规则
  265. $('form[name="form1"]').on('submit', function(e){
  266. // 检查是否有重复的最低采购数量
  267. var quantities = [];
  268. var hasError = false;
  269. // 收集并检查所有数量值
  270. $('input[name="min_quantity[]"]').each(function(){
  271. var quantity = parseInt($(this).val());
  272. if(quantities.includes(quantity)) {
  273. alert('错误:存在重复的最低采购数量 ' + quantity + ',请修改!');
  274. $(this).focus();
  275. hasError = true;
  276. return false; // 跳出循环
  277. }
  278. quantities.push(quantity);
  279. });
  280. if(hasError) {
  281. e.preventDefault();
  282. return false;
  283. }
  284. // 按最低采购数量排序规则
  285. var rules = [];
  286. $('.specitem').each(function(){
  287. var quantity = parseInt($(this).find('input[name="min_quantity[]"]').val());
  288. var amount = parseFloat($(this).find('input[name="rebate_amount[]"]').val());
  289. rules.push({
  290. element: $(this),
  291. quantity: quantity,
  292. amount: amount
  293. });
  294. });
  295. // 按数量从小到大排序
  296. rules.sort(function(a, b){
  297. return a.quantity - b.quantity;
  298. });
  299. // 检查返点金额规则:数量越多,返点金额应大于等于数量小的
  300. for(var i = 1; i < rules.length; i++) {
  301. if(rules[i].amount < rules[i-1].amount) {
  302. alert('错误:最低采购数量为 ' + rules[i].quantity + ' 的返点金额不能小于最低采购数量为 ' + rules[i-1].quantity + ' 的返点金额!');
  303. rules[i].element.find('input[name="rebate_amount[]"]').focus();
  304. hasError = true;
  305. break;
  306. }
  307. }
  308. if(hasError) {
  309. e.preventDefault();
  310. return false;
  311. }
  312. return true;
  313. });
  314. });
  315. </script>
  316. </body>
  317. </html>
  318. <?php mysqli_close($conn); ?>