country.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560
  1. <?php
  2. ob_start();
  3. require_once 'conn.php';
  4. checklogin("信息管理");
  5. ?>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. <title>管理区域</title>
  11. <link rel="stylesheet" href="css/common.css" type="text/css" />
  12. <link rel="stylesheet" href="css/jquery.galpop.css" type="text/css" />
  13. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  14. <script type="text/javascript" src="js/js.js"></script>
  15. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  16. <script type="text/javascript" src="js/NewSearchproduct.js"></script>
  17. <style>
  18. /* Styles for specification section */
  19. .specifications {
  20. margin-bottom: 10px;
  21. width: 100%;
  22. }
  23. .specitem {
  24. margin-bottom: 8px;
  25. padding: 8px 10px;
  26. border: 1px solid #e0e0e0;
  27. border-radius: 4px;
  28. clear: both;
  29. overflow: hidden;
  30. }
  31. .spec-label {
  32. display: inline-block;
  33. margin-right: 5px;
  34. font-weight: normal;
  35. }
  36. .spec-input {
  37. width: 120px;
  38. padding: 4px;
  39. margin-right: 10px;
  40. border: 1px solid #ccc;
  41. border-radius: 3px;
  42. }
  43. .spec-small-input {
  44. width: 80px;
  45. padding: 4px;
  46. margin-right: 10px;
  47. border: 1px solid #ccc;
  48. border-radius: 3px;
  49. }
  50. .required {
  51. color: red;
  52. margin-left: 2px;
  53. }
  54. .specdelete {
  55. float: right;
  56. cursor: pointer;
  57. color: red;
  58. font-weight: bold;
  59. margin-right: 5px;
  60. }
  61. #specificationlist {
  62. max-height: 300px;
  63. overflow-y: auto;
  64. border: 1px solid #ddd;
  65. margin-top: 5px;
  66. display: none;
  67. background-color: white;
  68. z-index: 999;
  69. position: absolute;
  70. width: 100%;
  71. left: 0;
  72. right: 0;
  73. box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  74. box-sizing: border-box;
  75. }
  76. #specificationlist ul {
  77. list-style: none;
  78. padding: 0;
  79. margin: 0;
  80. }
  81. #specificationlist li {
  82. padding: 8px 10px;
  83. cursor: pointer;
  84. border-bottom: 1px solid #eee;
  85. }
  86. #specificationlist li:hover {
  87. background-color: #f0f0f0;
  88. }
  89. .product-header {
  90. margin-top: 10px;
  91. padding: 8px;
  92. background: #f5f5f5;
  93. font-weight: bold;
  94. border-radius: 4px;
  95. border: 1px solid #ddd;
  96. }
  97. /* 增加搜索相关样式 */
  98. .productinput {
  99. position: relative;
  100. width: 100%;
  101. max-width: 90%;
  102. }
  103. .fastsearch {
  104. width: 100%;
  105. padding: 8px;
  106. border: 1px solid #ddd;
  107. border-radius: 4px;
  108. box-sizing: border-box;
  109. }
  110. .category-tag {
  111. color: #777;
  112. font-size: 12px;
  113. font-style: italic;
  114. margin-left: 5px;
  115. }
  116. </style>
  117. </head>
  118. <body>
  119. <div id="man_zone">
  120. <?php
  121. $act = $_GET['act'] ?? '';
  122. if ($act == "save") {
  123. $isedit = false;
  124. $id = $_POST['id'] ?? '';
  125. if ($id != "" && is_numeric($id)) {
  126. $isedit = true;
  127. }
  128. $countryName = $_POST['countryName'] ?? '';
  129. $countryCode = $_POST['countryCode'] ?? '';
  130. // 验证国家和区号不能为空
  131. if (trim($countryName) === '') {
  132. echo "<script>alert('错误:国家名称不能为空!');history.back();</script>";
  133. exit;
  134. }
  135. if (trim($countryCode) === '') {
  136. echo "<script>alert('错误:区号不能为空!');history.back();</script>";
  137. exit;
  138. }
  139. // 规格相关数据
  140. $specProductIds = $_POST['spec_product_id'] ?? [];
  141. $specIds = $_POST['spec_id'] ?? [];
  142. $specPrices = $_POST['spec_price'] ?? [];
  143. $specMoqs = $_POST['spec_moq'] ?? [];
  144. // 验证售价不能为0
  145. $hasZeroPrice = false;
  146. $zeroProductName = '';
  147. $zeroSpecName = '';
  148. if (!empty($specProductIds) && !empty($specIds) && is_array($specProductIds) && is_array($specIds)) {
  149. for ($i = 0; $i < count($specProductIds); $i++) {
  150. if (isset($specPrices[$i])) {
  151. $price = trim($specPrices[$i]);
  152. if ($price === '' || $price === '0' || floatval($price) <= 0) {
  153. // 查询产品和规格名称
  154. $productId = intval($specProductIds[$i]);
  155. $specId = intval($specIds[$i]);
  156. $nameQuery = "SELECT p.ProductName, ps.spec_name
  157. FROM products p
  158. JOIN product_specifications ps ON p.id = ps.product_id
  159. WHERE p.id = $productId AND ps.id = $specId";
  160. $nameResult = $conn->query($nameQuery);
  161. if ($nameResult && $nameRow = $nameResult->fetch_assoc()) {
  162. $zeroProductName = $nameRow['ProductName'];
  163. $zeroSpecName = $nameRow['spec_name'];
  164. }
  165. $hasZeroPrice = true;
  166. break;
  167. }
  168. }
  169. }
  170. }
  171. if ($hasZeroPrice) {
  172. echo "<script>alert('错误:产品 [".$zeroProductName."] 的规格 [".$zeroSpecName."] 售价不能为0或空白!');history.back();</script>";
  173. exit;
  174. }
  175. if ($isedit) {
  176. $sql = "UPDATE country SET
  177. countryName = '" . $conn->real_escape_string($countryName) . "',
  178. countryCode = '" . $conn->real_escape_string($countryCode) . "',
  179. addtime = NOW()
  180. WHERE id = $id";
  181. $conn->query($sql);
  182. // 删除该国家的所有产品规格价格
  183. $conn->query("DELETE FROM product_country_price WHERE country_id=$id");
  184. // 处理规格价格数据
  185. if (!empty($specProductIds) && !empty($specIds) && is_array($specProductIds) && is_array($specIds)) {
  186. for ($i = 0; $i < count($specProductIds); $i++) {
  187. if (isset($specPrices[$i]) && isset($specMoqs[$i]) && isset($specIds[$i])) {
  188. $productId = intval($specProductIds[$i]);
  189. $specId = intval($specIds[$i]);
  190. $specPrice = $conn->real_escape_string($specPrices[$i]);
  191. $specMoq = empty($specMoqs[$i]) ? 1 : intval($specMoqs[$i]);
  192. if ($productId > 0 && $specId > 0) {
  193. $sql = "INSERT INTO product_country_price (country_id, product_id, specification_id, price, min_order_quantity, addtime)
  194. VALUES ($id, $productId, $specId, '$specPrice', $specMoq, NOW())";
  195. $conn->query($sql);
  196. }
  197. }
  198. }
  199. }
  200. $page = $_GET['Page'] ?? '';
  201. $keys = urlencode($_GET['Keys'] ?? '');
  202. $ord = urlencode($_GET['Ord'] ?? '');
  203. header("Location: ?keys=$keys&Ord=$ord&Page=$page");
  204. exit;
  205. } else {
  206. // For new country, include countryName and countryCode
  207. $sql = "INSERT INTO country (countryName, countryCode, addtime) VALUES (
  208. '" . $conn->real_escape_string($countryName) . "',
  209. '" . $conn->real_escape_string($countryCode) . "',
  210. NOW()
  211. )";
  212. $conn->query($sql);
  213. $id = $conn->insert_id;
  214. // 处理规格价格数据
  215. if (!empty($specProductIds) && !empty($specIds) && is_array($specProductIds) && is_array($specIds)) {
  216. for ($i = 0; $i < count($specProductIds); $i++) {
  217. if (isset($specPrices[$i]) && isset($specMoqs[$i]) && isset($specIds[$i])) {
  218. $productId = intval($specProductIds[$i]);
  219. $specId = intval($specIds[$i]);
  220. $specPrice = $conn->real_escape_string($specPrices[$i]);
  221. $specMoq = empty($specMoqs[$i]) ? 1 : intval($specMoqs[$i]);
  222. if ($productId > 0 && $specId > 0) {
  223. $sql = "INSERT INTO product_country_price (country_id, product_id, specification_id, price, min_order_quantity, addtime)
  224. VALUES ($id, $productId, $specId, '$specPrice', $specMoq, NOW())";
  225. $conn->query($sql);
  226. }
  227. }
  228. }
  229. }
  230. header("Location: ?");
  231. exit;
  232. }
  233. }
  234. if ($act == "add" || $act == "edit") {
  235. $id = $_GET['id'] ?? '';
  236. $isedit = false;
  237. $countryCode = '';
  238. $countryName = '';
  239. $addtime = '';
  240. if ($id != "" && is_numeric($id)) {
  241. $isedit = true;
  242. $sql = "SELECT * FROM country WHERE id = $id";
  243. $result = $conn->query($sql);
  244. $row = $result->fetch_assoc();
  245. if ($row) {
  246. $countryCode = $row['countryCode'];
  247. $countryName = $row['countryName'];
  248. $addtime = $row['addtime'];
  249. } else {
  250. $isedit = false;
  251. }
  252. }
  253. $page = $_GET['Page'] ?? '';
  254. $keys = urlencode($_GET['Keys'] ?? '');
  255. $ord = urlencode($_GET['Ord'] ?? '');
  256. $hrefstr = "?keys=$keys&Ord=$ord&Page=$page";
  257. ?>
  258. <form name="form1" method="post" action="<?= $hrefstr ?>&act=save">
  259. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  260. <tbody>
  261. <tr>
  262. <th width="8%">国家</th>
  263. <td><input type="text" id="countryName" name="countryName" value="<?= htmlspecialcharsFix($countryName) ?>" class="txt1" required /><input type="hidden" name="id" value="<?= $id ?>" /></td>
  264. </tr>
  265. <tr>
  266. <th width="8%">区号</th>
  267. <td><input type="text" id="countryCode" name="countryCode" value="<?= htmlspecialcharsFix($countryCode) ?>" class="txt1" required /></td>
  268. </tr>
  269. <tr>
  270. <th width="8%">更新日期</th>
  271. <td><?= $addtime ?></td>
  272. </tr>
  273. <!-- 新增: 产品规格价格管理 -->
  274. <tr>
  275. <th width="8%">规格价格管理</th>
  276. <td>
  277. <div class="specifications">
  278. <?php
  279. if (!empty($id) && $id > 0) {
  280. // 只获取已经添加过的规格价格,而不是所有规格
  281. $sql = "SELECT p.id, p.ProductName, p.unit, ps.id as specification_id,
  282. ps.spec_name, pcp.price, pcp.min_order_quantity, pc.name as categoryName
  283. FROM product_country_price pcp
  284. JOIN products p ON pcp.product_id = p.id
  285. JOIN product_specifications ps ON pcp.specification_id = ps.id
  286. LEFT JOIN product_categories pc ON p.category_id = pc.id
  287. WHERE pcp.country_id = $id
  288. ORDER BY p.ProductName, ps.sort_order";
  289. $result = $conn->query($sql);
  290. if ($result && $result->num_rows > 0) {
  291. $current_product = 0;
  292. while ($row = $result->fetch_assoc()) {
  293. // 显示产品名称,每个产品只显示一次
  294. if ($current_product != $row['id']) {
  295. $current_product = $row['id'];
  296. $categoryDisplay = !empty($row['categoryName']) ? ' <span style="color:#888;font-size:12px;">['.$row['categoryName'].']</span>' : '';
  297. echo '<div class="product-header" style="margin-top:10px;padding:5px;background:#f5f5f5;font-weight:bold;">
  298. '.htmlspecialcharsFix($row['ProductName']).$categoryDisplay.'
  299. </div>';
  300. }
  301. // 设置默认值
  302. $price = isset($row['price']) ? $row['price'] : '';
  303. $moq = isset($row['min_order_quantity']) ? $row['min_order_quantity'] : '1';
  304. ?>
  305. <div class="specitem">
  306. <div class="specdelete" style="float:right;cursor:pointer;color:red;">✕</div>
  307. <input type="hidden" name="spec_product_id[]" value="<?= $row['id'] ?>">
  308. <input type="hidden" name="spec_id[]" value="<?= $row['specification_id'] ?>">
  309. <span class="spec-label">规格:</span>
  310. <span class="spec-name"><?= htmlspecialcharsFix($row['spec_name']) ?></span>
  311. <span class="spec-label" style="margin-left:15px;">起订数量:</span>
  312. <input type="number" class="spec-small-input" name="spec_moq[]" value="<?= $moq ?>">
  313. <span class="unit"><?= htmlspecialcharsFix($row['unit']) ?></span>
  314. <span class="spec-label" style="margin-left:15px;">售价:</span>
  315. <input type="text" class="spec-small-input" name="spec_price[]" value="<?= $price ?>" required min="0.01">
  316. <span>RMB</span>
  317. </div>
  318. <?php
  319. }
  320. } else {
  321. echo "<p>该地区暂无产品规格价格设置,请使用下方的搜索功能添加</p>";
  322. }
  323. } else {
  324. echo "<p>添加产品后可管理产品规格价格</p>";
  325. }
  326. ?>
  327. </div>
  328. </td>
  329. </tr>
  330. <tr>
  331. <th width="8%">添加规格价格</th>
  332. <td>
  333. <div class="productinput">
  334. <input type="text" id="specificationSearch" class="fastsearch" placeholder="搜索产品">
  335. <div id="specificationlist" class="productlist"><ul></ul></div>
  336. </div>
  337. </td>
  338. </tr>
  339. <tr>
  340. <th></th>
  341. <td>
  342. <input type="submit" name="save" id="save" value="确定" class="btn1" />
  343. <input type="reset" name="save" id="save" value="重置" class="btn1" />
  344. <input type="button" value="返回" class="btn1" onClick="location.href='<?= $hrefstr ?>'" />
  345. </td>
  346. </tr>
  347. </tbody>
  348. </table>
  349. </form>
  350. </div>
  351. </body>
  352. </html>
  353. <?php
  354. exit;
  355. }
  356. if ($act == "postchk") {
  357. $keys = urlencode($_GET['Keys'] ?? '');
  358. $ord = urlencode($_GET['Ord'] ?? '');
  359. $page = $_GET['Page'] ?? '';
  360. $chkact = $_POST['chkact'] ?? '';
  361. if (isset($_POST['chkbox']) && is_array($_POST['chkbox'])) {
  362. $ids = implode(',', array_map('intval', $_POST['chkbox']));
  363. $sql = "DELETE FROM country WHERE id IN ($ids)";
  364. $conn->query($sql);
  365. // 删除相关的产品规格价格
  366. $sql = "DELETE FROM product_country_price WHERE country_id IN ($ids)";
  367. $conn->query($sql);
  368. }
  369. header("Location: ?Keys=$keys&Ord=$ord&Page=$page");
  370. exit;
  371. }
  372. // Main list view
  373. $keys = $_GET['Keys'] ?? '';
  374. $keyscode = $keys;
  375. $ord = $_GET['Ord'] ?? '';
  376. $page = $_GET['Page'] ?? '';
  377. $sql = "SELECT * FROM country WHERE countryName LIKE '%$keyscode%' OR countryCode LIKE '%$keyscode%' ORDER BY id DESC";
  378. $result = $conn->query($sql);
  379. $results = [];
  380. while($row = $result->fetch_assoc()) {
  381. $results[] = $row;
  382. }
  383. $totalRecords = count($results);
  384. $pageSize = 20;
  385. $totalPages = ceil($totalRecords / $pageSize);
  386. if ($page == "") $page = 1;
  387. if ($page == "end") $page = $totalPages;
  388. if (!is_numeric($page) || $page < 1) $page = 1;
  389. $page = (int)$page;
  390. if ($page > $totalPages) $page = $totalPages;
  391. $start = ($page - 1) * $pageSize;
  392. $currentPageRecords = array_slice($results, $start, $pageSize);
  393. $keys = urlencode($keys);
  394. $ord = urlencode($ord);
  395. $hrefstr = "?keys=$keys";
  396. ?>
  397. <form id="form1" method="post" action="?act=postchk&Keys=<?= $keys ?>&Ord=<?= $ord ?>&Page=<?= $page ?>" onSubmit="return false">
  398. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  399. <thead>
  400. <tr>
  401. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  402. <th width="6%">序号</th>
  403. <th width="30%">国家</th>
  404. <th width="30%">区号</th>
  405. <th width="30%">操作</th>
  406. </tr>
  407. </thead>
  408. <tbody>
  409. <?php
  410. if (!empty($currentPageRecords)) {
  411. $tempNum = $start;
  412. foreach ($currentPageRecords as $row) {
  413. $tempNum++;
  414. ?>
  415. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  416. <td align="center"><input type="checkbox" name="chkbox[]" value="<?= $row['id'] ?>" /></td>
  417. <td align="center"><?= $tempNum ?></td>
  418. <td align="center"><?= htmlspecialcharsFix($row['countryName']) ?></td>
  419. <td align="center"><?= htmlspecialcharsFix($row['countryCode']) ?></td>
  420. <td align="center">
  421. <a href="?Keys=<?= $keys ?>&Ord=<?= $ord ?>&Page=<?= $page ?>&act=edit&id=<?= $row['id'] ?>" class="ico_edit ico">修改</a>
  422. </td>
  423. </tr>
  424. <?php
  425. }
  426. } else {
  427. if ($keys == "") {
  428. ?>
  429. <tr>
  430. <td align="center" colspan="5">Sorry,当前暂无信息</td>
  431. </tr>
  432. <?php
  433. } else {
  434. ?>
  435. <tr>
  436. <td align="center" colspan="5"><a href="?">Sorry,没有找到"<?= htmlspecialcharsFix($keyscode) ?>"相关的信息,点击返回</a></td>
  437. </tr>
  438. <?php
  439. }
  440. }
  441. ?>
  442. </tbody>
  443. <tfoot>
  444. <tr>
  445. <td colspan="5">
  446. <div class="showpagebox">
  447. <?php
  448. if ($totalPages > 1) {
  449. $pageName = "?Keys=$keys&Ord=$ord&";
  450. $pagelen = 3;
  451. if ($page > 1) {
  452. echo "<a href=\"{$pageName}Page=1\">首页</a>";
  453. echo "<a href=\"{$pageName}Page=" . ($page-1) . "\">上一页</a>";
  454. }
  455. if ($pagelen * 2 + 1 >= $totalPages) {
  456. $startPage = 1;
  457. $endPage = $totalPages;
  458. } else {
  459. if ($page <= $pagelen + 1) {
  460. $startPage = 1;
  461. $endPage = $pagelen * 2 + 1;
  462. } else {
  463. $startPage = $page - $pagelen;
  464. $endPage = $page + $pagelen;
  465. }
  466. if ($page + $pagelen > $totalPages) {
  467. $startPage = $totalPages - $pagelen * 2;
  468. $endPage = $totalPages;
  469. }
  470. }
  471. for ($i = $startPage; $i <= $endPage; $i++) {
  472. if ($i == $page) {
  473. echo "<a class=\"current\">$i</a>";
  474. } else {
  475. echo "<a href=\"{$pageName}Page=$i\">$i</a>";
  476. }
  477. }
  478. if ($page < $totalPages) {
  479. if ($totalPages - $page > $pagelen) {
  480. echo "<a href=\"{$pageName}Page=$totalPages\">...$totalPages</a>";
  481. }
  482. echo "<a href=\"{$pageName}Page=" . ($page+1) . "\">下一页</a>";
  483. echo "<a href=\"{$pageName}Page=$totalPages\">尾页</a>";
  484. }
  485. echo "<input type=\"text\" id=\"Pagego\" value=\"$page\" onFocus=\"if(this.value == '$page'){this.value='';}\""
  486. . " onBlur=\"if(this.value == ''){this.value='$page';}\""
  487. . " onKeyUp=\"this.value=this.value.replace(/\\D/g,'')\""
  488. . " onKeyDown=\"if(event.keyCode==13){location.href='{$pageName}Page='+document.getElementById('Pagego').value}\" />";
  489. }
  490. ?>
  491. </div>
  492. <div class="searchbox">
  493. <input type="text" id="keys" value="<?= $keyscode == "" ? "请输入搜索关键词" : htmlspecialcharsFix($keyscode) ?>"
  494. onFocus="if(this.value == '<?= $keyscode == "" ? "请输入搜索关键词" : htmlspecialcharsFix($keyscode) ?>'){this.value='';}"
  495. onBlur="if(this.value == ''){this.value='<?= $keyscode == "" ? "请输入搜索关键词" : htmlspecialcharsFix($keyscode) ?>';}"
  496. onKeyDown="if(event.keyCode==13){location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)}" />
  497. <input type="button" id="searchgo" value="go" onClick="location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)" />
  498. </div>
  499. <div class="postchkbox">
  500. <select id="chkact" name="chkact">
  501. <option value="1">请选择</option>
  502. <option value="-1">删除</option>
  503. </select>
  504. <input type="button" value="执行" onClick="postchk_new(1)" class="btn1" />
  505. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  506. </div>
  507. </td>
  508. </tr>
  509. </tfoot>
  510. </table>
  511. </form>
  512. </div>
  513. <script>
  514. $('.click-open-iframe').galpop({
  515. contentType: 'iframe',
  516. });
  517. // 规格搜索和添加功能已移至 js/NewSearchproduct.js
  518. </script>
  519. </body>
  520. </html>