Create New Folder
Create New File
Preview of commodity-lookup.php
<?php
// commodity-lookup.php
require_once __DIR__ . '/src/Services/Logger.php';
require_once __DIR__ . '/src/Services/CommodityLookupService.php';
header('Content-Type: application/json');
try {
$logger = new \Services\Logger();
$commodityService = new CommodityLookupService($logger);
// Handle different types of requests
$action = $_GET['action'] ?? 'search';
switch ($action) {
case 'search':
// Search for commodity codes
$term = $_GET['term'] ?? '';
if (empty($term)) {
throw new Exception('Search term is required');
}
$logger->info('Commodity search request for term: ' . $term);
$results = $commodityService->findByTerm($term);
echo json_encode([
'success' => true,
'results' => $results
]);
break;
case 'get':
Parent Directory
logs
meki
src
templates
RateConProcessor.php
commodity-lookup.php
commodity_codes.txt
composer.json
create-location.php
file_manager.php
get-customer-by-mc.php
index.html
mcleod-editor.js
process-ratecon.php
search-customer.php
search-location.php
send-to-mcleod.php