Ignore:
Timestamp:
May 16, 2011, 7:31:39 AM (13 years ago)
Author:
Sam Habiel
Message:

CGView:

  1. Check to see if Radiology Appointment is cancellable. Check made when cancelling radiology appointment.
  2. Prevent user from copying radiology appointment to clipboard.

DAL:

  1. Added CanCancelRadExam entry point to support change in CGView above.

Updated exes and dlls.

File:
1 edited

Legend:

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

    r1174 r1186  
    233233            return result == "1" ? true : false;
    234234        }
     235       
     236        /// <summary>
     237        /// Can we Cancel an Exam appointment? Exams that are discontinued, Active or Complete cannot be discontinued
     238        /// </summary>
     239        /// <param name="examIEN">IEN of exam in 75.1 (RAD/NUC MED ORDERS) file</param>
     240        /// <returns>true or false</returns>
     241        public bool CanCancelRadExam(int examIEN)
     242        {
     243            string result = _thisConnection.bmxNetLib.TransmitRPC("BSDX CAN HOLD RAD EXAM", examIEN.ToString());
     244            return result == "1" ? true : false;
     245        }
    235246
    236247        /// <summary>
Note: See TracChangeset for help on using the changeset viewer.