quantitySearch.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. $product = $_GET['productId'] ?? '';
  5. $country = $_GET['country'] ?? '';
  6. $str = "";
  7. $result = $conn->query("SELECT ProductName, ProductImg, unit, moq, tips FROM products WHERE id=" . (int)$product);
  8. if ($row = $result->fetch_assoc()) {
  9. $productname = $row['ProductName'];
  10. $productImg = $row['ProductImg'];
  11. $unit = $row['unit'];
  12. $moq = $row['moq'] ?? '无数量限制';
  13. $tips = textUnCode($row['tips']);
  14. $str = "<td>" . htmlspecialcharsFix($productname) . "</td><td><img src=\"" . htmlspecialcharsFix($productImg) . "\"></td><td>" . htmlspecialcharsFix($moq) . "</td>";
  15. }
  16. // Check if product can be sold in the region
  17. $result = $conn->query("SELECT * FROM products WHERE (nosale LIKE '" . $conn->real_escape_string($country) . "%'
  18. OR nosale LIKE '%," . $conn->real_escape_string($country) . ",%'
  19. OR nosale LIKE '%" . $conn->real_escape_string($country) . "')
  20. AND Id=" . (int)$product);
  21. if ($row = $result->fetch_assoc()) {
  22. $str .= "<td class=\"nosale\">产品无法在该地区销售,请勿报价。<br>" . textUnCode($row['note']) . "</td>";
  23. } else {
  24. // Get price information for the specific area
  25. $result = $conn->query("SELECT DISTINCT num, price FROM price
  26. WHERE productId=" . (int)$product . " AND AreaId=" . (int)$country . "
  27. ORDER BY num ASC");
  28. if ($result->num_rows > 0) {
  29. $str .= "<td><ul>";
  30. while ($row = $result->fetch_assoc()) {
  31. $str .= "<li>订单数量:≥" . htmlspecialcharsFix($row['num']) .
  32. "<span class=\"unit\">" . htmlspecialcharsFix($unit) . "</span>" .
  33. "<span class=\"price\">" . htmlspecialcharsFix($row['price']) . "</span>RMB</li>";
  34. }
  35. $str .= "</ul></td><td>" . htmlspecialcharsFix($tips) . "</td>";
  36. } else {
  37. // Get default price information
  38. $result = $conn->query("SELECT DISTINCT num, price FROM price
  39. WHERE productId=" . (int)$product . " AND AreaId=0
  40. ORDER BY num ASC");
  41. $str .= "<td><ul>";
  42. while ($row = $result->fetch_assoc()) {
  43. $str .= "<li>订单数量:≥" . htmlspecialcharsFix($row['num']) .
  44. "<span class=\"unit\">" . htmlspecialcharsFix($unit) . "</span>" .
  45. "<span class=\"price\">" . htmlspecialcharsFix($row['price']) . "</span>RMB</li>";
  46. }
  47. $str .= "</ul></td><td>" . htmlspecialcharsFix($tips) . "</td>";
  48. }
  49. }
  50. echo $str;