Category Archives: Dong Shin

Dong Shin 08.25.2010

  • deployed new EdgeUtils to FGMDEV Repo
  • tried to check in EdgeUtils changes, got “Authorization failed” error
    • changed passwd, authz, svnserv.conf to use credentials (/repo/Visibility directory)
    • checked in changed files for EdgeUtils
  • packed up PPM for review
  • commas added to Create/Modify Project – Total Budget and FY amounts
  • found that Project Locking doesn’t work properly when two users are connected.
    • added result check on locking
    • modified lock query to return login_id
  • changed the Project Viewer Panel’s border to yellow for locked projects

Dong Shin 08.24.2010

  • checked out and re-built projects from new site (fgmdev.com)
    • EdgeUtils
    • ProjPortfolioMgrClient
    • ProjPortfolioMgrServer – needed to copy pom.xml from old and redeploy to tomcat server
    • everything looks fine!
  • added lockTimeout to EdgeUtils’ ConfigManager
  • change PPM to use ConfigManager.lockTimeout

Dong Shin 08.20.2010

  • continue working on Project Lock management
  • changed DataGrid in SelectProjectWindow to AdvancedDataGrid
    • support styling
    • added row and column styling (grey out LOCKED,  BLUE for editable)
    • modified DatabaseAdvDataGrid to support Column Style Function
      • styleColumnName = <name>, styleColumnValue=<value to compare>
    • com.edgeti.GenericQueryWidget.widget.CheckBoxHeaderRenderer
  • refined Project Select query so that own id = lock_id returns EDITABLE
  • Financial Data DataGrid sets editable flag based on Project Lock
  • Dark Yellow border (0xFFCC00) added to Financial Data DataGrid for LOCKED projects

Dong Shin 08.19.2010

  • moved maximizePanel() to last step of the data retrieval on Project Viewer, behaves lot better
  • continue working on Project Lock management
    • created com.fgm.ProjectPortfolio.project.Project for project management
    • add lock_time to table, update on Project Select
    • expired lock set to 24 hours
    • added Unlock Proj button to Project Select Window (only visible to Administrators)
  • Excel Ingestor chokes on ‘-‘, need to look at later (low pri)

Dong Shin 08.18.2010

  • Started on Project Lock management
  • packed up PPM for review
    • found commas causing lot of errors everywhere! fixed most of them
    • added total budget amount on each Financial Data title
    • FMP not saved when all the fields are empty

Dong Shin 08.17.2010

  • Invoice Viewer – done
    • editing capability is there, but not needed?
  • weird behavior found when editing financial data – emptying out existing data cannot be saved!
    • added various checks for empty string, space, etc.
  • Rearranged FMP viewer data grid

Dong Shin 08.16.2010

  • FMP (Financial Mitigation Plan) Viewer done
    • added Month and FY info
  • Working on Invoice Viewer
  • added color (yellow) for Financial Data less than goals
  • ignore Planned data for FMP
  • added legends to charts
  • fixed crash problem on charts (caused by NULL on datagrid, set to 0)
  • corrected tooltips on charts
  • added comma (thousands separator) to Financial Data, more to come….

Dong Shin 08.13.2010

  • added View FMP (Financial Mitigation Plan) on ContractsCanvas for viewing FMPs
  • created FMP Selection Window
  • working on FMP Viewer
  • changed the chart labels to Year 1, Year 2, etc
  • added type field to financial_mitigation_plans table to distinguish Obligation or Outlay

Dong Shin 08.12.2010

  • hit some performance issues with updating the summary data on Financial Data Edit
    • created FinancialDataChangeEvent to fire on data edit
    • Summary Data handles update of the cell and the chart instead of updating entire data on FinancialDataChangeEvent
  • Saving data on Financial Data Edit was not updating the correct data (still has old data in it) – forced the data update on Edit Complete before saving
  • packing up PPM for review
  • Some odd behavior found on Summary Data. It tries to add summary, when it shouldn’t – investigating.

Dong Shin 08.11.2010

  • charts updated on Financial Data Edit via FINANCIAL_DATA_READY event
  • downloaded and installed the latest Flash Player (10.1.82.76)
  • added Invoice Window for PM Actuals Data
  • added financial_mitigation_plans table to database
  • added Financial Mitigation Plan Window for missed goals data
  • Summary Data calculation and charting added

Dong Shin 08.10.2010

  • working on Summary Data calculation
  • added % values to obligations and outlays
  • itemEditor and itemRenderer added to Financial Data DataGrid
  • save Data works!
    • if  any changed, asks for saving on Project Viewer Panel close
    • each Financial Data DataGrid has its own save – may not be efficient
  • % calculated on itemEditPostEnd – update % values

Dong Shin 08.09.2010

  • Financial Data retrieval works….
  • changed Project Funding to fix incorrect updates for multiple fundings
  • Goals and Calculated Values added to Financial Data Panel
  • added Summary Data Panel

Dong Shin 08.06.2010

  • spent all morning putting together the new Fianancial Data components for Progress Bar updates…
  • eliminate multiple queries for retrieving Budget Center information
    • SELECT SUM(case WHEN year=1 then amount else 0 end) as year1, SUM(case WHEN year=2 then amount else 0 end) as year2, SUM(case WHEN year=3 then amount else 0 end) as year3, b.* FROM budget_centers b, budget_amounts ba, appropriations a WHERE b.uid = ba.budget_center_id and project_id =1 AND a.type = b.appropriation group by b.uid
    • cannot use this because the dynamic nature of FYAmounts!!!
  • working on retrieval of Financial Data