add_product.php 11 KB

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