-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Anamakine: localhost:3306
-- Üretim Zamanı: 30 Mar 2026, 14:31:36
-- Sunucu sürümü: 10.5.29-MariaDB
-- PHP Sürümü: 8.3.14

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Veritabanı: `kodfb_patron`
--

-- --------------------------------------------------------

--
-- Tablo için tablo yapısı `activity_logs`
--

CREATE TABLE `activity_logs` (
  `id` int(10) UNSIGNED NOT NULL,
  `user_id` int(10) UNSIGNED DEFAULT NULL,
  `action` varchar(100) NOT NULL,
  `target` varchar(100) DEFAULT NULL,
  `target_id` int(10) UNSIGNED DEFAULT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`payload`)),
  `ip` varchar(45) DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Tablo için tablo yapısı `collections`
--

CREATE TABLE `collections` (
  `id` int(10) UNSIGNED NOT NULL,
  `sale_id` int(10) UNSIGNED NOT NULL,
  `collected_amount` decimal(15,2) NOT NULL,
  `collection_date` date NOT NULL,
  `collected_by` int(10) UNSIGNED DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Tablo için tablo yapısı `countries`
--

CREATE TABLE `countries` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(100) NOT NULL,
  `code` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Tablo döküm verisi `countries`
--

INSERT INTO `countries` (`id`, `name`, `code`) VALUES
(1, 'Germany', 'DE'),
(2, 'USA', 'US'),
(3, 'Italy', 'IT'),
(4, 'France', 'FR'),
(5, 'United Kingdom', 'UK');

-- --------------------------------------------------------

--
-- Tablo için tablo yapısı `currencies`
--

CREATE TABLE `currencies` (
  `id` int(10) UNSIGNED NOT NULL,
  `code` varchar(10) NOT NULL,
  `symbol` varchar(5) DEFAULT NULL,
  `name` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Tablo döküm verisi `currencies`
--

INSERT INTO `currencies` (`id`, `code`, `symbol`, `name`) VALUES
(1, 'USD', '$', 'US Dollar'),
(2, 'EUR', '€', 'Euro'),
(3, 'GBP', '£', 'British Pound'),
(4, 'TRY', '₺', 'Turkish Lira');

-- --------------------------------------------------------

--
-- Tablo için tablo yapısı `customers`
--

CREATE TABLE `customers` (
  `id` int(10) UNSIGNED NOT NULL,
  `company_name` varchar(200) NOT NULL,
  `country_id` int(10) UNSIGNED NOT NULL,
  `contact_person` varchar(150) DEFAULT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `email` varchar(150) DEFAULT NULL,
  `currency_id` int(11) NOT NULL DEFAULT 1,
  `payment_term_days` smallint(5) UNSIGNED NOT NULL DEFAULT 30,
  `exporter_user_id` int(10) UNSIGNED DEFAULT NULL,
  `operation_user_id` int(10) UNSIGNED DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Tablo döküm verisi `customers`
--

INSERT INTO `customers` (`id`, `company_name`, `country_id`, `contact_person`, `phone`, `email`, `currency_id`, `payment_term_days`, `exporter_user_id`, `operation_user_id`, `notes`, `is_active`, `created_at`, `updated_at`) VALUES
(1, 'Acme GmbH', 1, 'Hans Müller', NULL, 'hans@acme.de', 2, 60, 2, 3, NULL, 1, '2026-03-27 14:56:06', '2026-03-27 14:56:06'),
(2, 'TradeLink LLC', 2, 'John Smith', NULL, 'john@tradelink.com', 1, 30, 2, 3, NULL, 1, '2026-03-27 14:56:06', '2026-03-27 14:56:06'),
(3, 'Alfa Italia SRL', 3, 'Marco Rossi', NULL, 'marco@alfa.it', 2, 90, 2, 3, NULL, 1, '2026-03-27 14:56:06', '2026-03-27 14:56:06');

-- --------------------------------------------------------

--
-- Tablo için tablo yapısı `sales`
--

CREATE TABLE `sales` (
  `id` int(10) UNSIGNED NOT NULL,
  `customer_id` int(10) UNSIGNED NOT NULL,
  `sale_date` date NOT NULL,
  `country_id` int(10) UNSIGNED NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `currency_id` int(11) NOT NULL DEFAULT 1,
  `due_date` date NOT NULL,
  `status` enum('unpaid','paid','partial') NOT NULL DEFAULT 'unpaid',
  `notes` text DEFAULT NULL,
  `created_by` int(10) UNSIGNED DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Tablo döküm verisi `sales`
--

INSERT INTO `sales` (`id`, `customer_id`, `sale_date`, `country_id`, `amount`, `currency_id`, `due_date`, `status`, `notes`, `created_by`, `created_at`, `updated_at`) VALUES
(1, 1, '2026-03-30', 1, 50.00, 1, '2026-04-15', 'unpaid', NULL, 6, '2026-03-30 14:03:20', '2026-03-30 14:30:57');

-- --------------------------------------------------------

--
-- Tablo için tablo yapısı `sale_files`
--

CREATE TABLE `sale_files` (
  `id` int(10) UNSIGNED NOT NULL,
  `sale_id` int(10) UNSIGNED NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_path` varchar(500) NOT NULL,
  `file_type` varchar(50) DEFAULT NULL,
  `file_size` int(10) UNSIGNED DEFAULT NULL,
  `uploaded_by` int(10) UNSIGNED DEFAULT NULL,
  `uploaded_at` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Tablo için tablo yapısı `ServiceLog`
--

CREATE TABLE `ServiceLog` (
  `id` int(10) UNSIGNED NOT NULL,
  `request_data` longtext DEFAULT NULL,
  `response_data` longtext DEFAULT NULL,
  `service` varchar(100) DEFAULT NULL,
  `request_time` datetime NOT NULL DEFAULT current_timestamp(),
  `response_time` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Tablo döküm verisi `ServiceLog`
--

INSERT INTO `ServiceLog` (`id`, `request_data`, `response_data`, `service`, `request_time`, `response_time`) VALUES
(1, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-27 15:08:49', '2026-03-27 15:08:49'),
(2, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-27 15:08:52', '2026-03-27 15:08:52'),
(3, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-27 15:26:53', '2026-03-27 15:26:53'),
(4, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-27 15:27:04', '2026-03-27 15:27:04'),
(5, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-27 15:27:06', '2026-03-27 15:27:06'),
(6, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-27 15:27:09', '2026-03-27 15:27:09'),
(7, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-27 15:27:11', '2026-03-27 15:27:11'),
(8, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-27 15:27:16', '2026-03-27 15:27:16'),
(9, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-27 15:36:40', '2026-03-27 15:36:40'),
(10, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-27 15:36:43', '2026-03-27 15:36:43'),
(11, '{\"token\":\"667962ddddd61f0face2938fb6737fda\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-27 15:40:06', '2026-03-27 15:40:06'),
(12, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-27 16:13:33', '2026-03-27 16:13:33'),
(13, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-27 16:13:35', '2026-03-27 16:13:35'),
(14, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-27 16:13:36', '2026-03-27 16:13:36'),
(15, '{\"token\":\"1\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-27 16:13:36', '2026-03-27 16:13:36'),
(16, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 09:42:09', '2026-03-30 09:42:09'),
(17, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 09:43:13', '2026-03-30 09:43:13'),
(18, '{\"token\":\"1\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 09:43:15', '2026-03-30 09:43:15'),
(19, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 09:43:15', '2026-03-30 09:43:15'),
(20, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 09:43:20', '2026-03-30 09:43:20'),
(21, '{\"token\":\"1\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 09:43:21', '2026-03-30 09:43:21'),
(22, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 09:43:21', '2026-03-30 09:43:21'),
(23, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 09:43:32', '2026-03-30 09:43:32'),
(24, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 09:44:28', '2026-03-30 09:44:28'),
(25, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 09:44:29', '2026-03-30 09:44:29'),
(26, '{\"token\":\"1\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 09:44:29', '2026-03-30 09:44:29'),
(27, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 09:53:23', '2026-03-30 09:53:23'),
(28, '{\"token\":\"1\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 09:53:23', '2026-03-30 09:53:23'),
(29, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 09:53:27', '2026-03-30 09:53:27'),
(30, '{\"token\":\"1\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 09:53:27', '2026-03-30 09:53:27'),
(31, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 09:54:25', '2026-03-30 09:54:25'),
(32, '{\"token\":\"1\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 09:54:25', '2026-03-30 09:54:25'),
(33, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 09:54:33', '2026-03-30 09:54:33'),
(34, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 09:54:35', '2026-03-30 09:54:35'),
(35, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 09:54:41', '2026-03-30 09:54:41'),
(36, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 09:54:53', '2026-03-30 09:54:53'),
(37, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 09:54:55', '2026-03-30 09:54:55'),
(38, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 09:54:56', '2026-03-30 09:54:56'),
(39, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 09:54:58', '2026-03-30 09:54:58'),
(40, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 09:56:20', '2026-03-30 09:56:20'),
(41, '{\"token\":\"667962ddddd61f0face2938fb6737fda\",\"role\":\"\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Admin User\\\",\\\"email\\\":\\\"admin@company.com\\\",\\\"role\\\":\\\"admin\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"},{\\\"id\\\":4,\\\"name\\\":\\\"Ay\\\\u015fe Finans\\\",\\\"email\\\":\\\"ayse@company.com\\\",\\\"role\\\":\\\"finance\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"test\\\",\\\"email\\\":\\\"test@gmail.com\\\",\\\"role\\\":\\\"admin\\\"},{\\\"id\\\":6,\\\"name\\\":\\\"berkay\\\",\\\"email\\\":\\\"my@brky.net\\\",\\\"role\\\":\\\"admin\\\"},{\\\"id\\\":7,\\\"name\\\":\\\"deneme\\\",\\\"email\\\":\\\"deneme@gmail.com\\\",\\\"role\\\":\\\"admin\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:06:32', '2026-03-30 10:06:32'),
(42, '{\"email\":\"test@gmail.com\",\"password\":\"123456\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Giri\\\\u015f ba\\\\u015far\\\\u0131l\\\\u0131\\\",\\\"Data\\\":{\\\"User\\\":{\\\"id\\\":5,\\\"name\\\":\\\"test\\\",\\\"email\\\":\\\"test@gmail.com\\\",\\\"role\\\":\\\"admin\\\",\\\"token\\\":\\\"045ca5c856dcafff3b61ca3b8219998b\\\"}},\\\"Redirect\\\":null}\"', 'login', '2026-03-30 10:07:10', '2026-03-30 10:07:10'),
(43, '{\"token\":\"045ca5c856dcafff3b61ca3b8219998b\",\"role\":\"\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Admin User\\\",\\\"email\\\":\\\"admin@company.com\\\",\\\"role\\\":\\\"admin\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"},{\\\"id\\\":4,\\\"name\\\":\\\"Ay\\\\u015fe Finans\\\",\\\"email\\\":\\\"ayse@company.com\\\",\\\"role\\\":\\\"finance\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"test\\\",\\\"email\\\":\\\"test@gmail.com\\\",\\\"role\\\":\\\"admin\\\"},{\\\"id\\\":6,\\\"name\\\":\\\"berkay\\\",\\\"email\\\":\\\"my@brky.net\\\",\\\"role\\\":\\\"admin\\\"},{\\\"id\\\":7,\\\"name\\\":\\\"deneme\\\",\\\"email\\\":\\\"deneme@gmail.com\\\",\\\"role\\\":\\\"admin\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:07:19', '2026-03-30 10:07:19'),
(44, '{\"token\":\"045ca5c856dcafff3b61ca3b8219998b\",\"role\":\"dassad\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:07:21', '2026-03-30 10:07:21'),
(45, '{\"token\":\"045ca5c856dcafff3b61ca3b8219998b\",\"role\":\"\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Admin User\\\",\\\"email\\\":\\\"admin@company.com\\\",\\\"role\\\":\\\"admin\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"},{\\\"id\\\":4,\\\"name\\\":\\\"Ay\\\\u015fe Finans\\\",\\\"email\\\":\\\"ayse@company.com\\\",\\\"role\\\":\\\"finance\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"test\\\",\\\"email\\\":\\\"test@gmail.com\\\",\\\"role\\\":\\\"admin\\\"},{\\\"id\\\":6,\\\"name\\\":\\\"berkay\\\",\\\"email\\\":\\\"my@brky.net\\\",\\\"role\\\":\\\"admin\\\"},{\\\"id\\\":7,\\\"name\\\":\\\"deneme\\\",\\\"email\\\":\\\"deneme@gmail.com\\\",\\\"role\\\":\\\"admin\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:07:23', '2026-03-30 10:07:23'),
(46, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 10:44:04', '2026-03-30 10:44:04'),
(47, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 10:44:09', '2026-03-30 10:44:09'),
(48, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 10:44:10', '2026-03-30 10:44:10'),
(49, '{\"token\":\"1\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 10:44:12', '2026-03-30 10:44:12'),
(50, '{\"token\":\"1\",\"role\":\"operation\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:44:12', '2026-03-30 10:44:12'),
(51, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:44:12', '2026-03-30 10:44:12'),
(52, '{\"token\":\"1\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:44:12', '2026-03-30 10:44:12'),
(53, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 10:44:12', '2026-03-30 10:44:12'),
(54, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"operation\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:44:13', '2026-03-30 10:44:13'),
(55, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 10:46:21', '2026-03-30 10:46:21');
INSERT INTO `ServiceLog` (`id`, `request_data`, `response_data`, `service`, `request_time`, `response_time`) VALUES
(56, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 10:46:25', '2026-03-30 10:46:25'),
(57, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 10:46:27', '2026-03-30 10:46:27'),
(58, '{\"token\":\"1\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 10:46:27', '2026-03-30 10:46:27'),
(59, '{\"token\":\"1\",\"role\":\"operation\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:46:27', '2026-03-30 10:46:27'),
(60, '{\"token\":\"1\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":false,\\\"Message\\\":\\\"Ge\\\\u00e7ersiz oturum\\\",\\\"Data\\\":null,\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:46:27', '2026-03-30 10:46:27'),
(61, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:46:27', '2026-03-30 10:46:27'),
(62, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"operation\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:46:27', '2026-03-30 10:46:27'),
(63, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 10:48:32', '2026-03-30 10:48:32'),
(64, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 10:49:11', '2026-03-30 10:49:11'),
(65, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:49:12', '2026-03-30 10:49:12'),
(66, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 10:49:12', '2026-03-30 10:49:12'),
(67, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"operation\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:49:12', '2026-03-30 10:49:12'),
(68, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 10:49:24', '2026-03-30 10:49:24'),
(69, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:49:24', '2026-03-30 10:49:24'),
(70, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"operation\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:49:24', '2026-03-30 10:49:24'),
(71, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"operation\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:49:27', '2026-03-30 10:49:27'),
(72, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 10:49:27', '2026-03-30 10:49:27'),
(73, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 10:49:27', '2026-03-30 10:49:27'),
(74, '{\"token\":\"045ca5c856dcafff3b61ca3b8219998b\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Sat\\\\u0131\\\\u015flar listelendi\\\",\\\"Data\\\":{\\\"Sales\\\":[]},\\\"Redirect\\\":null}\"', 'getSales', '2026-03-30 10:50:29', '2026-03-30 10:50:29'),
(75, '{\"token\":\"667962ddddd61f0face2938fb6737fda\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 10:51:56', '2026-03-30 10:51:56'),
(76, '{\"token\":\"045ca5c856dcafff3b61ca3b8219998b\",\"customer_id\":\"6\",\"sale_date\":\"30.03.2026\",\"country_id\":\"4\",\"amount\":\"2000\",\"currency\":\"USD\",\"due_date\":\"25.07.2026\"}', NULL, 'saveSale', '2026-03-30 10:52:25', NULL),
(77, '{\"token\":\"045ca5c856dcafff3b61ca3b8219998b\",\"customer_id\":\"6\",\"sale_date\":\"2026-03-30\",\"country_id\":\"4\",\"amount\":\"2000\",\"currency\":\"USD\",\"due_date\":\"2026-09-25\"}', NULL, 'saveSale', '2026-03-30 10:53:16', NULL),
(78, '{\"token\":\"667962ddddd61f0face2938fb6737fda\",\"type\":\"overdue \"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Rapor ba\\\\u015far\\\\u0131yla olu\\\\u015fturuldu\\\",\\\"Data\\\":{\\\"Report\\\":[]},\\\"Redirect\\\":null}\"', 'getReport', '2026-03-30 10:54:17', '2026-03-30 10:54:17'),
(79, '{\"token\":\"667962ddddd61f0face2938fb6737fda\",\"type\":\"\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Rapor ba\\\\u015far\\\\u0131yla olu\\\\u015fturuldu\\\",\\\"Data\\\":{\\\"Report\\\":[]},\\\"Redirect\\\":null}\"', 'getReport', '2026-03-30 10:54:19', '2026-03-30 10:54:19'),
(80, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:04:59', '2026-03-30 11:04:59'),
(81, '{\"token\":\"dd579d3725970968c9d77e398495739f\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:05:05', '2026-03-30 11:05:05'),
(82, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:31:01', '2026-03-30 11:31:01'),
(83, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:31:03', '2026-03-30 11:31:03'),
(84, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:36:29', '2026-03-30 11:36:29'),
(85, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:37:56', '2026-03-30 11:37:56'),
(86, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:41:00', '2026-03-30 11:41:00'),
(87, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:41:21', '2026-03-30 11:41:21'),
(88, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:41:24', '2026-03-30 11:41:24'),
(89, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:41:32', '2026-03-30 11:41:32'),
(90, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 11:41:33', '2026-03-30 11:41:33'),
(91, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 11:41:33', '2026-03-30 11:41:33'),
(92, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"operation\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 11:41:33', '2026-03-30 11:41:33'),
(93, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:41:36', '2026-03-30 11:41:36'),
(94, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:41:41', '2026-03-30 11:41:41'),
(95, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:42:32', '2026-03-30 11:42:32'),
(96, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:43:32', '2026-03-30 11:43:32'),
(97, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:43:33', '2026-03-30 11:43:33'),
(98, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:43:37', '2026-03-30 11:43:37'),
(99, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:47:11', '2026-03-30 11:47:11'),
(100, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:47:16', '2026-03-30 11:47:16'),
(101, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:47:19', '2026-03-30 11:47:19'),
(102, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:47:20', '2026-03-30 11:47:20'),
(103, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:47:23', '2026-03-30 11:47:23'),
(104, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:47:55', '2026-03-30 11:47:55'),
(105, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:47:59', '2026-03-30 11:47:59'),
(106, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:48:01', '2026-03-30 11:48:01'),
(107, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:48:11', '2026-03-30 11:48:11'),
(108, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:48:12', '2026-03-30 11:48:12'),
(109, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:48:22', '2026-03-30 11:48:22'),
(110, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:48:40', '2026-03-30 11:48:40');
INSERT INTO `ServiceLog` (`id`, `request_data`, `response_data`, `service`, `request_time`, `response_time`) VALUES
(111, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:48:45', '2026-03-30 11:48:45'),
(112, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:48:46', '2026-03-30 11:48:46'),
(113, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:48:48', '2026-03-30 11:48:48'),
(114, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:49:34', '2026-03-30 11:49:34'),
(115, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:49:37', '2026-03-30 11:49:37'),
(116, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:49:58', '2026-03-30 11:49:58'),
(117, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:53:00', '2026-03-30 11:53:00'),
(118, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:53:11', '2026-03-30 11:53:11'),
(119, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 11:53:13', '2026-03-30 11:53:13'),
(120, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"operation\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 11:53:13', '2026-03-30 11:53:13'),
(121, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 11:53:13', '2026-03-30 11:53:13'),
(122, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 11:53:17', '2026-03-30 11:53:17'),
(123, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 11:53:17', '2026-03-30 11:53:17'),
(124, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"operation\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 11:53:17', '2026-03-30 11:53:17'),
(125, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:54:05', '2026-03-30 11:54:05'),
(126, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:54:26', '2026-03-30 11:54:26'),
(127, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 11:54:28', '2026-03-30 11:54:29'),
(128, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"operation\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 11:54:29', '2026-03-30 11:54:29'),
(129, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 11:54:29', '2026-03-30 11:54:29'),
(130, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:55:20', '2026-03-30 11:55:20'),
(131, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:55:34', '2026-03-30 11:55:34'),
(132, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:58:55', '2026-03-30 11:58:55'),
(133, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:58:57', '2026-03-30 11:58:57'),
(134, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:58:58', '2026-03-30 11:58:58'),
(135, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:59:00', '2026-03-30 11:59:00'),
(136, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:59:02', '2026-03-30 11:59:02'),
(137, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 11:59:04', '2026-03-30 11:59:04'),
(138, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 11:59:04', '2026-03-30 11:59:04'),
(139, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"operation\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 11:59:04', '2026-03-30 11:59:04'),
(140, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 11:59:10', '2026-03-30 11:59:10'),
(141, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"operation\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 11:59:10', '2026-03-30 11:59:10'),
(142, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 11:59:10', '2026-03-30 11:59:10'),
(143, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 11:59:17', '2026-03-30 11:59:17'),
(144, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 11:59:24', '2026-03-30 11:59:24'),
(145, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 12:07:40', '2026-03-30 12:07:40'),
(146, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 12:07:42', '2026-03-30 12:07:42'),
(147, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 12:07:43', '2026-03-30 12:07:43'),
(148, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 12:07:47', '2026-03-30 12:07:47'),
(149, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 12:08:54', '2026-03-30 12:08:54'),
(150, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Countries\\\":[{\\\"id\\\":4,\\\"name\\\":\\\"France\\\",\\\"code\\\":\\\"FR\\\"},{\\\"id\\\":1,\\\"name\\\":\\\"Germany\\\",\\\"code\\\":\\\"DE\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Italy\\\",\\\"code\\\":\\\"IT\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"United Kingdom\\\",\\\"code\\\":\\\"UK\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"USA\\\",\\\"code\\\":\\\"US\\\"}]},\\\"Redirect\\\":null}\"', 'getCountries', '2026-03-30 12:08:56', '2026-03-30 12:08:56'),
(151, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"exporter\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":2,\\\"name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"email\\\":\\\"ali@company.com\\\",\\\"role\\\":\\\"exporter\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 12:08:56', '2026-03-30 12:08:56'),
(152, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\",\"role\":\"operation\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":null,\\\"Data\\\":{\\\"Users\\\":[{\\\"id\\\":3,\\\"name\\\":\\\"Mehmet Ops\\\",\\\"email\\\":\\\"mehmet@company.com\\\",\\\"role\\\":\\\"operation\\\"}]},\\\"Redirect\\\":null}\"', 'getUsers', '2026-03-30 12:08:56', '2026-03-30 12:08:56'),
(153, '{\"token\":\"911a7aae8d9bcaab3c846378ccd00d47\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 12:14:33', '2026-03-30 12:14:33'),
(154, '{\"email\":\"test@gmail.com\",\"password\":\"123456\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Giri\\\\u015f ba\\\\u015far\\\\u0131l\\\\u0131\\\",\\\"Data\\\":{\\\"User\\\":{\\\"id\\\":5,\\\"name\\\":\\\"test\\\",\\\"email\\\":\\\"test@gmail.com\\\",\\\"role\\\":\\\"admin\\\",\\\"token\\\":\\\"6392c3bf1d2fe3276c989367b1614095\\\"}},\\\"Redirect\\\":null}\"', 'login', '2026-03-30 12:14:46', '2026-03-30 12:14:46'),
(155, '{\"token\":\"6392c3bf1d2fe3276c989367b1614095\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 12:14:46', '2026-03-30 12:14:46'),
(156, '{\"email\":\"test@gmail.com\",\"password\":\"123456\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Giri\\\\u015f ba\\\\u015far\\\\u0131l\\\\u0131\\\",\\\"Data\\\":{\\\"User\\\":{\\\"id\\\":5,\\\"name\\\":\\\"test\\\",\\\"email\\\":\\\"test@gmail.com\\\",\\\"role\\\":\\\"admin\\\",\\\"token\\\":\\\"3eef0464db6c1454aab827fdca09ab58\\\"}},\\\"Redirect\\\":null}\"', 'login', '2026-03-30 12:18:22', '2026-03-30 12:18:22'),
(157, '{\"token\":\"3eef0464db6c1454aab827fdca09ab58\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 12:18:22', '2026-03-30 12:18:22'),
(158, '{\"token\":\"3eef0464db6c1454aab827fdca09ab58\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 12:19:07', '2026-03-30 12:19:07'),
(159, '{\"token\":\"3eef0464db6c1454aab827fdca09ab58\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 12:19:27', '2026-03-30 12:19:27'),
(160, '{\"token\":\"3eef0464db6c1454aab827fdca09ab58\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"M\\\\u00fc\\\\u015fteriler listelendi\\\",\\\"Data\\\":{\\\"Customers\\\":[{\\\"id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country_id\\\":1,\\\"contact_person\\\":\\\"Hans M\\\\u00fcller\\\",\\\"phone\\\":null,\\\"email\\\":\\\"hans@acme.de\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":60,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Germany\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":3,\\\"company_name\\\":\\\"Alfa Italia SRL\\\",\\\"country_id\\\":3,\\\"contact_person\\\":\\\"Marco Rossi\\\",\\\"phone\\\":null,\\\"email\\\":\\\"marco@alfa.it\\\",\\\"currency\\\":\\\"EUR\\\",\\\"payment_term_days\\\":90,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"Italy\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"},{\\\"id\\\":2,\\\"company_name\\\":\\\"TradeLink LLC\\\",\\\"country_id\\\":2,\\\"contact_person\\\":\\\"John Smith\\\",\\\"phone\\\":null,\\\"email\\\":\\\"john@tradelink.com\\\",\\\"currency\\\":\\\"USD\\\",\\\"payment_term_days\\\":30,\\\"exporter_user_id\\\":2,\\\"operation_user_id\\\":3,\\\"notes\\\":null,\\\"is_active\\\":1,\\\"created_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"updated_at\\\":\\\"2026-03-27 14:56:06\\\",\\\"country_name\\\":\\\"USA\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getCustomers', '2026-03-30 12:22:02', '2026-03-30 12:22:02'),
(161, '{\"token\":\"3eef0464db6c1454aab827fdca09ab58\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 13:11:19', '2026-03-30 13:11:19'),
(162, '{\"token\":\"e1c5c03091714965933744b7664a5d39\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Dashboard verileri y\\\\u00fcklendi\\\",\\\"Data\\\":{\\\"Totals\\\":[],\\\"Distribution\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"Italy\\\",\\\"customer_count\\\":1},{\\\"country\\\":\\\"USA\\\",\\\"customer_count\\\":1}],\\\"Trend\\\":[],\\\"OverdueSummary\\\":[]},\\\"Redirect\\\":null}\"', 'getDashboard', '2026-03-30 13:58:31', '2026-03-30 13:58:31'),
(163, '{\"token\":\"e1c5c03091714965933744b7664a5d39\",\"customer_id\":\"2024-03-30\",\"country_id\":\"1\",\"amount\":\"50\",\"currency_id\":\"1\",\"due_date\":\"2024-04-15\"}', NULL, 'saveSale', '2026-03-30 13:59:11', NULL),
(164, '{\"token\":\"e1c5c03091714965933744b7664a5d39\",\"customer_id\":\"2024-03-30\",\"country_id\":\"1\",\"amount\":\"50\",\"currency_id\":\"1\",\"due_date\":\"2024-04-15\"}', NULL, 'saveSale', '2026-03-30 13:59:25', NULL),
(165, '{\"token\":\"e1c5c03091714965933744b7664a5d39\",\"customer_id\":\"1\",\"country_id\":\"1\",\"amount\":\"50\",\"currency_id\":\"1\",\"due_date\":\"2024-04-15\",\"sale_date\":\"2024-03-30\"}', NULL, 'saveSale', '2026-03-30 14:02:41', NULL),
(166, '{\"token\":\"e1c5c03091714965933744b7664a5d39\",\"customer_id\":\"1\",\"country_id\":\"1\",\"amount\":\"50\",\"currency_id\":\"1\",\"due_date\":\"2024-04-15\",\"sale_date\":\"2024-03-30\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Sat\\\\u0131\\\\u015f kaydedildi\\\",\\\"Data\\\":{\\\"Id\\\":\\\"1\\\"},\\\"Redirect\\\":null}\"', 'saveSale', '2026-03-30 14:03:20', '2026-03-30 14:03:20'),
(167, '{\"token\":\"e1c5c03091714965933744b7664a5d39\",\"type\":\"overdue\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Rapor ba\\\\u015far\\\\u0131yla olu\\\\u015fturuldu\\\",\\\"Data\\\":{\\\"Report\\\":[{\\\"sale_id\\\":1,\\\"company_name\\\":\\\"Acme GmbH\\\",\\\"country\\\":\\\"Germany\\\",\\\"sale_date\\\":\\\"2024-03-30\\\",\\\"due_date\\\":\\\"2024-04-15\\\",\\\"amount\\\":\\\"50.00\\\",\\\"currency\\\":\\\"USD\\\",\\\"overdue_days\\\":714,\\\"overdue_segment\\\":\\\"90+\\\",\\\"exporter_name\\\":\\\"Ali \\\\u0130hracat\\\\u00e7\\\\u0131\\\",\\\"operation_name\\\":\\\"Mehmet Ops\\\"}]},\\\"Redirect\\\":null}\"', 'getReport', '2026-03-30 14:25:08', '2026-03-30 14:25:08'),
(168, '{\"token\":\"e1c5c03091714965933744b7664a5d39\",\"type\":\"country_sales\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Rapor ba\\\\u015far\\\\u0131yla olu\\\\u015fturuldu\\\",\\\"Data\\\":{\\\"Report\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"currency\\\":\\\"USD\\\",\\\"sale_count\\\":1,\\\"total_amount\\\":\\\"50.00\\\"}]},\\\"Redirect\\\":null}\"', 'getReport', '2026-03-30 14:25:16', '2026-03-30 14:25:16'),
(169, '{\"token\":\"e1c5c03091714965933744b7664a5d39\",\"type\":\"monthly_trend\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Rapor ba\\\\u015far\\\\u0131yla olu\\\\u015fturuldu\\\",\\\"Data\\\":{\\\"Report\\\":[]},\\\"Redirect\\\":null}\"', 'getReport', '2026-03-30 14:25:22', '2026-03-30 14:25:22'),
(170, '{\"token\":\"e1c5c03091714965933744b7664a5d39\",\"type\":\"country_sales\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Rapor ba\\\\u015far\\\\u0131yla olu\\\\u015fturuldu\\\",\\\"Data\\\":{\\\"Report\\\":[{\\\"country\\\":\\\"Germany\\\",\\\"currency\\\":\\\"USD\\\",\\\"sale_count\\\":1,\\\"total_amount\\\":\\\"50.00\\\"}]},\\\"Redirect\\\":null}\"', 'getReport', '2026-03-30 14:31:00', '2026-03-30 14:31:00'),
(171, '{\"token\":\"e1c5c03091714965933744b7664a5d39\",\"type\":\"monthly_trend\"}', '\"{\\\"Success\\\":true,\\\"Message\\\":\\\"Rapor ba\\\\u015far\\\\u0131yla olu\\\\u015fturuldu\\\",\\\"Data\\\":{\\\"Report\\\":[{\\\"month\\\":\\\"2026-03\\\",\\\"currency\\\":\\\"USD\\\",\\\"sale_count\\\":1,\\\"total_amount\\\":\\\"50.00\\\"}]},\\\"Redirect\\\":null}\"', 'getReport', '2026-03-30 14:31:11', '2026-03-30 14:31:11');

-- --------------------------------------------------------

--
-- Tablo için tablo yapısı `users`
--

CREATE TABLE `users` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(100) NOT NULL,
  `email` varchar(150) NOT NULL,
  `password` varchar(255) NOT NULL,
  `role` enum('admin','exporter','operation','finance') NOT NULL DEFAULT 'exporter',
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` datetime NOT NULL DEFAULT current_timestamp(),
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Tablo döküm verisi `users`
--

INSERT INTO `users` (`id`, `name`, `email`, `password`, `role`, `is_active`, `created_at`, `updated_at`) VALUES
(1, 'Admin User', 'admin@company.com', '$2y$10$89.r81.TfU8cM/6vR.kX3.f5u9A1z8c2.kFv5z2v.kFv5z2v.kFv', 'admin', 1, '2026-03-24 11:47:29', '2026-03-24 11:47:29'),
(2, 'Ali İhracatçı', 'ali@company.com', '$2y$10$89.r81.TfU8cM/6vR.kX3.f5u9A1z8c2.kFv5z2v.kFv5z2v.kFv', 'exporter', 1, '2026-03-24 11:47:29', '2026-03-24 11:47:29'),
(3, 'Mehmet Ops', 'mehmet@company.com', '$2y$10$89.r81.TfU8cM/6vR.kX3.f5u9A1z8c2.kFv5z2v.kFv5z2v.kFv', 'operation', 1, '2026-03-24 11:47:29', '2026-03-24 11:47:29'),
(4, 'Ayşe Finans', 'ayse@company.com', '$2y$10$89.r81.TfU8cM/6vR.kX3.f5u9A1z8c2.kFv5z2v.kFv5z2v.kFv', 'finance', 1, '2026-03-24 11:47:29', '2026-03-24 11:47:29'),
(5, 'test', 'test@gmail.com', '$2y$10$2DpMWFv55BaAcxXBu.cjq.9vbHq2.1lztN4E.GkRp9r/SzLvbQqGu', 'admin', 1, '2026-03-26 10:12:52', '2026-03-26 10:12:52'),
(6, 'berkay', 'my@brky.net', '$2y$10$meS7oxMogMz3TuBYgAT2IOr2N5/T1OY1RW9o2uYnAryvDFUCvCDPy', 'admin', 1, '2026-03-26 13:16:49', '2026-03-26 13:16:49'),
(7, 'deneme', 'deneme@gmail.com', '$2y$10$evcPKo2jDRiohwZARkI4Dek9bnIWZ8OJ0Hb0S1K2LpfOGdcQERwHu', 'admin', 1, '2026-03-27 10:06:19', '2026-03-27 10:06:19');

-- --------------------------------------------------------

--
-- Tablo için tablo yapısı `user_token`
--

CREATE TABLE `user_token` (
  `id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `token` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Tablo döküm verisi `user_token`
--

INSERT INTO `user_token` (`id`, `user_id`, `token`) VALUES
(1, 6, 'e1c5c03091714965933744b7664a5d39'),
(2, 5, '24c89f892e24e7ac04960e321891ebeb'),
(3, 5, '7a1c635d95bb79b3d5899c43f18b0535'),
(4, 5, '09e2a019f1b0a3adce7d63c2faaeaf92'),
(5, 5, '824f232e4f58cd1cd0e6e7cbed3918fd'),
(6, 5, 'ed96450ef8e39320dba26265b6c72d8e'),
(7, 5, 'fe8ba0676fed5fa5f323caa377beab74'),
(8, 5, '72d09ad6bc375f8c200a4e14fd74b363'),
(9, 5, 'dd579d3725970968c9d77e398495739f'),
(10, 5, 'a37f1ceeae40ae475a46333c78fb5f7c'),
(11, 5, '4230aba2863faf708dbbb0deef5168f9'),
(12, 5, '78c7aca9335a646725ec238b3de439a8'),
(13, 5, '22bc9d92dc79c838cdb6d067601506af'),
(14, 5, '911a7aae8d9bcaab3c846378ccd00d47'),
(15, 5, '667962ddddd61f0face2938fb6737fda'),
(16, 5, '045ca5c856dcafff3b61ca3b8219998b'),
(17, 5, '6392c3bf1d2fe3276c989367b1614095'),
(18, 5, '3eef0464db6c1454aab827fdca09ab58');

-- --------------------------------------------------------

--
-- Görünüm yapısı durumu `v_country_open_balance`
-- (Asıl görünüm için aşağıya bakın)
--
CREATE TABLE `v_country_open_balance` (
`country` varchar(100)
,`currency` varchar(10)
,`sale_count` bigint(21)
,`total_amount` decimal(37,2)
);

-- --------------------------------------------------------

--
-- Görünüm yapısı durumu `v_customer_distribution`
-- (Asıl görünüm için aşağıya bakın)
--
CREATE TABLE `v_customer_distribution` (
`country` varchar(100)
,`customer_count` bigint(21)
);

-- --------------------------------------------------------

--
-- Görünüm yapısı durumu `v_monthly_sales_trend`
-- (Asıl görünüm için aşağıya bakın)
--
CREATE TABLE `v_monthly_sales_trend` (
`month` varchar(7)
,`currency` varchar(10)
,`sale_count` bigint(21)
,`total_amount` decimal(37,2)
);

-- --------------------------------------------------------

--
-- Görünüm yapısı durumu `v_overdue_sales`
-- (Asıl görünüm için aşağıya bakın)
--
CREATE TABLE `v_overdue_sales` (
`sale_id` int(10) unsigned
,`company_name` varchar(200)
,`country` varchar(100)
,`sale_date` date
,`due_date` date
,`amount` decimal(15,2)
,`currency` varchar(10)
,`overdue_days` int(8)
,`overdue_segment` varchar(7)
,`exporter_name` varchar(100)
,`operation_name` varchar(100)
);

-- --------------------------------------------------------

--
-- Görünüm yapısı durumu `v_sales_balance`
-- (Asıl görünüm için aşağıya bakın)
--
CREATE TABLE `v_sales_balance` (
`sale_id` int(10) unsigned
,`customer_id` int(10) unsigned
,`total_amount` decimal(15,2)
,`currency` varchar(10)
,`total_collected` decimal(37,2)
,`open_balance` decimal(38,2)
);

-- --------------------------------------------------------

--
-- Görünüm yapısı durumu `v_total_sales_summary`
-- (Asıl görünüm için aşağıya bakın)
--
CREATE TABLE `v_total_sales_summary` (
`currency` varchar(10)
,`total_sales_amount` decimal(37,2)
);

-- --------------------------------------------------------

--
-- Görünüm yapısı `v_country_open_balance`
--
DROP TABLE IF EXISTS `v_country_open_balance`;

CREATE ALGORITHM=UNDEFINED DEFINER=`kodfb`@`localhost` SQL SECURITY DEFINER VIEW `v_country_open_balance`  AS SELECT `cn`.`name` AS `country`, `cur`.`code` AS `currency`, count(`s`.`id`) AS `sale_count`, sum(`s`.`amount`) AS `total_amount` FROM ((`sales` `s` join `countries` `cn` on(`s`.`country_id` = `cn`.`id`)) join `currencies` `cur` on(`s`.`currency_id` = `cur`.`id`)) WHERE `s`.`status` in ('unpaid','partial') GROUP BY `cn`.`name`, `cur`.`code` ;

-- --------------------------------------------------------

--
-- Görünüm yapısı `v_customer_distribution`
--
DROP TABLE IF EXISTS `v_customer_distribution`;

CREATE ALGORITHM=UNDEFINED DEFINER=`kodfb`@`localhost` SQL SECURITY DEFINER VIEW `v_customer_distribution`  AS SELECT `cn`.`name` AS `country`, count(`c`.`id`) AS `customer_count` FROM (`customers` `c` join `countries` `cn` on(`c`.`country_id` = `cn`.`id`)) WHERE `c`.`is_active` = 1 GROUP BY `cn`.`name` ;

-- --------------------------------------------------------

--
-- Görünüm yapısı `v_monthly_sales_trend`
--
DROP TABLE IF EXISTS `v_monthly_sales_trend`;

CREATE ALGORITHM=UNDEFINED DEFINER=`kodfb`@`localhost` SQL SECURITY DEFINER VIEW `v_monthly_sales_trend`  AS SELECT date_format(`s`.`sale_date`,'%Y-%m') AS `month`, `cur`.`code` AS `currency`, count(`s`.`id`) AS `sale_count`, sum(`s`.`amount`) AS `total_amount` FROM (`sales` `s` join `currencies` `cur` on(`s`.`currency_id` = `cur`.`id`)) WHERE `s`.`sale_date` >= curdate() - interval 6 month GROUP BY date_format(`s`.`sale_date`,'%Y-%m'), `cur`.`code` ORDER BY date_format(`s`.`sale_date`,'%Y-%m') ASC ;

-- --------------------------------------------------------

--
-- Görünüm yapısı `v_overdue_sales`
--
DROP TABLE IF EXISTS `v_overdue_sales`;

CREATE ALGORITHM=UNDEFINED DEFINER=`kodfb`@`localhost` SQL SECURITY DEFINER VIEW `v_overdue_sales`  AS SELECT `s`.`id` AS `sale_id`, `c`.`company_name` AS `company_name`, `cn`.`name` AS `country`, `s`.`sale_date` AS `sale_date`, `s`.`due_date` AS `due_date`, `s`.`amount` AS `amount`, `cur`.`code` AS `currency`, to_days(curdate()) - to_days(`s`.`due_date`) AS `overdue_days`, CASE WHEN to_days(curdate()) - to_days(`s`.`due_date`) >= 90 THEN '90+' WHEN to_days(curdate()) - to_days(`s`.`due_date`) >= 60 THEN '60+' WHEN to_days(curdate()) - to_days(`s`.`due_date`) >= 30 THEN '30+' ELSE 'current' END AS `overdue_segment`, `u_exp`.`name` AS `exporter_name`, `u_ops`.`name` AS `operation_name` FROM (((((`sales` `s` join `customers` `c` on(`s`.`customer_id` = `c`.`id`)) join `countries` `cn` on(`c`.`country_id` = `cn`.`id`)) join `currencies` `cur` on(`s`.`currency_id` = `cur`.`id`)) left join `users` `u_exp` on(`c`.`exporter_user_id` = `u_exp`.`id`)) left join `users` `u_ops` on(`c`.`operation_user_id` = `u_ops`.`id`)) WHERE `s`.`status` in ('unpaid','partial') AND `s`.`due_date` < curdate() ;

-- --------------------------------------------------------

--
-- Görünüm yapısı `v_sales_balance`
--
DROP TABLE IF EXISTS `v_sales_balance`;

CREATE ALGORITHM=UNDEFINED DEFINER=`kodfb`@`localhost` SQL SECURITY DEFINER VIEW `v_sales_balance`  AS SELECT `s`.`id` AS `sale_id`, `s`.`customer_id` AS `customer_id`, `s`.`amount` AS `total_amount`, `cur`.`code` AS `currency`, ifnull(sum(`c`.`collected_amount`),0) AS `total_collected`, `s`.`amount`- ifnull(sum(`c`.`collected_amount`),0) AS `open_balance` FROM ((`sales` `s` join `currencies` `cur` on(`s`.`currency_id` = `cur`.`id`)) left join `collections` `c` on(`s`.`id` = `c`.`sale_id`)) GROUP BY `s`.`id`, `cur`.`code` ;

-- --------------------------------------------------------

--
-- Görünüm yapısı `v_total_sales_summary`
--
DROP TABLE IF EXISTS `v_total_sales_summary`;

CREATE ALGORITHM=UNDEFINED DEFINER=`kodfb`@`localhost` SQL SECURITY DEFINER VIEW `v_total_sales_summary`  AS SELECT `cur`.`code` AS `currency`, sum(`s`.`amount`) AS `total_sales_amount` FROM (`sales` `s` join `currencies` `cur` on(`s`.`currency_id` = `cur`.`id`)) GROUP BY `cur`.`code` ;

--
-- Dökümü yapılmış tablolar için indeksler
--

--
-- Tablo için indeksler `activity_logs`
--
ALTER TABLE `activity_logs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_user_id` (`user_id`),
  ADD KEY `idx_action` (`action`);

--
-- Tablo için indeksler `collections`
--
ALTER TABLE `collections`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_sale_id` (`sale_id`),
  ADD KEY `fk_collection_collected_by` (`collected_by`);

--
-- Tablo için indeksler `countries`
--
ALTER TABLE `countries`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `name` (`name`);

--
-- Tablo için indeksler `currencies`
--
ALTER TABLE `currencies`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `code` (`code`);

--
-- Tablo için indeksler `customers`
--
ALTER TABLE `customers`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_country` (`country_id`),
  ADD KEY `idx_exporter` (`exporter_user_id`),
  ADD KEY `idx_operation` (`operation_user_id`);

--
-- Tablo için indeksler `sales`
--
ALTER TABLE `sales`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_customer` (`customer_id`),
  ADD KEY `idx_sale_date` (`sale_date`),
  ADD KEY `idx_due_date` (`due_date`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_country` (`country_id`),
  ADD KEY `fk_sale_created_by` (`created_by`);

--
-- Tablo için indeksler `sale_files`
--
ALTER TABLE `sale_files`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_sale_id` (`sale_id`),
  ADD KEY `fk_file_uploaded_by` (`uploaded_by`);

--
-- Tablo için indeksler `ServiceLog`
--
ALTER TABLE `ServiceLog`
  ADD PRIMARY KEY (`id`);

--
-- Tablo için indeksler `users`
--
ALTER TABLE `users`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `email` (`email`);

--
-- Tablo için indeksler `user_token`
--
ALTER TABLE `user_token`
  ADD PRIMARY KEY (`id`);

--
-- Dökümü yapılmış tablolar için AUTO_INCREMENT değeri
--

--
-- Tablo için AUTO_INCREMENT değeri `activity_logs`
--
ALTER TABLE `activity_logs`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- Tablo için AUTO_INCREMENT değeri `collections`
--
ALTER TABLE `collections`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- Tablo için AUTO_INCREMENT değeri `countries`
--
ALTER TABLE `countries`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- Tablo için AUTO_INCREMENT değeri `currencies`
--
ALTER TABLE `currencies`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- Tablo için AUTO_INCREMENT değeri `customers`
--
ALTER TABLE `customers`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- Tablo için AUTO_INCREMENT değeri `sales`
--
ALTER TABLE `sales`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- Tablo için AUTO_INCREMENT değeri `sale_files`
--
ALTER TABLE `sale_files`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- Tablo için AUTO_INCREMENT değeri `ServiceLog`
--
ALTER TABLE `ServiceLog`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=172;

--
-- Tablo için AUTO_INCREMENT değeri `users`
--
ALTER TABLE `users`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- Tablo için AUTO_INCREMENT değeri `user_token`
--
ALTER TABLE `user_token`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- Dökümü yapılmış tablolar için kısıtlamalar
--

--
-- Tablo kısıtlamaları `activity_logs`
--
ALTER TABLE `activity_logs`
  ADD CONSTRAINT `fk_log_user` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL;

--
-- Tablo kısıtlamaları `collections`
--
ALTER TABLE `collections`
  ADD CONSTRAINT `fk_collection_collected_by` FOREIGN KEY (`collected_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `fk_collection_sale` FOREIGN KEY (`sale_id`) REFERENCES `sales` (`id`);

--
-- Tablo kısıtlamaları `customers`
--
ALTER TABLE `customers`
  ADD CONSTRAINT `fk_customer_country` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`),
  ADD CONSTRAINT `fk_customer_exporter` FOREIGN KEY (`exporter_user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `fk_customer_operation` FOREIGN KEY (`operation_user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL;

--
-- Tablo kısıtlamaları `sales`
--
ALTER TABLE `sales`
  ADD CONSTRAINT `fk_sale_country` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`),
  ADD CONSTRAINT `fk_sale_created_by` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `fk_sale_customer` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`);

--
-- Tablo kısıtlamaları `sale_files`
--
ALTER TABLE `sale_files`
  ADD CONSTRAINT `fk_file_sale` FOREIGN KEY (`sale_id`) REFERENCES `sales` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fk_file_uploaded_by` FOREIGN KEY (`uploaded_by`) REFERENCES `users` (`id`) ON DELETE SET NULL;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
