Create New Folder
Create New File
Preview of mcleod-editor.js
class McLeodEditor {
constructor(data) {
this.data = data;
this.commoditySuggestions = [];
// Configure API paths
this.apiPaths = {
// Base path for API requests - adjust this according to your server setup
base: '', // Empty string for same directory, or '/api' for a subdirectory
// Individual API endpoints
searchLocation: 'search-location.php',
createLocation: 'create-location.php',
commodityLookup: 'commodity-lookup.php',
sendToMcleod: 'send-to-mcleod.php',
uploadPdf: 'upload-pdf-to-mcleod.php'
};
// Extract broker name from driver summary immediately at initialization
this.extractBrokerFromDriverSummary();
this.render();
}
// New method to extract broker name from driver summary at initialization
extractBrokerFromDriverSummary() {
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