We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f190e9 commit e00e321Copy full SHA for e00e321
src/routes/projectReports/LookRun.js
@@ -41,7 +41,11 @@ LookApi.prototype.findProjectRegSubmissions = function (directProjectId) {
41
LookApi.prototype.findProjectBudget = function (connectProjectId, isManager, isAdmin) {
42
const queryId = config.lookerConfig.QUERIES.BUDGET;
43
44
- const fields = ['project_stream.total_invoiced_amount', 'project_stream.remaining_invoiced_budget'];
+ const fields = [
45
+ 'project_stream.tc_connect_project_id',
46
+ 'project_stream.total_invoiced_amount',
47
+ 'project_stream.remaining_invoiced_budget'
48
+ ];
49
50
// Manager roles have access to more fields.
51
if (isManager || isAdmin) {
0 commit comments