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:
@@ -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 || '—';
|
||||
|
||||
Reference in New Issue
Block a user