fix(helpdesk): remove title line in team widgets, fix table columns and debitor links

- Hide section-title ::after line inside team widgets
- Fixed table-layout with consistent column widths (12/25/43/20%)
- Debitor link uses customer_no (route param), displays customer_name
- Add Customer_No to OData select for debitor link resolution
- Add customer_no to open_ticket_details backend structure

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-05 19:31:58 +02:00
parent 98f703b231
commit 98ba2c024d
4 changed files with 23 additions and 6 deletions

View File

@@ -81,11 +81,11 @@ if (container) {
}
tr.appendChild(noCell);
// Customer name as link to debitor
// Customer name as link to debitor (link uses customer_no)
const customerCell = h('td');
if (debitorBaseUrl && t.customer_name) {
const a = h('a', '', t.customer_name);
a.href = debitorBaseUrl + encodeURIComponent(t.customer_name);
if (debitorBaseUrl && t.customer_no) {
const a = h('a', '', t.customer_name || t.customer_no);
a.href = debitorBaseUrl + encodeURIComponent(t.customer_no);
customerCell.appendChild(a);
} else {
customerCell.textContent = t.customer_name || '—';