- continue working on FA
- got Project Viewer panel to display the financial data correctly – only the years the Req Data falls in
- fixed new project saving error
- tested freshly built VSS server and client
- null exception for _selectedSQLObject – fixed
Author Archives: gvr4wd
Dong Shin 05.03.2013
- deployed new FA – few problems..
creating new Project results in SQL errorfixed- INSERT INTO projects …. – Column count doesn’t match!
Sub Budget Center Name & Number not working correctlyfixedUn-Funded Amount = Req Amount – Funded (calculated, non-editable)– done- removed unfunded_amount from budget_centers table
Req Type should be non-addable in the comboboxdone- MIPR, REQ, EA, RTA, and EAO
- Upload Data should delete row 1 and last two lines from the excel spreadsheet
- built VSS and associated libs for more testing as we got weird errors on-site this morning
Dong Shin 05.02.2013
- continue working on FA
- obligations/outlays data updates with fiscal_year from budget_centers
- getting View Financial Data to work with new database
- updated Project Editor to keep appropriation in budget_centers table
- updated Budget Information datagrid with new Req Data structure
- burned a CD for deployment tomorrow
Dong Shin 05.01.2013
- continue working on FA
- Req Info datagrid preferences saved
- created a base class – FilterableDG that manages column preferences and saves info
- added column filter preferences to Project Mgmt panel
- ID column not in filter – used as tree navigation for Parent/Chile projects
- removed the references to budget_centers table when saving projects
- reworking Budget Info to get correct appropriation length – done
- noticed that sub center name and number were added to the budget_center table, not projects table – fixed
ALTER TABLE `projects` ADD `sub_center_name` VARCHAR( 255 ) NULL ,
ADD `sub_center_number` VARCHAR( 255 ) NULL
- Req Info datagrid preferences saved
Dong Shin 04.30.2013
- continue working on FA
- fixed query errors caused by deleting budget_amounts table
- Contracts DG columns preferences saved to user preferences and loads on login
Dong Shin 04.29.2013
- debugging Tomcat webapps via Eclipse
- continue working on FA
- cleaning up and consolidating database
- DELETE FROM budget_centers WHERE project_id NOT IN (SELECT uid FROM projects)
- DELETE FROM budget_amounts WHERE budget_center_id NOT IN (SELECT uid FROM budget_centers)
- update budget_centers table with budget_amounts data
- UPDATE budget_centers c1
INNER JOIN (
SELECT a.budget_center_id as budget_center_id, begin_year + a.year – 1 AS fiscal_year_new, a.amount AS total_budget_new
FROM projects p, budget_centers c, budget_amounts a
WHERE a.amount <> 0
AND p.uid = c.project_id
AND c.uid = a.budget_center_id) T ON c1.uid = t.budget_center_id
SET fiscal_year = t.fiscal_year_new, total_budget = total_budget_new
- UPDATE budget_centers c1
- DROP TABLE budget_amounts
-
DELETE o.* FROM `obligations_outlays` o INNER JOIN budget_centers c
ON o.funding_id = c.uid AND o.year <> c.fiscal_year;
- cleaning up and consolidating database
Dong Shin 04.26.2013
- continue working on FA
- changed SOW to MIPR Description
- reworked Totals Data Grid to calculate totals correctly using ArrayCollection chagen event handler
- working on saving column preferences
- added new column to users table
ALTER TABLE `users` ADD `column_preferences` TEXT NULL
- added new column to users table
Dong Shin 04.24.2013
- deployed new FA – few bugs
- no columns showing in Filter Columns windows – fixed
- uploaded info is too long – set as the tooltip on the Upload Data button
- color the Upload Data button, not the text – done
Dong Shin 04.23.2013
- continue working on FA
- added Totals to Total Project Budget
- tried to use built-in GroupingCollection, but not very suitable
- burned a CD for deployment tomorrow
Dong Shin 04.22.2013
- continue working on FA
- added Funded Amount and Un-Funded Amount to Project and Sub-Project totals
- removed totals for project and sub projects
- working on CurrencyTextInput to be used for Req data – done
- added more columns to budget_centers table
ALTER TABLE `budget_centers` ADD `fiscal_year` DECIMAL( 4 ) NULL ,
ADD `unfunded_amount` DECIMAL( 10, 2 ) NULL
- Totals from Req Data are calculated and updated dynamically
Dong Shin 04.19.2013
- VizTool review
- changes requested – 20130419111540320, added to the requirements page
- working down the list…
Change Total Budget to Requisition AmountChange Funded Budget to Funded AmountRemove FY columnsAdd Fiscal Year column before Req DescriptionAdd Un-Funded Amount column before Date SubmittedChange Update Budget Center Data to Update Requisition DataChange Date Submitted to Date Submitted to ServicesChange Date Received to Date Received from ServicesChange Total Budget to Requisition AmountChange Funded Budget to Funded AmountAdd Un-Funded Amount above Date Submitted- added Fiscal Year to AddBudgetCenterWindow
Dong Shin 04.17.2013
- continue working on FA
- added column filtering to Budget Center (Funding) datagrid
- set rowCount to eliminate the empty rows
- rearranged buttons and Totals (Allocated/Budgeted)
- added VersionTracker to all projects
- burned a CD for tomorrow.
Dong Shin 04.16.2013
- continue working on FA
- fixed various issues saving new project
- trouble-shooting a PPM Bug – fixed
- incorrect allocated amount for the sub projects
Dong Shin 04.15.2013
- continue working on FA
- working on saving column selection preferences to database
- reworked comment for Budget Info – View/Edit window
Dong Shin 04.12.2013
- deployed the new PPM, PA, and FA
- problem with VersionTracker not creating database
- max_allowed_packet option need to back up the visibility_scripting database
- Lenny’s contracts data ingested successfully – ~488 rows
- continue working on FA
- added comments to Budget Center table
ALTER TABLE `budget_centers` ADD `comments` TEXT NULL
- removed Funding Type, Org, Location from Budget Center
- added comments to Budget Center table

You must be logged in to post a comment.