Skip to content

Commit

Permalink
fix: correct summary rows
Browse files Browse the repository at this point in the history
  • Loading branch information
rafasdc committed Dec 9, 2024
1 parent 386fcaa commit 32dfc96
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/backend/lib/excel_import/community_progress_report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ query getCcbcNumber($_rowId: Int!) {

// For the summary table
const TOTALS_COLUMN = 'G';
const COMMUNITIES_IN_PLANNING_ROW = 27;
const COMMUNITIES_IN_CONSTRUCTION_ROW = 28;
const COMMUNITIES_OPERATIONAL_ROW = 29;
const OVERAL_PROJECT_STAGE_ROW = 30;
const TOTAL_NUMBER_OF_COMMUNITIES_ROW = 31;
const COMMUNITIES_IN_PLANNING_ROW = 26;
const COMMUNITIES_IN_CONSTRUCTION_ROW = 27;
const COMMUNITIES_OPERATIONAL_ROW = 28;
const OVERAL_PROJECT_STAGE_ROW = 29;
const TOTAL_NUMBER_OF_COMMUNITIES_ROW = 30;

// For the community detail table
const COMMUNITY_NAME_COLUMN = 'B';
Expand Down

0 comments on commit 32dfc96

Please sign in to comment.