Skip to content

Commit e00e321

Browse files
author
Vikas Agarwal
committed
Fetching the connect project id as well in the result
1 parent 8f190e9 commit e00e321

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/routes/projectReports/LookRun.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ LookApi.prototype.findProjectRegSubmissions = function (directProjectId) {
4141
LookApi.prototype.findProjectBudget = function (connectProjectId, isManager, isAdmin) {
4242
const queryId = config.lookerConfig.QUERIES.BUDGET;
4343

44-
const fields = ['project_stream.total_invoiced_amount', 'project_stream.remaining_invoiced_budget'];
44+
const fields = [
45+
'project_stream.tc_connect_project_id',
46+
'project_stream.total_invoiced_amount',
47+
'project_stream.remaining_invoiced_budget'
48+
];
4549

4650
// Manager roles have access to more fields.
4751
if (isManager || isAdmin) {

0 commit comments

Comments
 (0)