-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from kwheelan/42-new-detail-sheet
Adjust app to fit new detail sheet
- Loading branch information
Showing
21 changed files
with
144 additions
and
90 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Set to equal current fiscal year | ||
export var FISCAL_YEAR = '26'; | ||
|
||
// object categories (from obj part of account string) | ||
export const OBJ_CATEGORIES = { | ||
list : [ | ||
// 'Salaries & Wages', | ||
// 'Employee Benefits', | ||
'Professional & Contractual Services', | ||
'Operating Supplies', | ||
'Operating Services', | ||
'Equipment Acquisition', | ||
'Capital Outlays', | ||
'Fixed Charges', | ||
'Other Expenses' | ||
] | ||
} | ||
|
||
// from the drop-down menu | ||
export const EMPLOYEE_TYPES = [ | ||
'Regular', | ||
'TASS', | ||
'Seasonal', | ||
'Uniform Fire', | ||
'Uniform Police', | ||
'Appointed', | ||
'Elected', | ||
'Long Term Disability' | ||
] | ||
|
||
export const OT_OBJECTS = [ | ||
'601300 - Salar-Overtime-Gen City', | ||
'601305 - Salaries-Overtime-Police Unif', | ||
'601310 - Salaries-Overtime-Fire Unif', | ||
'602300 - Wages-Overtime-Gen City' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,19 @@ | ||
import { FISCAL_YEAR } from "./budget_constants"; | ||
|
||
// sheets to expect on detail sheet | ||
export const SHEETS = { | ||
'FTE, Salary-Wage, & Benefits' : 'personnel' , | ||
'Overtime & Other Personnel' : 'overtime', | ||
'Non-Personnel Operating' : 'nonpersonnel', | ||
'Non-Personnel' : 'nonpersonnel', | ||
'Revenue' : 'revenue' | ||
} | ||
|
||
export const OBJ_CATEGORIES = { | ||
list : [ | ||
// 'Salaries & Wages', | ||
// 'Employee Benefits', | ||
'Professional & Contractual Services', | ||
'Operating Supplies', | ||
'Operating Services', | ||
'Equipment Acquisition', | ||
'Capital Outlays', | ||
'Fixed Charges', | ||
'Other Expenses' | ||
] | ||
} | ||
// where to find the general fund target | ||
export const TARGET_CELL_ADDRESS = 'C14' | ||
|
||
export const TOTAL_COLUMNS = { | ||
'personnel': 'Total Sal/Wag & Ben Request', | ||
'overtime':`FY${FISCAL_YEAR} Total OT/SP/Hol + FICA Request`, | ||
'nonpersonnel': `FY${FISCAL_YEAR} Departmental Request Total`, | ||
'revenue': `FY${FISCAL_YEAR} Departmental Estimate` | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export * from './app_constants'; | ||
export * from './budget_constants'; | ||
export * from './excel_constants'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
|
||
import CurrentFund from "./current_fund"; | ||
|
||
export const AccountString = { | ||
getNumber: function(input) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.