Create New Folder
Create New File
Preview of send-to-mcleod.php
<?php
require_once __DIR__ . '/src/Services/Logger.php';
require_once __DIR__ . '/src/Api/McleodApiHandler.php';
require_once __DIR__ . '/src/Services/CustomerSearchService.php';
header('Content-Type: application/json');
try {
// Get JSON input
$inputJSON = file_get_contents('php://input');
$orderData = json_decode($inputJSON, true);
if (empty($orderData)) {
throw new Exception('No order data provided');
}
// Initialize logger
$logger = new \Services\Logger();
$logger->info('McLeod order creation request received');
// Debug log the incoming data to identify issues
$logger->info('INCOMING ORDER DATA RAW:', json_encode($orderData));
// Log location IDs for all stops immediately
if (!empty($orderData['stops'])) {
$locationIdLog = [];
foreach ($orderData['stops'] as $index => $stop) {
$locationIdLog[$index] = isset($stop['location_id']) ? $stop['location_id'] : 'MISSI
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