示例#1
0
		public static void Add(PhoneTile tile){
			//if(selectedTile.PhoneCur==null) {//already validated
			if(tile.PhoneCur.CustomerNumber=="") {
				MsgBox.Show(langThis,"No phone number present.");
				return;
			}
			long patNum=tile.PhoneCur.PatNum;
			if(FormOpenDental.CurPatNum==0) {
				MsgBox.Show(langThis,"Please select a patient in the main window first.");
				return;
			}
			if(patNum!=0) {
				MsgBox.Show(langThis,"The current number is already attached to a different customer.");
				return;
				//if(!MsgBox.Show(langThis,MsgBoxButtons.OKCancel,"The current number is already attached to a patient. Attach it to this patient instead?")) {
				//	return;
				//}
				//This crashes because we don't actually know what the number is.  Enhance later by storing actual number in phone grid.
				//PhoneNumber ph=PhoneNumbers.GetByVal(tile.PhoneCur.CustomerNumber);
				//ph.PatNum=FormOpenDental.CurPatNum;
				//PhoneNumbers.Update(ph);
			}
			else {
				string patName=Patients.GetLim(FormOpenDental.CurPatNum).GetNameLF();
				if(MessageBox.Show("Attach this phone number to "+patName+"?","",MessageBoxButtons.OKCancel)!=DialogResult.OK) {
					return;
				}
				PhoneNumber ph=new PhoneNumber();
				ph.PatNum=FormOpenDental.CurPatNum;
				ph.PhoneNumberVal=tile.PhoneCur.CustomerNumber;
				PhoneNumbers.Insert(ph);
			}
			//tell the phone server to refresh this row with the patient name and patnum
			DataValid.SetInvalid(InvalidType.PhoneNumbers);
		}
示例#2
0
        ///<summary>If already clocked in, this does nothing.  Returns false if not able to clock in due to security, or true if successful.</summary>
        private static bool ClockIn(PhoneTile tile)
        {
            long employeeNum = Security.CurUser.EmployeeNum; //tile.PhoneCur.EmployeeNum;

            if (employeeNum == 0)                            //Can happen if logged in as 'admin' user (employeeNum==0). Otherwise should not happen, means the employee trying to clock doesn't exist in the employee table.
            {
                MsgBox.Show(langThis, "Inavlid OD User: "******"Working";
            Employees.Update(EmpCur);
            return(true);
        }
示例#3
0
文件: PhoneUI.cs 项目: nampn/ODental
        public static void Break(PhoneTile tile)
        {
            //verify that employee is logged in as user
            int  extension   = tile.PhoneCur.Extension;
            long employeeNum = tile.PhoneCur.EmployeeNum;

            if (Security.CurUser.EmployeeNum != employeeNum)
            {
                if (!Security.IsAuthorized(Permissions.TimecardsEditAll, true))
                {
                    if (!CheckSelectedUserPassword(employeeNum))
                    {
                        return;
                    }
                }
            }
            try {
                ClockEvents.ClockOut(employeeNum, TimeClockStatus.Break);
            }
            catch (Exception ex) {
                MessageBox.Show(ex.Message);                //This message will tell user that they are already clocked out.
                return;
            }
            PhoneEmpDefaults.SetAvailable(extension, employeeNum);
            Employee EmpCur = Employees.GetEmp(employeeNum);

            EmpCur.ClockStatus = Lan.g("enumTimeClockStatus", TimeClockStatus.Break.ToString());
            Employees.Update(EmpCur);
            Phones.SetPhoneStatus(ClockStatusEnum.Break, extension);
        }
示例#4
0
文件: PhoneUI.cs 项目: nampn/ODental
        public static void Unavailable(PhoneTile tile)
        {
            if (!ClockIn(tile))
            {
                return;
            }
            int  extension   = tile.PhoneCur.Extension;
            long employeeNum = tile.PhoneCur.EmployeeNum;

            if (!CheckSelectedUserPassword(employeeNum))
            {
                return;
            }
            PhoneEmpDefault ped = PhoneEmpDefaults.GetByExtAndEmp(extension, employeeNum);

            if (ped == null)
            {
                MessageBox.Show("PhoneEmpDefault (employee setting row) not found for Extension " + extension.ToString() + " and EmployeeNum " + employeeNum.ToString());
                return;
            }
            FormPhoneEmpDefaultEdit formPED = new FormPhoneEmpDefaultEdit();

            formPED.PedCur = ped;
            formPED.ShowDialog();
            Phones.SetPhoneStatus(ClockStatusEnum.Unavailable, extension);
        }
示例#5
0
        private void phoneTile_ScreenshotClick(object sender, EventArgs e)
        {
            PhoneTile tile = (PhoneTile)sender;

            if (tile.PhoneCur == null)
            {
                return;
            }
            if (tile.PhoneCur.ScreenshotPath == "")
            {
                MessageBox.Show("No screenshots available yet.");
                return;
            }
            if (!File.Exists(tile.PhoneCur.ScreenshotPath))
            {
                MessageBox.Show("Could not find file: " + tile.PhoneCur.ScreenshotPath);
                return;
            }
            Cursor = Cursors.WaitCursor;
            FormScreenshotBrowse formSB = new FormScreenshotBrowse();

            formSB.ScreenshotPath = tile.PhoneCur.ScreenshotPath;
            formSB.ShowDialog();
            Cursor = Cursors.Default;
        }
示例#6
0
 private void FormPhoneTiles_Load(object sender, EventArgs e)
 {
                 #if !DEBUG
     if (Environment.MachineName.ToLower() != "jordans")
     {
         checkBoxAll.Visible = false;                      //so this will also be visible in debug
     }
                 #endif
     timeDelta = MiscData.GetNowDateTime() - DateTime.Now;
     PhoneTile tile;
     int       x = 0;
     int       y = 0;
     for (int i = 0; i < 26; i++)
     {
         tile                  = new PhoneTile();
         tile.Name             = "phoneTile" + (i + 1).ToString();
         tile.LayoutHorizontal = true;
         tile.Location         = new Point(tile.Width * x, 26 + (tile.Height * y));
         //((PhoneTile)Controls.Find("phoneTile"+(i+1).ToString(),false)[0]);
         tile.GoToChanged         += new System.EventHandler(this.phoneTile_GoToChanged);
         tile.SelectedTileChanged += new System.EventHandler(this.phoneTile_SelectedTileChanged);
         tile.ScreenshotClick     += new EventHandler(this.phoneTile_ScreenshotClick);
         tile.MenuNumbers          = menuNumbers;
         tile.MenuStatus           = menuStatus;
         this.Controls.Add(tile);
         y++;
         if (y == 13)
         {
             y = 0;
             x++;
         }
     }
     FillTiles(true);            //initial fast load and anytime data changes.  After this, pumped in from main form.
 }
示例#7
0
 public static void RinggroupsDefault(PhoneTile tile)
 {
     if (!CheckUserCanChangeStatus(tile))
     {
         return;
     }
     PhoneAsterisks.SetToDefaultRingGroups(tile.PhoneCur.Extension, tile.PhoneCur.EmployeeNum);
 }
示例#8
0
 ///<summary>As of 10/9/13 Nathan wants backup ringgroup to go to 'None'. We may go back to using 'Backup' at some point, but for now it is not necessary so just set them to None.</summary>
 public static void RinggroupsBackup(PhoneTile tile)
 {
     if (!CheckUserCanChangeStatus(tile))
     {
         return;
     }
     PhoneAsterisks.SetRingGroups(tile.PhoneCur.Extension, AsteriskRingGroups.Backup);
 }
示例#9
0
        private void FormPhoneTiles_Load(object sender, EventArgs e)
        {
#if !DEBUG
            if (Environment.MachineName.ToLower() != "jordans" &&
                Environment.MachineName.ToLower() != "nathan")
            {
                checkBoxAll.Visible = false;                      //so this will also be visible in debug
            }
#endif
            timeDelta = MiscData.GetNowDateTime() - DateTime.Now;
            PhoneTile tile;
            int       x = 0;
            int       y = 0;
            SetPhoneList(PhoneEmpDefaults.Refresh(), Phones.GetPhoneList(), ChatUsers.GetAll(), false);         //Do not call FillTiles() yet. Need to create PhoneTile controls first.
            for (int i = 1; i < TileCount + 1; i++)
            {
                tile                      = new PhoneTile();
                tile.Name                 = "phoneTile" + (i).ToString();
                tile.Location             = new Point(tile.Width * x, butOverride.Bottom + 15 + (tile.Height * y));
                tile.GoToChanged         += new System.EventHandler(this.phoneTile_GoToChanged);
                tile.SelectedTileChanged += new System.EventHandler(this.phoneTile_SelectedTileChanged);
                tile.MenuNumbers          = menuNumbers;
                tile.MenuStatus           = menuStatus;
                //adding this in case we ever want to show the NeedsHelp button in the big phones. Currently, it is hidden.
                tile.NeedsHelpClicked += new System.EventHandler(this.tiletoggleHelp_Click);
                this.Controls.Add(tile);
                y++;
                if (i % (TilesPerColumn) == 0)             //If number is divisble by the number of tiles per column, move over to a new column.  TilesPerColumn subtracts one because i is zero based.
                {
                    y = 0;
                    x++;
                }
            }
            FillTiles(false);            //initial fast load and anytime data changes.  After this, pumped in from main form.
            Control[] topLeftMatch = Controls.Find("phoneTile1", false);
            if (PhoneList.Count >= 1 &&
                topLeftMatch != null &&
                topLeftMatch.Length >= 1)
            {
                //Size the window to fit contents
                tile = ((PhoneTile)topLeftMatch[0]);
                int columns    = (int)Math.Ceiling((double)PhoneList.Count / TilesPerColumn);
                int autoWidth  = columns * tile.Width;
                int autoHeight = tile.Top + (tile.Height * TilesPerColumn);
                if (autoWidth > 1650)                 //Window was going off side of screen.  1650 chosen to accommodate side mounted windows taskbar.
                //Resize window to fit, add height for showing horizontal scrollbar.
                //Doesn't use #*column width here because the column width is changing soon, and want to show partial columns so user knows to scroll.
                {
                    autoWidth  = 1650;
                    autoHeight = autoHeight + 20;
                }
                this.ClientSize = new Size(autoWidth, autoHeight);
            }
            radioByExt.CheckedChanged  += radioSort_CheckedChanged;
            radioByName.CheckedChanged += radioSort_CheckedChanged;
        }
示例#10
0
		public static void Manage(PhoneTile tile){
			//if(selectedTile.PhoneCur==null) {//already validated
			long patNum=tile.PhoneCur.PatNum;
			if(patNum==0) {
				MsgBox.Show(langThis,"Please attach this number to a patient first.");
				return;
			}
			FormPhoneNumbersManage FormM=new FormPhoneNumbersManage();
			FormM.PatNum=patNum;
			FormM.ShowDialog();
		}
示例#11
0
文件: PhoneUI.cs 项目: nampn/ODental
        public static void RinggroupsDefault(PhoneTile tile)
        {
            int  extension   = tile.PhoneCur.Extension;
            long employeeNum = tile.PhoneCur.EmployeeNum;

            if (!CheckSelectedUserPassword(employeeNum))
            {
                return;
            }
            PhoneAsterisks.SetToDefaultRingGroups(extension, employeeNum);
        }
示例#12
0
文件: PhoneUI.cs 项目: nampn/ODental
        public static void RinggroupNone(PhoneTile tile)
        {
            //This even works if the person is still clocked in.
            int  extension   = tile.PhoneCur.Extension;
            long employeeNum = tile.PhoneCur.EmployeeNum;

            if (!CheckSelectedUserPassword(employeeNum))
            {
                return;
            }
            PhoneAsterisks.SetRingGroups(extension, AsteriskRingGroups.None);
        }
示例#13
0
 ///<summary>Verify Security.CurUser is allowed to change this tile's status.</summary>
 private static bool CheckUserCanChangeStatus(PhoneTile tile)
 {
     if (Security.CurUser.EmployeeNum == tile.PhoneCur.EmployeeNum)            //User is changing their own tile. This is always allowed.
     {
         return(true);
     }
     if (Security.IsAuthorized(Permissions.TimecardsEditAll, true))             //User has time card edit permission so allow it.
     {
         return(true);
     }
     //User must enter target tile's password correctly.
     return(CheckSelectedUserPassword(tile.PhoneCur.EmployeeNum));
 }
示例#14
0
文件: PhoneUI.cs 项目: nampn/ODental
 public static void Backup(PhoneTile tile)
 {
     if(!ClockIn(tile)) {
         return;
     }
     int extension=tile.PhoneCur.Extension;
     long employeeNum=tile.PhoneCur.EmployeeNum;
     if(!CheckSelectedUserPassword(employeeNum)) {
         return;
     }
     PhoneEmpDefaults.SetAvailable(extension,employeeNum);
     PhoneAsterisks.SetRingGroups(extension,AsteriskRingGroups.Backup);
     Phones.SetPhoneStatus(ClockStatusEnum.Backup,extension);
 }
示例#15
0
        //Adding this in case we ever want to show the NeedsHelp button in the big phones. Currently, it is hidden.
        private void tiletoggleHelp_Click(object sender, EventArgs e)
        {
            PhoneTile phoneTile = (PhoneTile)sender;

            if (phoneTile.PhoneCur.ClockStatus == ClockStatusEnum.NeedsHelp ||
                phoneTile.PhoneCur.ClockStatus == ClockStatusEnum.HelpOnTheWay)
            {
                PhoneUI.Available(phoneTile);
            }
            else
            {
                PhoneUI.NeedsHelp(phoneTile);
            }
            FillTiles(true);
        }
示例#16
0
        private void phoneTile_GoToChanged(object sender, EventArgs e)
        {
            PhoneTile tile = (PhoneTile)sender;

            if (tile.PhoneCur == null)
            {
                return;
            }
            if (tile.PhoneCur.PatNum == 0)
            {
                return;
            }
            GotoPatNum = tile.PhoneCur.PatNum;
            OnGoToChanged();
        }
示例#17
0
文件: PhoneUI.cs 项目: nampn/ODental
        public static void Manage(PhoneTile tile)
        {
            //if(selectedTile.PhoneCur==null) {//already validated
            long patNum = tile.PhoneCur.PatNum;

            if (patNum == 0)
            {
                MsgBox.Show(langThis, "Please attach this number to a patient first.");
                return;
            }
            FormPhoneNumbersManage FormM = new FormPhoneNumbersManage();

            FormM.PatNum = patNum;
            FormM.ShowDialog();
        }
示例#18
0
文件: PhoneUI.cs 项目: nampn/ODental
        public static void Training(PhoneTile tile)
        {
            if (!ClockIn(tile))
            {
                return;
            }
            int  extension   = tile.PhoneCur.Extension;
            long employeeNum = tile.PhoneCur.EmployeeNum;

            if (!CheckSelectedUserPassword(employeeNum))
            {
                return;
            }
            PhoneEmpDefaults.SetAvailable(extension, employeeNum);
            Phones.SetPhoneStatus(ClockStatusEnum.Training, extension);
        }
示例#19
0
文件: PhoneUI.cs 项目: nampn/ODental
        public static void WrapUp(PhoneTile tile)
        {
            if (!ClockIn(tile))
            {
                return;
            }
            int  extension   = tile.PhoneCur.Extension;
            long employeeNum = tile.PhoneCur.EmployeeNum;

            if (!CheckSelectedUserPassword(employeeNum))
            {
                return;
            }
            PhoneEmpDefaults.SetAvailable(extension, employeeNum);
            Phones.SetPhoneStatus(ClockStatusEnum.WrapUp, extension);
            //this is usually an automatic status
        }
示例#20
0
文件: PhoneUI.cs 项目: nampn/ODental
 public static void Available(PhoneTile tile)
 {
     if(!ClockIn(tile)) {
         return;
     }
     int extension=tile.PhoneCur.Extension;
     long employeeNum=tile.PhoneCur.EmployeeNum;
     if(Security.CurUser.EmployeeNum!=employeeNum) {
         if(!Security.IsAuthorized(Permissions.TimecardsEditAll,true)) {
             if(!CheckSelectedUserPassword(employeeNum)) {
                 return;
             }
         }
     }
     PhoneEmpDefaults.SetAvailable(extension,employeeNum);
     Phones.SetPhoneStatus(ClockStatusEnum.Available,extension);//green
 }
示例#21
0
文件: PhoneUI.cs 项目: nampn/ODental
        public static void Backup(PhoneTile tile)
        {
            if (!ClockIn(tile))
            {
                return;
            }
            int  extension   = tile.PhoneCur.Extension;
            long employeeNum = tile.PhoneCur.EmployeeNum;

            if (!CheckSelectedUserPassword(employeeNum))
            {
                return;
            }
            PhoneEmpDefaults.SetAvailable(extension, employeeNum);
            PhoneAsterisks.SetRingGroups(extension, AsteriskRingGroups.Backup);
            Phones.SetPhoneStatus(ClockStatusEnum.Backup, extension);
        }
示例#22
0
        ///<summary>If this is Security.CurUser's tile then ClockIn. If it is someone else's tile then allow the single case of switching from NeedsHelp to Available.</summary>
        public static void Available(PhoneTile tile)
        {
            long employeeNum = Security.CurUser.EmployeeNum;

            if (Security.CurUser.EmployeeNum != tile.PhoneCur.EmployeeNum)            //We are on someone else's tile. So Let's do some checks before we assume we can take over this extension.
            {
                if (tile.PhoneCur.ClockStatus == ClockStatusEnum.NeedsHelp)
                {
                    //Allow the specific state where we are changing their status back from NeedsHelp to Available.
                    //This does not require any security permissions as any tech in can perform this action on behalf of any other tech.
                    Phones.SetPhoneStatus(ClockStatusEnum.Available, tile.PhoneCur.Extension, tile.PhoneCur.EmployeeNum);                  //green
                    return;
                }
                //We are on a tile that is not our own
                //If another employee is occupying this extension then assume we are trying to change that employee's status back to available.
                if (ClockEvents.IsClockedIn(tile.PhoneCur.EmployeeNum))                  //This tile is taken by an employee who is clocked in.
                //Transition the employee back to available.
                {
                    ChangeTileStatus(tile, ClockStatusEnum.Available);
                    return;
                }
                if (tile.PhoneCur.ClockStatus != ClockStatusEnum.None &&                //The other person is still actively using this extension.
                    tile.PhoneCur.ClockStatus != ClockStatusEnum.Home)
                {
                    MsgBox.Show(langThis, "Cannot take over this extension as it is currently occuppied by someone who is likely on Break or Lunch.");
                    return;
                }
                //If another employee is NOT occupying this extension then assume we are trying clock in at this extension.
                if (ClockEvents.IsClockedIn(employeeNum))                  //We are already clocked in at a different extension.
                {
                    MsgBox.Show(langThis, "You are already clocked in at a different extension.  You must clock out of the current extension you are logged into before moving to another extension.");
                    return;
                }
                //We got this far so fall through and allow user to clock in.
            }
            //We go here so all of our checks passed and we may login at this extension
            if (!ClockIn(tile))              //Clock in on behalf of yourself
            {
                return;
            }
            //Update the Phone tables accordingly.
            PhoneEmpDefaults.SetAvailable(tile.PhoneCur.Extension, employeeNum);
            PhoneAsterisks.SetToDefaultRingGroups(tile.PhoneCur.Extension, employeeNum);
            Phones.SetPhoneStatus(ClockStatusEnum.Available, tile.PhoneCur.Extension, employeeNum);          //green
        }
示例#23
0
文件: PhoneUI.cs 项目: mnisl/OD
		///<summary>If this is Security.CurUser's tile then ClockIn. If it is someone else's tile then allow the single case of switching from NeedsHelp to Available.</summary>
		public static void Available(PhoneTile tile) {
			long employeeNum=Security.CurUser.EmployeeNum;
			if(Security.CurUser.EmployeeNum!=tile.PhoneCur.EmployeeNum) { //We are on someone else's tile. So Let's do some checks before we assume we can take over this extension.				
				if(tile.PhoneCur.ClockStatus==ClockStatusEnum.NeedsHelp) { 
					//Allow the specific state where we are changing their status back from NeedsHelp to Available.
					//This does not require any security permissions as any tech in can perform this action on behalf of any other tech.
					Phones.SetPhoneStatus(ClockStatusEnum.Available,tile.PhoneCur.Extension,tile.PhoneCur.EmployeeNum);//green
					return;
				}
				//We are on a tile that is not our own
				//If another employee is occupying this extension then assume we are trying to change that employee's status back to available.
				if(ClockEvents.IsClockedIn(tile.PhoneCur.EmployeeNum)) { //This tile is taken by an employee who is clocked in.					
					//Transition the employee back to available.
					ChangeTileStatus(tile,ClockStatusEnum.Available);
					return;
				}
				if(tile.PhoneCur.ClockStatus!=ClockStatusEnum.None	//The other person is still actively using this extension.
					&& tile.PhoneCur.ClockStatus!=ClockStatusEnum.Home) {
					MsgBox.Show(langThis,"Cannot take over this extension as it is currently occuppied by someone who is likely on Break or Lunch.");			
					return;
				}			
				//If another employee is NOT occupying this extension then assume we are trying clock in at this extension.
				if(ClockEvents.IsClockedIn(employeeNum)) { //We are already clocked in at a different extension.
					MsgBox.Show(langThis,"You are already clocked in at a different extension.  You must clock out of the current extension you are logged into before moving to another extension.");
					return;
				}
				//We got this far so fall through and allow user to clock in.
			}
			//We go here so all of our checks passed and we may login at this extension
			if(!ClockIn(tile)) { //Clock in on behalf of yourself
				return;
			}
			//Update the Phone tables accordingly.
			PhoneEmpDefaults.SetAvailable(tile.PhoneCur.Extension,employeeNum);
			PhoneEmpDefault pedCur=PhoneEmpDefaults.GetOne(employeeNum);
			//If the employee was set to triage, do not set them to default ring group, set them to triage (backup) ringroup.
			if(pedCur!=null && pedCur.IsTriageOperator) {
				PhoneAsterisks.SetRingGroups(pedCur.PhoneExt,AsteriskRingGroups.Backup);
			}
			else {
				PhoneAsterisks.SetToDefaultRingGroups(tile.PhoneCur.Extension,employeeNum);
			}
			Phones.SetPhoneStatus(ClockStatusEnum.Available,tile.PhoneCur.Extension,employeeNum);//green
		}
示例#24
0
        private void FormPhoneTiles_Load(object sender, EventArgs e)
        {
#if !DEBUG
            if (Environment.MachineName.ToLower() != "jordans" &&
                Environment.MachineName.ToLower() != "nathan")
            {
                checkBoxAll.Visible = false;                      //so this will also be visible in debug
            }
#endif
            timeDelta = MiscData.GetNowDateTime() - DateTime.Now;
            PhoneTile tile;
            int       x = 0;
            int       y = 0;
            for (int i = 1; i < TileCount + 1; i++)
            {
                tile                      = new PhoneTile();
                tile.Name                 = "phoneTile" + (i).ToString();
                tile.Location             = new Point(tile.Width * x, butOverride.Bottom + 15 + (tile.Height * y));
                tile.GoToChanged         += new System.EventHandler(this.phoneTile_GoToChanged);
                tile.SelectedTileChanged += new System.EventHandler(this.phoneTile_SelectedTileChanged);
                tile.ScreenshotClick     += new EventHandler(this.phoneTile_ScreenshotClick);
                tile.MenuNumbers          = menuNumbers;
                tile.MenuStatus           = menuStatus;
                this.Controls.Add(tile);
                y++;
                if (i % (TilesPerColumn) == 0)             //If number is divisble by the number of tiles per column, move over to a new column.  TilesPerColumn subtracts one because i is zero based.
                {
                    y = 0;
                    x++;
                }
            }
            FillTiles(true);            //initial fast load and anytime data changes.  After this, pumped in from main form.
            Control[] topLeftMatch = Controls.Find("phoneTile1", false);
            if (PhoneList.Count >= 1 &&
                topLeftMatch != null &&
                topLeftMatch.Length >= 1)                    //Size the window to fit contents
            {
                tile = ((PhoneTile)topLeftMatch[0]);
                int columns = (int)Math.Ceiling((double)PhoneList.Count / TilesPerColumn);
                this.ClientSize = new Size(columns * tile.Width, tile.Top + (tile.Height * TilesPerColumn));
            }
            radioByExt.CheckedChanged  += radioSort_CheckedChanged;
            radioByName.CheckedChanged += radioSort_CheckedChanged;
        }
示例#25
0
文件: PhoneUI.cs 项目: nampn/ODental
        public static void Add(PhoneTile tile)
        {
            //if(selectedTile.PhoneCur==null) {//already validated
            if (tile.PhoneCur.CustomerNumber == "")
            {
                MsgBox.Show(langThis, "No phone number present.");
                return;
            }
            long patNum = tile.PhoneCur.PatNum;

            if (FormOpenDental.CurPatNum == 0)
            {
                MsgBox.Show(langThis, "Please select a patient in the main window first.");
                return;
            }
            if (patNum != 0)
            {
                MsgBox.Show(langThis, "The current number is already attached to a different customer.");
                return;
                //if(!MsgBox.Show(langThis,MsgBoxButtons.OKCancel,"The current number is already attached to a patient. Attach it to this patient instead?")) {
                //	return;
                //}
                //This crashes because we don't actually know what the number is.  Enhance later by storing actual number in phone grid.
                //PhoneNumber ph=PhoneNumbers.GetByVal(tile.PhoneCur.CustomerNumber);
                //ph.PatNum=FormOpenDental.CurPatNum;
                //PhoneNumbers.Update(ph);
            }
            else
            {
                string patName = Patients.GetLim(FormOpenDental.CurPatNum).GetNameLF();
                if (MessageBox.Show("Attach this phone number to " + patName + "?", "", MessageBoxButtons.OKCancel) != DialogResult.OK)
                {
                    return;
                }
                PhoneNumber ph = new PhoneNumber();
                ph.PatNum         = FormOpenDental.CurPatNum;
                ph.PhoneNumberVal = tile.PhoneCur.CustomerNumber;
                PhoneNumbers.Insert(ph);
            }
            //tell the phone server to refresh this row with the patient name and patnum
            DataValid.SetInvalid(InvalidType.PhoneNumbers);
        }
示例#26
0
 ///<summary>Verify... 1) Security.CurUser is clocked in. 2) Target status change employee is clocked in. 3) Secruity.CurUser has TimecardsEditAll permission.</summary>
 private static bool ChangeTileStatus(PhoneTile tile, ClockStatusEnum newClockStatus)
 {
     if (!ClockEvents.IsClockedIn(Security.CurUser.EmployeeNum))              //Employee performing the action must be clocked in.
     {
         MsgBox.Show(langThis, "You must clock in before completing this action.");
         return(false);
     }
     if (!ClockEvents.IsClockedIn(tile.PhoneCur.EmployeeNum))              //Employee having action performed must be clocked in.
     {
         MessageBox.Show(Lan.g(langThis, "Target employee must be clocked in before setting this status: ") + tile.PhoneCur.EmployeeName);
         return(false);
     }
     if (!CheckUserCanChangeStatus(tile))
     {
         return(false);
     }
     PhoneEmpDefaults.SetAvailable(tile.PhoneCur.Extension, tile.PhoneCur.EmployeeNum);
     PhoneAsterisks.SetToDefaultRingGroups(tile.PhoneCur.Extension, tile.PhoneCur.EmployeeNum);
     Phones.SetPhoneStatus(newClockStatus, tile.PhoneCur.Extension);
     return(true);
 }
示例#27
0
		private void FormPhoneTiles_Load(object sender,EventArgs e) {
#if !DEBUG
				if(Environment.MachineName.ToLower()!="jordans"
					&& Environment.MachineName.ToLower()!="nathan") 
				{
					checkBoxAll.Visible=false;//so this will also be visible in debug
				}
#endif
			timeDelta=MiscData.GetNowDateTime()-DateTime.Now;
			PhoneTile tile;
			int x=0;
			int y=0;
			for(int i=1;i<TileCount+1;i++) {
				tile=new PhoneTile();
				tile.Name="phoneTile"+(i).ToString();
				tile.Location=new Point(tile.Width*x,butOverride.Bottom+15+(tile.Height*y));				
				tile.GoToChanged += new System.EventHandler(this.phoneTile_GoToChanged);
				tile.SelectedTileChanged += new System.EventHandler(this.phoneTile_SelectedTileChanged);
				tile.ScreenshotClick += new EventHandler(this.phoneTile_ScreenshotClick);
				tile.MenuNumbers=menuNumbers;
				tile.MenuStatus=menuStatus;
				this.Controls.Add(tile);
				y++;
				if(i%(TilesPerColumn)==0) {//If number is divisble by the number of tiles per column, move over to a new column.  TilesPerColumn subtracts one because i is zero based.
					y=0;
					x++;
				}
			}
			FillTiles(true);//initial fast load and anytime data changes.  After this, pumped in from main form.
			Control[] topLeftMatch=Controls.Find("phoneTile1",false);
			if(PhoneList.Count>=1 
				&& topLeftMatch!=null
				&& topLeftMatch.Length>=1) { //Size the window to fit contents
				tile=((PhoneTile)topLeftMatch[0]);
				int columns=(int)Math.Ceiling((double)PhoneList.Count/TilesPerColumn);
				this.ClientSize=new Size(columns*tile.Width,tile.Top+(tile.Height*TilesPerColumn));
			}
			radioByExt.CheckedChanged+=radioSort_CheckedChanged;
			radioByName.CheckedChanged+=radioSort_CheckedChanged;
		}
示例#28
0
        public static void Home(PhoneTile tile)
        {
            //verify that employee is logged in as user
            int  extension   = tile.PhoneCur.Extension;
            long employeeNum = tile.PhoneCur.EmployeeNum;

            if (!CheckUserCanChangeStatus(tile))
            {
                return;
            }
            try {             //Update the clock event, phone (HQ only), and phone emp default (HQ only).
                ClockEvents.ClockOut(employeeNum, TimeClockStatus.Home);
            }
            catch (Exception ex) {
                MessageBox.Show(ex.Message);                //This message will tell user that they are already clocked out.
                return;
            }
            Employee EmpCur = Employees.GetEmp(employeeNum);

            EmpCur.ClockStatus = Lan.g("enumTimeClockStatus", TimeClockStatus.Home.ToString());
            Employees.Update(EmpCur);
        }
示例#29
0
文件: PhoneUI.cs 项目: nampn/ODental
        public static void Available(PhoneTile tile)
        {
            if (!ClockIn(tile))
            {
                return;
            }
            int  extension   = tile.PhoneCur.Extension;
            long employeeNum = tile.PhoneCur.EmployeeNum;

            if (Security.CurUser.EmployeeNum != employeeNum)
            {
                if (!Security.IsAuthorized(Permissions.TimecardsEditAll, true))
                {
                    if (!CheckSelectedUserPassword(employeeNum))
                    {
                        return;
                    }
                }
            }
            PhoneEmpDefaults.SetAvailable(extension, employeeNum);
            Phones.SetPhoneStatus(ClockStatusEnum.Available, extension);           //green
        }
示例#30
0
        public static void Unavailable(PhoneTile tile)
        {
            if (!ClockEvents.IsClockedIn(Security.CurUser.EmployeeNum))              //Employee performing the action must be clocked in.
            {
                MsgBox.Show("PhoneUI", "You must clock in before completing this action.");
                return;
            }
            if (!ClockEvents.IsClockedIn(tile.PhoneCur.EmployeeNum))              //Employee having action performed must be clocked in.
            {
                MessageBox.Show(Lan.g("PhoneUI", "Target employee must be clocked in before setting this status: ") + tile.PhoneCur.EmployeeName);
                return;
            }
            if (!CheckUserCanChangeStatus(tile))
            {
                return;
            }
            int             extension   = tile.PhoneCur.Extension;
            long            employeeNum = tile.PhoneCur.EmployeeNum;
            PhoneEmpDefault ped         = PhoneEmpDefaults.GetByExtAndEmp(extension, employeeNum);

            if (ped == null)
            {
                MessageBox.Show("PhoneEmpDefault (employee setting row) not found for Extension " + extension.ToString() + " and EmployeeNum " + employeeNum.ToString());
                return;
            }
            FormPhoneEmpDefaultEdit formPED = new FormPhoneEmpDefaultEdit();

            formPED.PedCur = ped;
            formPED.PedCur.StatusOverride = PhoneEmpStatusOverride.Unavailable;
            if (formPED.ShowDialog() == DialogResult.OK && formPED.PedCur.StatusOverride == PhoneEmpStatusOverride.Unavailable)
            {
                //This phone status update can get skipped from within the editor if the employee is not clocked in.
                //This would be the case when you are setting an employee other than yourself to Unavailable.
                //So we will set it here. This keeps the phone table and phone panel in sync.
                Phones.SetPhoneStatus(ClockStatusEnum.Unavailable, formPED.PedCur.PhoneExt, formPED.PedCur.EmployeeNum);
            }
        }
示例#31
0
文件: PhoneUI.cs 项目: nampn/ODental
        ///<summary>If already clocked in, this does nothing.  Returns false if not able to clock in due to security, or true if successful.</summary>
        private static bool ClockIn(PhoneTile tile)
        {
            long employeeNum = tile.PhoneCur.EmployeeNum;

            if (employeeNum == 0)
            {
                MsgBox.Show(langThis, "No employee at that extension.");
                return(false);
            }
            if (ClockEvents.IsClockedIn(employeeNum))
            {
                return(true);
            }
            if (Security.CurUser.EmployeeNum != employeeNum)
            {
                if (!Security.IsAuthorized(Permissions.TimecardsEditAll, true))
                {
                    if (!CheckSelectedUserPassword(employeeNum))
                    {
                        return(false);
                    }
                }
            }
            try {
                ClockEvents.ClockIn(employeeNum);
            }
            catch {
                //This should never happen.  Fail silently.
                return(true);
            }
            Employee EmpCur = Employees.GetEmp(employeeNum);

            EmpCur.ClockStatus = "Working";
            Employees.Update(EmpCur);
            return(true);
        }
示例#32
0
        public static void Break(PhoneTile tile)
        {
            //verify that employee is logged in as user
            int  extension   = tile.PhoneCur.Extension;
            long employeeNum = tile.PhoneCur.EmployeeNum;

            if (!CheckUserCanChangeStatus(tile))
            {
                return;
            }
            try {
                ClockEvents.ClockOut(employeeNum, TimeClockStatus.Break);
            }
            catch (Exception ex) {
                MessageBox.Show(ex.Message);                //This message will tell user that they are already clocked out.
                return;
            }
            PhoneEmpDefaults.SetAvailable(extension, employeeNum);
            Employee EmpCur = Employees.GetEmp(employeeNum);

            EmpCur.ClockStatus = Lan.g("enumTimeClockStatus", TimeClockStatus.Break.ToString());
            Employees.Update(EmpCur);
            Phones.SetPhoneStatus(ClockStatusEnum.Break, extension);
        }
示例#33
0
		private void phoneTile_SelectedTileChanged(object sender,EventArgs e) {
			selectedTile=(PhoneTile)sender;
		}
示例#34
0
 private void FormPhoneTiles_Load(object sender,EventArgs e)
 {
     #if !DEBUG
         if(Environment.MachineName.ToLower()!="jordans") {
             checkBoxAll.Visible=false;//so this will also be visible in debug
         }
     #endif
     timeDelta=MiscData.GetNowDateTime()-DateTime.Now;
     PhoneTile tile;
     int x=0;
     int y=0;
     for(int i=0;i<26;i++) {
         tile=new PhoneTile();
         tile.Name="phoneTile"+(i+1).ToString();
         tile.LayoutHorizontal=true;
         tile.Location=new Point(tile.Width*x,26+(tile.Height*y));
         //((PhoneTile)Controls.Find("phoneTile"+(i+1).ToString(),false)[0]);
         tile.GoToChanged += new System.EventHandler(this.phoneTile_GoToChanged);
         tile.SelectedTileChanged += new System.EventHandler(this.phoneTile_SelectedTileChanged);
         tile.ScreenshotClick += new EventHandler(this.phoneTile_ScreenshotClick);
         tile.MenuNumbers=menuNumbers;
         tile.MenuStatus=menuStatus;
         this.Controls.Add(tile);
         y++;
         if(y==13){
             y=0;
             x++;
         }
     }
     FillTiles(true);//initial fast load and anytime data changes.  After this, pumped in from main form.
 }
示例#35
0
文件: PhoneUI.cs 项目: nampn/ODental
 ///<summary>If already clocked in, this does nothing.  Returns false if not able to clock in due to security, or true if successful.</summary>
 private static bool ClockIn(PhoneTile tile)
 {
     long employeeNum=tile.PhoneCur.EmployeeNum;
     if(employeeNum==0) {
         MsgBox.Show(langThis,"No employee at that extension.");
         return false;
     }
     if(ClockEvents.IsClockedIn(employeeNum)) {
         return true;
     }
     if(Security.CurUser.EmployeeNum!=employeeNum) {
         if(!Security.IsAuthorized(Permissions.TimecardsEditAll,true)) {
             if(!CheckSelectedUserPassword(employeeNum)) {
                 return false;
             }
         }
     }
     try {
         ClockEvents.ClockIn(employeeNum);
     }
     catch {
         //This should never happen.  Fail silently.
         return true;
     }
     Employee EmpCur=Employees.GetEmp(employeeNum);
     EmpCur.ClockStatus="Working";
     Employees.Update(EmpCur);
     return true;
 }
示例#36
0
		public static void TeamAssist(PhoneTile tile) {
			ChangeTileStatus(tile,ClockStatusEnum.TeamAssist);
		}
示例#37
0
文件: PhoneUI.cs 项目: nampn/ODental
 public static void Break(PhoneTile tile)
 {
     //verify that employee is logged in as user
     int extension=tile.PhoneCur.Extension;
     long employeeNum=tile.PhoneCur.EmployeeNum;
     if(Security.CurUser.EmployeeNum!=employeeNum) {
         if(!Security.IsAuthorized(Permissions.TimecardsEditAll,true)) {
             if(!CheckSelectedUserPassword(employeeNum)) {
                 return;
             }
         }
     }
     try {
         ClockEvents.ClockOut(employeeNum,TimeClockStatus.Break);
     }
     catch(Exception ex) {
         MessageBox.Show(ex.Message);//This message will tell user that they are already clocked out.
         return;
     }
     PhoneEmpDefaults.SetAvailable(extension,employeeNum);
     Employee EmpCur=Employees.GetEmp(employeeNum);
     EmpCur.ClockStatus=Lan.g("enumTimeClockStatus",TimeClockStatus.Break.ToString());
     Employees.Update(EmpCur);
     Phones.SetPhoneStatus(ClockStatusEnum.Break,extension);
 }
示例#38
0
		public static void NeedsHelp(PhoneTile tile) {
			ChangeTileStatus(tile,ClockStatusEnum.NeedsHelp);
		}
示例#39
0
 ///<summary>Verify Security.CurUser is allowed to change this tile's status.</summary>
 private static bool CheckUserCanChangeStatus(PhoneTile tile)
 {
     return(CheckUserCanChangeStatus(tile.PhoneCur));
 }
示例#40
0
文件: PhoneUI.cs 项目: nampn/ODental
 public static void RinggroupsDefault(PhoneTile tile)
 {
     int extension=tile.PhoneCur.Extension;
     long employeeNum=tile.PhoneCur.EmployeeNum;
     if(!CheckSelectedUserPassword(employeeNum)) {
         return;
     }
     PhoneAsterisks.SetToDefaultRingGroups(extension,employeeNum);
 }
示例#41
0
文件: PhoneUI.cs 项目: nampn/ODental
 public static void WrapUp(PhoneTile tile)
 {
     if(!ClockIn(tile)) {
         return;
     }
     int extension=tile.PhoneCur.Extension;
     long employeeNum=tile.PhoneCur.EmployeeNum;
     if(!CheckSelectedUserPassword(employeeNum)) {
         return;
     }
     PhoneEmpDefaults.SetAvailable(extension,employeeNum);
     Phones.SetPhoneStatus(ClockStatusEnum.WrapUp,extension);
     //this is usually an automatic status
 }
示例#42
0
		public static void Training(PhoneTile tile) {
			ChangeTileStatus(tile,ClockStatusEnum.Training);
		}		
示例#43
0
		///<summary>Verify Security.CurUser is allowed to change this tile's status.</summary>
		private static bool CheckUserCanChangeStatus(PhoneTile tile) {
			if(Security.CurUser.EmployeeNum==tile.PhoneCur.EmployeeNum) { //User is changing their own tile. This is always allowed.
				return true;
			}
			if(Security.IsAuthorized(Permissions.TimecardsEditAll,true)) { //User has time card edit permission so allow it.
				return true;
			}
			//User must enter target tile's password correctly.
			return CheckSelectedUserPassword(tile.PhoneCur.EmployeeNum);
		}
示例#44
0
文件: PhoneUI.cs 项目: nampn/ODental
 public static void Training(PhoneTile tile)
 {
     if(!ClockIn(tile)) {
         return;
     }
     int extension=tile.PhoneCur.Extension;
     long employeeNum=tile.PhoneCur.EmployeeNum;
     if(!CheckSelectedUserPassword(employeeNum)) {
         return;
     }
     PhoneEmpDefaults.SetAvailable(extension,employeeNum);
     Phones.SetPhoneStatus(ClockStatusEnum.Training,extension);
 }
示例#45
0
		public static void Unavailable(PhoneTile tile) {
			if(!ClockEvents.IsClockedIn(Security.CurUser.EmployeeNum)) { //Employee performing the action must be clocked in.
				MsgBox.Show("PhoneUI","You must clock in before completing this action.");
				return;
			}
			if(!ClockEvents.IsClockedIn(tile.PhoneCur.EmployeeNum)) { //Employee having action performed must be clocked in.
				MessageBox.Show(Lan.g("PhoneUI","Target employee must be clocked in before setting this status: ")+tile.PhoneCur.EmployeeName);
				return;
			}
			if(!CheckUserCanChangeStatus(tile)) {
				return;
			}
			int extension=tile.PhoneCur.Extension;
			long employeeNum=tile.PhoneCur.EmployeeNum;			
			PhoneEmpDefault ped=PhoneEmpDefaults.GetByExtAndEmp(extension,employeeNum);
			if(ped==null) {
				MessageBox.Show("PhoneEmpDefault (employee setting row) not found for Extension "+extension.ToString()+" and EmployeeNum "+employeeNum.ToString());
				return;
			}
			FormPhoneEmpDefaultEdit formPED=new FormPhoneEmpDefaultEdit();
			formPED.PedCur=ped;
			formPED.PedCur.StatusOverride=PhoneEmpStatusOverride.Unavailable;
			if(formPED.ShowDialog()==DialogResult.OK && formPED.PedCur.StatusOverride==PhoneEmpStatusOverride.Unavailable) {
				//This phone status update can get skipped from within the editor if the employee is not clocked in.
				//This would be the case when you are setting an employee other than yourself to Unavailable.
				//So we will set it here. This keeps the phone table and phone panel in sync.
				Phones.SetPhoneStatus(ClockStatusEnum.Unavailable,formPED.PedCur.PhoneExt,formPED.PedCur.EmployeeNum);			
			}
		}
示例#46
0
		public static void Break(PhoneTile tile) {
			//verify that employee is logged in as user
			int extension=tile.PhoneCur.Extension;
			long employeeNum=tile.PhoneCur.EmployeeNum;
			if(!CheckUserCanChangeStatus(tile)) {
				return;
			}
			try {
				ClockEvents.ClockOut(employeeNum,TimeClockStatus.Break);
			}
			catch(Exception ex) {
				MessageBox.Show(ex.Message);//This message will tell user that they are already clocked out.
				return;
			}
			PhoneEmpDefaults.SetAvailable(extension,employeeNum);
			Employee EmpCur=Employees.GetEmp(employeeNum);
			EmpCur.ClockStatus=Lan.g("enumTimeClockStatus",TimeClockStatus.Break.ToString());
			Employees.Update(EmpCur);
			Phones.SetPhoneStatus(ClockStatusEnum.Break,extension);
		}
示例#47
0
		public static void OfflineAssist(PhoneTile tile) {
			ChangeTileStatus(tile,ClockStatusEnum.OfflineAssist);
		}
示例#48
0
		public static void WrapUp(PhoneTile tile) { //this is usually an automatic status
			ChangeTileStatus(tile,ClockStatusEnum.WrapUp);			
		}
示例#49
0
文件: PhoneUI.cs 项目: mnisl/OD
		///<summary>Verify... 1) Security.CurUser is clocked in. 2) Target status change employee is clocked in. 3) Secruity.CurUser has TimecardsEditAll permission.</summary>
		private static bool ChangeTileStatus(PhoneTile tile,ClockStatusEnum newClockStatus) {
			if(!ClockEvents.IsClockedIn(Security.CurUser.EmployeeNum)) { //Employee performing the action must be clocked in.
				MsgBox.Show(langThis,"You must clock in before completing this action.");
				return false;
			}
			if(!ClockEvents.IsClockedIn(tile.PhoneCur.EmployeeNum)) { //Employee having action performed must be clocked in.
				MessageBox.Show(Lan.g(langThis,"Target employee must be clocked in before setting this status: ")+tile.PhoneCur.EmployeeName);
				return false;
			}
			if(!CheckUserCanChangeStatus(tile)) {
				return false;
			}
			PhoneEmpDefaults.SetAvailable(tile.PhoneCur.Extension,tile.PhoneCur.EmployeeNum);
			PhoneEmpDefault pedCur=PhoneEmpDefaults.GetOne(tile.PhoneCur.EmployeeNum);
			//If the employee was set to triage, do not set them to default ring group, set them to triage (backup) ringroup.
			if(pedCur!=null && pedCur.IsTriageOperator) {
				PhoneAsterisks.SetRingGroups(pedCur.PhoneExt,AsteriskRingGroups.Backup);
			}
			else {
				PhoneAsterisks.SetToDefaultRingGroups(tile.PhoneCur.Extension,tile.PhoneCur.EmployeeNum);
			}
			Phones.SetPhoneStatus(newClockStatus,tile.PhoneCur.Extension);
			return true;
		}
示例#50
0
 public static void Home(PhoneTile tile)
 {
     Home(tile.PhoneCur);
 }
示例#51
0
文件: PhoneUI.cs 项目: nampn/ODental
 public static void Unavailable(PhoneTile tile)
 {
     if(!ClockIn(tile)) {
         return;
     }
     int extension=tile.PhoneCur.Extension;
     long employeeNum=tile.PhoneCur.EmployeeNum;
     if(!CheckSelectedUserPassword(employeeNum)) {
         return;
     }
     PhoneEmpDefault ped=PhoneEmpDefaults.GetByExtAndEmp(extension,employeeNum);
     if(ped==null) {
         MessageBox.Show("PhoneEmpDefault (employee setting row) not found for Extension "+extension.ToString()+" and EmployeeNum "+employeeNum.ToString());
         return;
     }
     FormPhoneEmpDefaultEdit formPED=new FormPhoneEmpDefaultEdit();
     formPED.PedCur=ped;
     formPED.ShowDialog();
     Phones.SetPhoneStatus(ClockStatusEnum.Unavailable,extension);
 }
示例#52
0
		///<summary>If already clocked in, this does nothing.  Returns false if not able to clock in due to security, or true if successful.</summary>
		private static bool ClockIn(PhoneTile tile) {
			long employeeNum=Security.CurUser.EmployeeNum;//tile.PhoneCur.EmployeeNum;
			if(employeeNum==0) {//Can happen if logged in as 'admin' user (employeeNum==0). Otherwise should not happen, means the employee trying to clock doesn't exist in the employee table.
				MsgBox.Show(langThis,"Inavlid OD User: "******"Working";
			Employees.Update(EmpCur);
			return true;
		}
示例#53
0
		/// <summary>As per Nathan, changing status should set your ring group to None (not Backup as you might think). We are abandoning the Backup ring group for now.</summary>
		public static void Backup(PhoneTile tile) {
			ChangeTileStatus(tile,ClockStatusEnum.Backup);
			PhoneAsterisks.SetRingGroups(tile.PhoneCur.Extension,AsteriskRingGroups.None);
		}
示例#54
0
		///<summary>Verify... 1) Security.CurUser is clocked in. 2) Target status change employee is clocked in. 3) Secruity.CurUser has TimecardsEditAll permission.</summary>
		private static bool ChangeTileStatus(PhoneTile tile,ClockStatusEnum newClockStatus) {
			if(!ClockEvents.IsClockedIn(Security.CurUser.EmployeeNum)) { //Employee performing the action must be clocked in.
				MsgBox.Show(langThis,"You must clock in before completing this action.");
				return false;
			}
			if(!ClockEvents.IsClockedIn(tile.PhoneCur.EmployeeNum)) { //Employee having action performed must be clocked in.
				MessageBox.Show(Lan.g(langThis,"Target employee must be clocked in before setting this status: ")+tile.PhoneCur.EmployeeName);
				return false;
			}
			if(!CheckUserCanChangeStatus(tile)) {
				return false;
			}
			PhoneEmpDefaults.SetAvailable(tile.PhoneCur.Extension,tile.PhoneCur.EmployeeNum);
			PhoneAsterisks.SetToDefaultRingGroups(tile.PhoneCur.Extension,tile.PhoneCur.EmployeeNum);
			Phones.SetPhoneStatus(newClockStatus,tile.PhoneCur.Extension);
			return true;
		}
示例#55
0
		public static void RinggroupsDefault(PhoneTile tile) {
			if(!CheckUserCanChangeStatus(tile)) {
				return;
			}
			PhoneAsterisks.SetToDefaultRingGroups(tile.PhoneCur.Extension,tile.PhoneCur.EmployeeNum);
		}
示例#56
0
		///<summary>As of 10/9/13 Nathan wants backup ringgroup to go to 'None'. We may go back to using 'Backup' at some point, but for now it is not necessary so just set them to None.</summary>
		public static void RinggroupsBackup(PhoneTile tile) {
			if(!CheckUserCanChangeStatus(tile)) {
				return;
			}
			PhoneAsterisks.SetRingGroups(tile.PhoneCur.Extension,AsteriskRingGroups.Backup);
		}
示例#57
0
 public static void Break(PhoneTile tile)
 {
     Break(tile.PhoneCur);
 }
示例#58
0
		public static void Home(PhoneTile tile) {
			//verify that employee is logged in as user
			int extension=tile.PhoneCur.Extension;
			long employeeNum=tile.PhoneCur.EmployeeNum;
			if(!CheckUserCanChangeStatus(tile)) {
				return;
			}
			try { //Update the clock event, phone (HQ only), and phone emp default (HQ only).
				ClockEvents.ClockOut(employeeNum,TimeClockStatus.Home);
			}
			catch(Exception ex) {
				MessageBox.Show(ex.Message);//This message will tell user that they are already clocked out.
				return;
			}
			Employee EmpCur=Employees.GetEmp(employeeNum);
			EmpCur.ClockStatus=Lan.g("enumTimeClockStatus",TimeClockStatus.Home.ToString());
			Employees.Update(EmpCur);
		}
示例#59
0
 ///<summary>If this is Security.CurUser's tile then ClockIn. If it is someone else's tile then allow the single case of switching from NeedsHelp to Available.</summary>
 public static void Available(PhoneTile tile)
 {
     Available(tile.PhoneCur);
 }
示例#60
0
文件: PhoneUI.cs 项目: nampn/ODental
 public static void RinggroupNone(PhoneTile tile)
 {
     //This even works if the person is still clocked in.
     int extension=tile.PhoneCur.Extension;
     long employeeNum=tile.PhoneCur.EmployeeNum;
     if(!CheckSelectedUserPassword(employeeNum)) {
         return;
     }
     PhoneAsterisks.SetRingGroups(extension,AsteriskRingGroups.None);
 }