feat(helpdesk): align module with core list/drawer standards

- add helpdesk module pages, services, settings and tests

- standardize debtor list on drawer/grid contracts and robust filter drawer behavior

- add helpdesk aside panel navigation and settings visibility provider

- switch primary list slug to helpdesk/debitor and remove helpdesk/search compatibility

- include required core contract updates for list contracts and detail/drawer integration
This commit is contained in:
2026-04-02 17:48:27 +02:00
parent 5d07236758
commit a0d7670dd7
55 changed files with 5977 additions and 11 deletions

82
bin/helpdesk-diagnose.php Normal file
View File

@@ -0,0 +1,82 @@
#!/usr/bin/env php
<?php
/**
* Quick CLI diagnostic for helpdesk BC OData connectivity.
*
* Usage: php bin/helpdesk-diagnose.php <customer_no>
* Example: php bin/helpdesk-diagnose.php 10254
*/
declare(strict_types=1);
chdir(__DIR__ . '/..');
require 'vendor/autoload.php';
require 'config/config.php';
require 'lib/Support/helpers.php';
$container = require 'lib/App/registerContainer.php';
setAppContainer($container);
use MintyPHP\Module\Helpdesk\Service\BcODataGateway;
use MintyPHP\Module\Helpdesk\Service\HelpdeskSettingsGateway;
$customerNo = trim($argv[1] ?? '');
if ($customerNo === '') {
echo "Usage: php bin/helpdesk-diagnose.php <customer_no>\n";
exit(1);
}
$settings = app(HelpdeskSettingsGateway::class);
echo "=== Helpdesk OData Diagnosis ===\n\n";
echo "Base URL: " . $settings->getODataBaseUrl() . "\n";
echo "Company: " . $settings->getCompanyName() . "\n";
echo "Auth mode: " . $settings->getAuthMode() . "\n";
echo "Configured: " . ($settings->isConfigured() ? 'YES' : 'NO') . "\n";
echo "\n";
echo "Entity URLs:\n";
echo " Customer: " . $settings->buildEntityUrl(BcODataGateway::ENTITY_CUSTOMER) . "\n";
echo " Contact: " . $settings->buildEntityUrl(BcODataGateway::ENTITY_CONTACT) . "\n";
echo " Tickets: " . $settings->buildEntityUrl(BcODataGateway::ENTITY_TICKETS) . "\n";
echo "\n";
if (!$settings->isConfigured()) {
echo "ERROR: Configuration incomplete. Cannot run diagnosis.\n";
exit(1);
}
$gateway = app(BcODataGateway::class);
echo "Running diagnosis for customer: {$customerNo}\n";
echo str_repeat('─', 60) . "\n\n";
$diagnosis = $gateway->diagnoseCustomer($customerNo);
foreach ($diagnosis as $key => $result) {
echo "── {$key} ──\n";
if (is_string($result)) {
echo " Error: {$result}\n\n";
continue;
}
echo " URL: " . ($result['url'] ?? '?') . "\n";
echo " HTTP: " . ($result['http_code'] ?? '?') . "\n";
echo " Count: " . ($result['count'] ?? 0) . "\n";
if (!empty($result['error'])) {
echo " Error: " . $result['error'] . "\n";
}
if (!empty($result['fields'])) {
echo " Fields: " . implode(', ', $result['fields']) . "\n";
}
if (!empty($result['first_record'])) {
echo " 1st record:\n";
foreach ($result['first_record'] as $field => $value) {
$display = is_string($value) ? $value : json_encode($value, JSON_UNESCAPED_UNICODE);
echo " {$field}: {$display}\n";
}
}
echo "\n";
}

View File

@@ -0,0 +1,300 @@
#!/usr/bin/env php
<?php
/**
* Explore BC OData entities — find ticket logs, communication, and contracts.
*
* Usage: php bin/helpdesk-explore-entities.php [ticket_no] [customer_name]
* Example: php bin/helpdesk-explore-entities.php T-00123 "icoreon GmbH"
*
* Without arguments: lists all available entity sets from $metadata.
* With ticket_no: probes ticket log/communication entities for that ticket.
* With customer_name: probes contract entities for that customer.
*/
declare(strict_types=1);
chdir(__DIR__ . '/..');
require 'vendor/autoload.php';
require 'config/config.php';
require 'lib/Support/helpers.php';
$container = require 'lib/App/registerContainer.php';
setAppContainer($container);
use MintyPHP\Module\Helpdesk\Service\HelpdeskSettingsGateway;
$ticketNo = trim($argv[1] ?? '');
$customerName = trim($argv[2] ?? '');
$settings = app(HelpdeskSettingsGateway::class);
if (!$settings->isConfigured()) {
echo "ERROR: BC connection not configured.\n";
exit(1);
}
$baseUrl = $settings->getODataBaseUrl();
$companyUrl = $baseUrl . "/Company('" . rawurlencode($settings->getCompanyName()) . "')";
echo "=== BC OData Entity Explorer ===\n\n";
echo "Base URL: {$baseUrl}\n";
echo "Company: {$settings->getCompanyName()}\n\n";
// ── Helper: raw cURL request ──
function bcRequest(string $url, HelpdeskSettingsGateway $settings): array
{
$ch = curl_init();
if ($ch === false) return ['error' => 'curl_init failed'];
curl_setopt_array($ch, [
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CONNECTTIMEOUT => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTPHEADER => ['Accept: application/json', 'OData-Version: 4.0'],
CURLOPT_SSL_VERIFYPEER => true,
CURLOPT_SSL_VERIFYHOST => 2,
]);
// Apply auth
if ($settings->getAuthMode() === 'basic') {
curl_setopt($ch, CURLOPT_USERPWD, ($settings->getBasicUser() ?? '') . ':' . ($settings->getBasicPassword() ?? ''));
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
}
$body = curl_exec($ch);
$httpCode = (int) curl_getinfo($ch, CURLINFO_HTTP_CODE);
$curlError = curl_error($ch);
unset($ch);
if (!is_string($body)) {
return ['http_code' => $httpCode, 'error' => $curlError ?: 'Empty response'];
}
if ($httpCode < 200 || $httpCode >= 300) {
return ['http_code' => $httpCode, 'error' => mb_substr($body, 0, 300)];
}
$decoded = json_decode($body, true);
if (!is_array($decoded)) {
return ['http_code' => $httpCode, 'error' => 'Invalid JSON'];
}
return ['http_code' => $httpCode, 'data' => $decoded];
}
function printResult(string $label, string $url, array $result): void
{
echo "── {$label} ──\n";
echo " URL: {$url}\n";
echo " HTTP: " . ($result['http_code'] ?? '?') . "\n";
if (!empty($result['error'])) {
echo " Error: " . $result['error'] . "\n\n";
return;
}
$data = $result['data'] ?? [];
$values = $data['value'] ?? [];
if (!is_array($values)) {
echo " Response has no 'value' array.\n\n";
return;
}
echo " Count: " . count($values) . "\n";
if (count($values) > 0) {
$first = $values[0];
echo " Fields: " . implode(', ', array_keys($first)) . "\n";
echo " 1st record:\n";
foreach ($first as $field => $value) {
$display = is_string($value) ? $value : json_encode($value, JSON_UNESCAPED_UNICODE);
if (strlen($display) > 120) $display = mb_substr($display, 0, 117) . '...';
echo " {$field}: {$display}\n";
}
}
echo "\n";
}
// ────────────────────────────────────────────
// Step 1: Fetch $metadata to find all entities
// ────────────────────────────────────────────
echo str_repeat('═', 60) . "\n";
echo "Step 1: Scanning all entity sets from \$metadata...\n";
echo str_repeat('═', 60) . "\n\n";
$metadataUrl = $baseUrl . '/$metadata';
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => $metadataUrl,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CONNECTTIMEOUT => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTPHEADER => ['Accept: application/xml'],
CURLOPT_SSL_VERIFYPEER => true,
CURLOPT_SSL_VERIFYHOST => 2,
]);
if ($settings->getAuthMode() === 'basic') {
curl_setopt($ch, CURLOPT_USERPWD, ($settings->getBasicUser() ?? '') . ':' . ($settings->getBasicPassword() ?? ''));
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
}
$metadataBody = curl_exec($ch);
$metadataCode = (int) curl_getinfo($ch, CURLINFO_HTTP_CODE);
unset($ch);
if (!is_string($metadataBody) || $metadataCode !== 200) {
echo "Could not fetch \$metadata (HTTP {$metadataCode})\n\n";
} else {
// Parse XML for EntitySet names
preg_match_all('/EntitySet\s+Name="([^"]+)"/', $metadataBody, $matches);
$allEntities = $matches[1] ?? [];
// Filter for interesting entities
$ticketLogEntities = array_filter($allEntities, fn($e) =>
stripos($e, 'ticket') !== false ||
stripos($e, 'log') !== false ||
stripos($e, 'communication') !== false ||
stripos($e, 'chat') !== false ||
stripos($e, 'message') !== false ||
stripos($e, 'comment') !== false ||
stripos($e, 'note') !== false ||
stripos($e, 'task') !== false ||
stripos($e, 'time') !== false
);
$contractEntities = array_filter($allEntities, fn($e) =>
stripos($e, 'contract') !== false ||
stripos($e, 'vertrag') !== false ||
stripos($e, 'agreement') !== false ||
stripos($e, 'service') !== false ||
stripos($e, 'subscription') !== false ||
stripos($e, 'wartung') !== false ||
stripos($e, 'support') !== false
);
echo "Total entities found: " . count($allEntities) . "\n\n";
echo "🎫 Ticket/Log/Communication related:\n";
if (empty($ticketLogEntities)) {
echo " (none found)\n";
} else {
foreach ($ticketLogEntities as $e) {
echo " - {$e}\n";
}
}
echo "\n📋 Contract/Service related:\n";
if (empty($contractEntities)) {
echo " (none found)\n";
} else {
foreach ($contractEntities as $e) {
echo " - {$e}\n";
}
}
echo "\n";
}
// ────────────────────────────────────────────
// Step 2: Probe ticket log entities
// ────────────────────────────────────────────
echo str_repeat('═', 60) . "\n";
echo "Step 2: Probing ticket log/communication entities...\n";
echo str_repeat('═', 60) . "\n\n";
$ticketLogCandidates = [
'PBI_FP_TicketLog',
'PBI_LV_SupportTicketLog',
'TicketsICI_Support_Time_Log_Subpage',
'TicketsICI_Support_Task_Subpage',
];
// Also add any entities from metadata scan
if (!empty($ticketLogEntities)) {
foreach ($ticketLogEntities as $e) {
if (!in_array($e, $ticketLogCandidates, true)) {
$ticketLogCandidates[] = $e;
}
}
}
foreach ($ticketLogCandidates as $entity) {
$url = $companyUrl . '/' . $entity . '?$top=3';
$result = bcRequest($url, $settings);
printResult($entity . ' (top 3)', $url, $result);
// If we got results and have a ticket number, try filtering
if ($ticketNo !== '' && !empty($result['data']['value'])) {
$fields = array_keys($result['data']['value'][0]);
// Try common filter fields
$filterFields = array_intersect($fields, [
'Ticket_No', 'No', 'Ticket_No_', 'TicketNo', 'Ticket_Number',
'Support_Ticket_No', 'Support_Ticket_No_',
'Document_No', 'Document_No_',
]);
foreach ($filterFields as $filterField) {
$filterUrl = $companyUrl . '/' . $entity
. '?$filter=' . rawurlencode("{$filterField} eq '{$ticketNo}'")
. '&$top=10';
$filterResult = bcRequest($filterUrl, $settings);
printResult("{$entity} filtered by {$filterField}='{$ticketNo}'", $filterUrl, $filterResult);
}
}
}
// ────────────────────────────────────────────
// Step 3: Probe contract entities
// ────────────────────────────────────────────
echo str_repeat('═', 60) . "\n";
echo "Step 3: Probing contract/service entities...\n";
echo str_repeat('═', 60) . "\n\n";
$contractCandidates = [
'Service_Contract',
'Service_Contracts',
'ServiceContract',
'Service_Contract_List',
'Service_Contract_Card',
'Customer_Contract',
'PBI_FP_ServiceContract',
];
// Also add any entities from metadata scan
if (!empty($contractEntities)) {
foreach ($contractEntities as $e) {
if (!in_array($e, $contractCandidates, true)) {
$contractCandidates[] = $e;
}
}
}
foreach ($contractCandidates as $entity) {
$url = $companyUrl . '/' . $entity . '?$top=3';
$result = bcRequest($url, $settings);
printResult($entity . ' (top 3)', $url, $result);
// If we got results and have a customer name, try filtering
if ($customerName !== '' && !empty($result['data']['value'])) {
$fields = array_keys($result['data']['value'][0]);
$filterFields = array_intersect($fields, [
'Customer_No', 'Customer_No_', 'CustomerNo',
'Customer_Name', 'Name', 'Bill_to_Customer_No_',
'Company_Name', 'Company_Contact_Name',
]);
$escapedName = str_replace("'", "''", $customerName);
foreach ($filterFields as $filterField) {
$filterUrl = $companyUrl . '/' . $entity
. '?$filter=' . rawurlencode("{$filterField} eq '{$escapedName}'")
. '&$top=10';
$filterResult = bcRequest($filterUrl, $settings);
printResult("{$entity} filtered by {$filterField}='{$customerName}'", $filterUrl, $filterResult);
}
}
}
echo str_repeat('═', 60) . "\n";
echo "Done.\n";