feat(helpdesk): add Description and Cust_Name from LV entity to team table
PBI_LV_Tickets exposes Description and Cust_Name (not Company_Contact_Name which is FP-only). Add both to select. Table now shows 5 columns: Ticket (link) | Customer name (link) | Description (ellipsis) | Category | Last activity. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -92,6 +92,9 @@ if (container) {
|
||||
}
|
||||
tr.appendChild(customerCell);
|
||||
|
||||
// Description (ellipsis)
|
||||
tr.appendChild(h('td', 'helpdesk-team-ticket-desc', t.description || '—'));
|
||||
|
||||
// Category
|
||||
tr.appendChild(h('td', '', t.category || '—'));
|
||||
|
||||
@@ -129,6 +132,7 @@ if (container) {
|
||||
const headRow = h('tr');
|
||||
headRow.appendChild(h('th', '', container.dataset.labelTicket || 'Ticket'));
|
||||
headRow.appendChild(h('th', '', container.dataset.labelCustomer || 'Customer'));
|
||||
headRow.appendChild(h('th', '', container.dataset.labelDescription || 'Description'));
|
||||
headRow.appendChild(h('th', '', container.dataset.labelCategory || 'Category'));
|
||||
headRow.appendChild(h('th', '', container.dataset.labelLastActivity || 'Last activity'));
|
||||
thead.appendChild(headRow);
|
||||
|
||||
Reference in New Issue
Block a user