Ignore:
Timestamp:
Jul 11, 2010, 10:09:11 AM (14 years ago)
Author:
Sam Habiel
Message:

Updated Source Code for i18n.
Changes in DPatientLetter.cs
Changes in CGSchedLib.cs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/DAL.cs

    r848 r850  
    9494        /// ^T00030STATE^T00030ZIP^T00030HOMEPHONE^D00030OldApptDate
    9595        ///</returns>
    96         /// <remarks>Not sure if this works yet</remarks>
    9796        /// <remarks>Mirrors dsRebookAppts.PatientAppt Schema. Can merge table into schema.</remarks>
    9897        public DataTable GetRebookedAppointments(string sClinicList, DateTime BeginDate, DateTime EndDate)
     
    103102            return RPMSDataTable(cmd, "");
    104103        }
     104
     105        public DataTable GetRebookedAppointments(string sApptList)
     106        {
     107            string cmd = String.Format("BSDX REBOOK LIST^{0}", sApptList);
     108            return RPMSDataTable(cmd, "");
     109        }
     110
     111        public DataTable GetCancelledAppointments(string sClinicList, DateTime BeginDate, DateTime EndDate)
     112        {
     113            string sBegin = FMDateTime.Create(BeginDate).DateOnly.FMDateString;
     114            string sEnd = FMDateTime.Create(EndDate).DateOnly.FMDateString;
     115            string cmd = String.Format("BSDX CANCEL CLINIC LIST^{0}^{1}^{2}", sClinicList, sBegin, sEnd);
     116            return RPMSDataTable(cmd, "");
     117        }
     118
    105119
    106120        /// <summary>
Note: See TracChangeset for help on using the changeset viewer.