get_product_info.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. header('Content-Type: application/json');
  5. // Product search functionality
  6. if (isset($_GET['search'])) {
  7. $search = mysqli_real_escape_string($conn, $_GET['search']);
  8. // Limit to 30 results for better performance in real-time searching
  9. // Search in ProductName, note, and tips fields, and include category information
  10. $sql = "SELECT p.id, p.ProductName, pc.name as category_name
  11. FROM products p
  12. LEFT JOIN product_categories pc ON p.category_id = pc.id
  13. WHERE p.ProductName LIKE '%$search%'
  14. OR p.note LIKE '%$search%'
  15. OR p.tips LIKE '%$search%'
  16. ORDER BY
  17. CASE
  18. WHEN p.ProductName LIKE '$search%' THEN 1 /* Exact start match first */
  19. WHEN p.ProductName LIKE '%$search%' THEN 2 /* Contains match in name */
  20. WHEN p.note LIKE '%$search%' THEN 3 /* Contains match in note */
  21. WHEN p.tips LIKE '%$search%' THEN 4 /* Contains match in tips */
  22. END,
  23. p.ProductName
  24. LIMIT 30";
  25. $result = mysqli_query($conn, $sql);
  26. $products = [];
  27. while ($row = mysqli_fetch_assoc($result)) {
  28. $products[] = $row;
  29. }
  30. echo json_encode(['products' => $products]);
  31. exit;
  32. }
  33. // Get product specifications
  34. if (isset($_GET['product_id'])) {
  35. $productId = (int)$_GET['product_id'];
  36. // Get product base information
  37. $productSql = "SELECT id, ProductName, unit FROM products WHERE id = $productId";
  38. $productResult = mysqli_query($conn, $productSql);
  39. $product = mysqli_fetch_assoc($productResult);
  40. if (!$product) {
  41. echo json_encode(['error' => 'Product not found']);
  42. exit;
  43. }
  44. // Get specifications for the product
  45. $specSql = "SELECT id, spec_name, spec_value, price, min_order_quantity, spec_code
  46. FROM product_specifications
  47. WHERE product_id = $productId
  48. ORDER BY sort_order, spec_name";
  49. $specResult = mysqli_query($conn, $specSql);
  50. $specifications = [];
  51. while ($row = mysqli_fetch_assoc($specResult)) {
  52. $specifications[] = $row;
  53. }
  54. echo json_encode([
  55. 'product' => $product,
  56. 'specifications' => $specifications
  57. ]);
  58. exit;
  59. }
  60. // Original get product info functionality
  61. $id = isset($_GET['id']) ? (int)$_GET['id'] : 0;
  62. // Modified to include specification information
  63. $sql = "SELECT p.unit
  64. FROM products p
  65. WHERE p.id = $id";
  66. $result = mysqli_query($conn, $sql);
  67. if ($row = mysqli_fetch_assoc($result)) {
  68. // Get specifications
  69. $specSql = "SELECT id, spec_name, spec_value, price, min_order_quantity, spec_code
  70. FROM product_specifications
  71. WHERE product_id = $id
  72. ORDER BY sort_order, spec_name";
  73. $specResult = mysqli_query($conn, $specSql);
  74. $specifications = [];
  75. while ($spec = mysqli_fetch_assoc($specResult)) {
  76. $specifications[] = $spec;
  77. }
  78. echo json_encode([
  79. 'unit' => $row['unit'],
  80. 'specifications' => $specifications
  81. ]);
  82. } else {
  83. echo json_encode(['error' => 'Product not found']);
  84. }
  85. ?>