You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(PayablesAgent): Add inbound e-documents count and link to setup page
Show the number of inbound e-documents processed by the agent in the
Cost section of the configuration dialog, with a drilldown link to the
Inbound E-Documents page filtered to agent-created documents.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
/// Retrieves the agent record if configured in the database, and ensures that the Payables Agent setup record is updated with the correct user security id.
ToolTip = 'Specifies the total number of Copilot credits consumed by the Payables Agent.', Comment = 'Payables Agent is a term, and should not be translated.';
156
156
}
157
+
field(AgentTasks; AgentTasksText)
158
+
{
159
+
ShowCaption = false;
160
+
Editable = false;
161
+
StyleExpr = true;
162
+
Style = StandardAccent;
163
+
ToolTip = 'Specifies the number of tasks completed by the Payables Agent. Choose this field to open the agent task list.', Comment = 'Payables Agent is a term, and should not be translated.';
164
+
165
+
trigger OnDrillDown()
166
+
begin
167
+
DrillDownAgentTasks();
168
+
end;
169
+
}
170
+
field(InboundEDocuments; InboundEDocumentsText)
171
+
{
172
+
ShowCaption = false;
173
+
Editable = false;
174
+
StyleExpr = true;
175
+
Style = StandardAccent;
176
+
ToolTip = 'Specifies the number of inbound e-documents processed by the Payables Agent. Choose this field to open the list of inbound e-documents.', Comment = 'Payables Agent is a term, and should not be translated.';
0 commit comments