RefreshSchedule() now used in ForceRefresh rather than Force Document. This one does directly what's needed.

New exes.
This commit is contained in:
sam 2011-03-30 12:28:31 +00:00
parent 6de4b0037f
commit 7b38b8c6dd
6 changed files with 2 additions and 2 deletions

View File

@ -405,7 +405,7 @@ namespace IndianHealthService.ClinicalScheduling
/// Refreshes Availablility and Schedules from RPMS.
/// </summary>
/// <returns>Success or Failure. Should be always Success.</returns>
private bool RefreshSchedule()
public bool RefreshSchedule()
{
this.RefreshAvailabilitySchedule();
this.RefreshAppointments();

View File

@ -3501,7 +3501,7 @@ namespace IndianHealthService.ClinicalScheduling
if (this.Document.m_sResourcesArray.Count == 0) return;
this.Cursor = Cursors.WaitCursor;
LoadSplash();
this.Document.RefreshDocument();
this.Document.RefreshSchedule();
this.UpdateArrays();
StopSplash();
this.Cursor = Cursors.Default;