private void CreateNewProfileLine() { if (this.Parameters != null) { if (this.Parameters.Length.Equals(4)) { SetStarsLevel1InfoBL.AddStarslevel1Info(this.Parameters[0], this.Parameters[1], ((ListItem)(cmbLineType.SelectedItem)).Value.ToString(), txtDescription.Text, Convert.ToDateTime(this.Parameters[2]), Convert.ToBoolean(this.Parameters[3])); SetProfileChangesBL.SetProfile(Login.PCC, Login.Agent, this.Parameters[1], string.Empty, DateTime.Now); ucProfileSearch.star1Info.Clear(); ucProfileSearch.star1Info = Star1stLevelInfoBL.GetStar1stLevelInfo(this.Parameters[0], this.Parameters[1]); frmProfiles._ucProfileSearch = null; LoaderProfiles.AddToPanel(LoaderProfiles.Zone.Modal_Profile, this, Resources.Profiles.Constants.UC_PROFILE_INFO_DISPLAY); } else if (this.Parameters.Length.Equals(5)) { SetStarsLevel2InfoBL.AddStarsLevel2Info(this.Parameters[0], this.Parameters[1], this.Parameters[2], ((ListItem)(cmbLineType.SelectedItem)).Value.ToString(), txtDescription.Text, Convert.ToDateTime(this.Parameters[3]), Convert.ToBoolean(this.Parameters[4])); SetProfileChangesBL.SetProfile(Login.PCC, Login.Agent, this.Parameters[1], this.Parameters[2], DateTime.Now); ucProfileSearch.star1Info.Clear(); ucProfileSearch.star2Info.Clear(); ucProfileSearch.star1Info = Star1stLevelInfoBL.GetStar1stLevelInfo(this.Parameters[0], this.Parameters[1]); ucProfileSearch.star2Info = Star2ndLevelInfoBL.GetStar2ndLevelInfo(this.Parameters[0], this.Parameters[1], this.Parameters[2]); frmProfiles._ucProfileSearch = null; LoaderProfiles.AddToPanel(LoaderProfiles.Zone.Modal_Profile, this, Resources.Profiles.Constants.UC_PROFILE_INFO_DISPLAY); } } }
/// <summary> /// Renombra el nombre de la estrella /// </summary> private void RenameProfile() { if (this.Parameters != null) { if (this.Parameters.Length.Equals(2)) { DialogResult result = MessageBox.Show(Resources.Profiles.Constants.SAVE_CHANGES, Resources.Constants.MYCTS, MessageBoxButtons.YesNo, MessageBoxIcon.Information); if (result.Equals(DialogResult.Yes)) { Update1stLevelBL.Update1stLevel(this.Parameters[0], this.Parameters[1], txtStar1name.Text, 0); SetProfileChangesBL.SetProfile(Login.PCC, Login.Agent, this.Parameters[1], string.Empty, DateTime.Now); CatAllStarsBL.ListAllStars.Clear(); ucProfileSearch.star1Info.Clear(); ucProfileSearch.star1Info = Star1stLevelInfoBL.GetStar1stLevelInfo(this.Parameters[0], txtStar1name.Text); frmProfiles._ucProfileSearch = null; LoaderProfiles.AddToPanel(LoaderProfiles.Zone.Modal_Profile, this, Resources.Profiles.Constants.UC_PROFILE_INFO_DISPLAY); } else { frmProfiles._ucProfileSearch = null; LoaderProfiles.AddToPanel(LoaderProfiles.Zone.Modal_Profile, this, Resources.Profiles.Constants.UC_WELCOME_PROFILES); } } else if (this.Parameters.Length.Equals(3)) { DialogResult result = MessageBox.Show(Resources.Profiles.Constants.SAVE_CHANGES, Resources.Constants.MYCTS, MessageBoxButtons.YesNo, MessageBoxIcon.Information); if (result.Equals(DialogResult.Yes)) { //Update2ndLevelBL.Update2ndLevel(this.Parameters[0], this.Parameters[1], this.Parameters[2], txtStar2Name.Text); SetProfileChangesBL.SetProfile(Login.PCC, Login.Agent, this.Parameters[1], this.Parameters[2], DateTime.Now); CatAllStarsBL.ListAllStars.Clear(); ucProfileSearch.star1Info.Clear(); ucProfileSearch.star2Info.Clear(); ucProfileSearch.star1Info = Star1stLevelInfoBL.GetStar1stLevelInfo(this.Parameters[0], this.Parameters[1]); ucProfileSearch.star2Info = Star2ndLevelInfoBL.GetStar2ndLevelInfo(this.Parameters[0], this.Parameters[1], txtStar2Name.Text); frmProfiles._ucProfileSearch = null; LoaderProfiles.AddToPanel(LoaderProfiles.Zone.Modal_Profile, this, Resources.Profiles.Constants.UC_PROFILE_INFO_DISPLAY); } else { frmProfiles._ucProfileSearch = null; LoaderProfiles.AddToPanel(LoaderProfiles.Zone.Modal_Profile, this, Resources.Profiles.Constants.UC_WELCOME_PROFILES); } } } }
/// <summary> /// Carga informacion de perfil elegido por el usuario /// </summary> private void SetProfileInfo() { int indexProfile = listViewProfiles.SelectedIndices[0]; if (StarsList[indexProfile].Level.Equals(Resources.Profiles.Constants.STAR_LEVEL_ONE)) { ucProfileSearch.star1Info.Clear(); ucProfileSearch.star2Info.Clear(); ucProfileSearch.star1Info = Star1stLevelInfoBL.GetStar1stLevelInfo(StarsList[indexProfile].PccId, StarsList[indexProfile].StarName); AccessProfile(ucProfileSearch.star1Info[0].Level1); } else if (StarsList[indexProfile].Level.Equals(Resources.Profiles.Constants.STAR_LEVEL_TWO)) { ucProfileSearch.star1Info.Clear(); ucProfileSearch.star2Info.Clear(); ucProfileSearch.star1Info = Star1stLevelInfoBL.GetStar1stLevelInfo(StarsList[indexProfile].PccId, StarsList[indexProfile].Star1Ref); ucProfileSearch.star2Info = Star2ndLevelInfoBL.GetStar2ndLevelInfo(StarsList[indexProfile].PccId, StarsList[indexProfile].Star1Ref, StarsList[indexProfile].StarName); AccessProfile(ucProfileSearch.star2Info[0].Level2); } }
/// <summary> /// Crea el perfil de primer nivel /// </summary> private void ContinueCreatingProfile() { //string send = "*S"; //string sabreAnswer = string.Empty; string textValue = string.Empty; //using (CommandsAPI objCommand = new CommandsAPI()) //{ // sabreAnswer = objCommand.SendReceive(send, 0, 0); //} //int col = 0; //int row = 0; //CommandsQik.searchResponse(sabreAnswer, ".", ref row, ref col); //if (row > 0) //{ // CommandsQik.CopyResponse(sabreAnswer, ref pcc, 1, 1, 4); //} if (string.IsNullOrEmpty(this.Parameters[0])) { pcc = Login.PCC; } else { pcc = this.Parameters[0]; } //SetStarsLevel2BL.AddStarslevel2(pcc, ProfileNameFirstLevel, ProfileNameSecondLevel, true, ); if (!string.IsNullOrEmpty(txtStreetAndNumber.Text)) { textValue = string.Format("DIRECCIÓN PERSONAL: {0}, {1}, {2}, {3}, {4}", txtStreetAndNumber.Text, txtColony.Text, txtCP.Text, txtState.Text, txtCity.Text); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, textValue, ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtNames.Text) && string.IsNullOrEmpty(txtLastName.Text)) { textValue = string.Format("NOMBRE COMPLETO: {0} {1} {2} {3}", txtNames.Text, txtNames2.Text, txtLastName.Text, txtLastName2.Text); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, textValue, ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtOcupation.Text)) { textValue = string.Format("OCUPACIÓN: {0}", txtOcupation.Text); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, textValue, ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtSeat.Text)) { textValue = string.Format("PREFERENCIA DE ASIENTO: {0}", txtSeat.Text); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, textValue, ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtFamiliarName1.Text)) { textValue = string.Format("FAMILIAR : {0} {1} {2}", txtFamiliarName1.Text, (!string.IsNullOrEmpty(txtFamiliarLastname1.Text)? txtFamiliarLastname1.Text : FamiliarLastName), txtPassengerType1.Text); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, textValue, ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtFamiliarName2.Text)) { textValue = string.Format("FAMILIAR : {0} {1} {2}", txtFamiliarName2.Text, (!string.IsNullOrEmpty(txtFamiliarLastname2.Text) ? txtFamiliarLastname2.Text : FamiliarLastName), txtPassengerType2.Text); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, textValue, ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtFamiliarName3.Text)) { textValue = string.Format("FAMILIAR : {0} {1} {2}", txtFamiliarName3.Text, (!string.IsNullOrEmpty(txtFamiliarLastname3.Text) ? txtFamiliarLastname3.Text : FamiliarLastName), txtPassengerType3.Text); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, textValue, ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtFamiliarName4.Text)) { textValue = string.Format("FAMILIAR : {0} {1} {2}", txtFamiliarName4.Text, (!string.IsNullOrEmpty(txtFamiliarLastName4.Text) ? txtFamiliarLastName4.Text : FamiliarLastName), txtPassengerType4.Text); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, textValue, ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtFamiliarName5.Text)) { textValue = string.Format("FAMILIAR : {0} {1} {2}", txtFamiliarName5.Text, (!string.IsNullOrEmpty(txtFamiliarLastName5.Text) ? txtFamiliarLastName5.Text : FamiliarLastName), txtPassengerType5.Text); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, textValue, ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtComment1.Text)) { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, txtComment1.Text, ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtComment2.Text)) { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, txtComment2.Text, ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtComment3.Text)) { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, txtComment3.Text, ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtCreditCardNumber.Text)) { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, string.Format("TARJETA DE CREDITO PARA AUTO/HOTEL: {0}{1} {2}-{3} {4}", txtCreditCardCode.Text, txtCreditCardNumber.Text, txtCCVigencyMonth.Text, txtCCVigencyYear.Text, txtCCLastName.Text), ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtHotelNumber1.Text)) { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, string.Format("PREFERENCIA HOTEL: {0}{1}", txtHotelCode1.Text, txtHotelNumber1.Text), ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtHotelNumber2.Text)) { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, string.Format("PREFERENCIA HOTEL: {0}{1}", txtHotelCode2.Text, txtHotelNumber2.Text), ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtCarAgencyNumber1.Text)) { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, string.Format("PREFERENCIA ARRENDADORA: {0}{1}", txtCarAgencyCode1.Text, txtCarAgencyNumber1.Text), ref ucCreateProfileSecondLevel.profileList); } if (!string.IsNullOrEmpty(txtCarAgencyNumber2.Text)) { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, string.Format("PREFERENCIA ARRENDADORA: {0}{1}", txtCarAgencyCode2.Text, txtCarAgencyNumber2.Text), ref ucCreateProfileSecondLevel.profileList); } DateTime date = DateTime.Now; foreach (ListItem Content in ucCreateProfileSecondLevel.profileList) { SetStarsLevel2InfoBL.AddStarsLevel2Info(pcc, ProfileNameFirstLevel, ProfileNameSecondLevel, Content.Value, Content.Text, date, false); } Update1stLevelBL.Update1stLevel(pcc, ProfileNameFirstLevel, string.Empty, 1); ucProfileSearch.star1Info = Star1stLevelInfoBL.GetStar1stLevelInfo(pcc, ProfileNameFirstLevel); ucProfileSearch.star2Info = Star2ndLevelInfoBL.GetStar2ndLevelInfo(pcc, ProfileNameFirstLevel, ProfileNameSecondLevel); frmProfiles._ucProfileSearch = null; frmProfiles frm = this.ParentForm as frmProfiles; frm.Width = frm.MinWidth; frm.Height = frm.MinHeight; frm.CenterForm(); frm.IsMinSize = true; CatAllStarsBL.ListAllStars.Clear(); LoaderProfiles.AddToPanel(LoaderProfiles.Zone.Modal_Profile, this, Resources.Profiles.Constants.UC_PROFILE_INFO_DISPLAY); }
/// <summary> /// Crea el perfil de primer nivel /// </summary> private void CreateProfile() { //string send = "*S"; //string sabreAnswer = string.Empty; string pcc = string.Empty; string textValue = string.Empty; List <ListItem> profileList = new List <ListItem>(); //using (CommandsAPI objCommand = new CommandsAPI()) //{ // sabreAnswer = objCommand.SendReceive(send); //} //int col = 0; //int row = 0; //CommandsQik.searchResponse(sabreAnswer, ".", ref row, ref col); //if (row > 0) //{ // CommandsQik.CopyResponse(sabreAnswer, ref pcc, 1, 1, 4); //} pcc = txtPCC.Text; if (string.IsNullOrEmpty(txtPCC.Text)) { pcc = Login.PCC; } SetStarsLevel1BL.AddStarslevel1(pcc, txtProfileName.Text, false, true); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_S, txtEnterpriseName.Text, ref profileList); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_A, string.Concat(Resources.Profiles.Constants.COMMAND_NINE, txtPhone.Text, (!string.IsNullOrEmpty(txtExt.Text)) ? string.Concat(Resources.Profiles.Constants.COMMAND_X, txtExt.Text) : string.Empty), ref profileList); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_A, string.Concat(Resources.Profiles.Constants.COMMAND_DK, txtDK.Text), ref profileList); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_P, txtTravelPolicy1.Text, ref profileList); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_P, txtTravelPolicy2.Text, ref profileList); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_P, txtTravelPolicy3.Text, ref profileList); if (txtDK.Text != @"INSTOP") { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_A, string.Concat(Resources.Profiles.Constants.COMMAND_FIVE_SLASH, txtSocialReason.Text), ref profileList); textValue = string.Format("5/{0}{1}{2},{3}", txtStreet.Text, string.Concat(Resources.Profiles.Constants.AST, txtNumberExt.Text), (!string.IsNullOrEmpty(txtNumberInt.Text)) ? string.Concat(Resources.Profiles.Constants.AST, txtNumberInt.Text) : string.Empty, txtColony.Text); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_A, textValue, ref profileList); textValue = string.Format("5/{0}, {1}, {2}", txtDelorMunicipality.Text, txtCity.Text, txtState.Text); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_A, textValue, ref profileList); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_A, string.Concat(Resources.Profiles.Constants.COMMAND_FIVE_SLASH, txtPostalCode.Text), ref profileList); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_A, string.Concat(Resources.Profiles.Constants.COMMAND_FIVE_SLASH, txtRFC1.Text, txtRFC2.Text, txtRFC3.Text), ref profileList); } if (!string.IsNullOrEmpty(txtCreditCardCode.Text) && !string.IsNullOrEmpty(txtCreditCardNumber.Text)) { textValue = (!string.IsNullOrEmpty(txtExpirationDateMonth.Text) && !string.IsNullOrEmpty(txtExpirationDateYear.Text)) ? string.Format("-{0}/{1}", txtExpirationDateMonth.Text, txtExpirationDateYear.Text) : string.Empty; SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, string.Concat(txtCreditCardCode.Text, txtCreditCardNumber.Text, textValue), ref profileList); } SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, string.Concat("CONTACTO EMPRESA:", " ", txtEnterpriseContact.Text), ref profileList); SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, string.Concat("EMAIL CONTACTO:", " ", txtEmailContact.Text), ref profileList); if (!string.IsNullOrEmpty(txtComment1.Text)) { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, txtComment1.Text, ref profileList); } if (!string.IsNullOrEmpty(txtComment2.Text)) { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, txtComment2.Text, ref profileList); } if (!string.IsNullOrEmpty(txtComment3.Text)) { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, txtComment3.Text, ref profileList); } SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, string.Concat(Resources.Profiles.Constants.LABEL_PROFILE_CREATED_BY, " ", txtCreateBy.Text), ref profileList); if (!string.IsNullOrEmpty(txtPassword.Text)) { SetCategoryValue(Resources.Profiles.Constants.LINE_TYPE_N, string.Concat(Resources.Profiles.Constants.LABEL_PASSWORD, txtPassword.Text), ref profileList); } DateTime date = DateTime.Now; foreach (ListItem Content in profileList) { SetStarsLevel1InfoBL.AddStarslevel1Info(pcc, txtProfileName.Text, Content.Value, Content.Text, date, false); } ucProfileSearch.star2Info.Clear(); ucProfileSearch.star1Info = Star1stLevelInfoBL.GetStar1stLevelInfo(pcc, txtProfileName.Text); frmProfiles._ucProfileSearch = null; frmProfiles frm = this.ParentForm as frmProfiles; frm.Width = frm.MinWidth; frm.Height = frm.MinHeight; frm.CenterForm(); frm.IsMinSize = true; CatAllStarsBL.ListAllStars.Clear(); LoaderProfiles.AddToPanel(LoaderProfiles.Zone.Modal_Profile, this, Resources.Profiles.Constants.UC_PROFILE_INFO_DISPLAY); }
/// <summary> /// Carga informacion de perfil elegido por el usuario /// </summary> private void SetProfileInfo() { int indexProfile = 0; if (listViewProfiles.SelectedIndices.Count > 0) { indexProfile = listViewProfiles.SelectedIndices[0]; } var objGetStar1DetailsBL = new GetStar1DetailsBL(); // Swhichea entre el obtener el perfil en el esquema anterior y el nuevo if (StarsList[indexProfile].Level.Equals(Resources.Profiles.Constants.STAR_LEVEL_ONE)) { if (StarsList[indexProfile].IsNew) { _objStar1Details = Getprofile1Level(StarsList[indexProfile].PccId, StarsList[indexProfile].StarName); star1Info = objProfilesMethods.FormatSabreProfile1L(_objStar1Details); AccessProfile(star1Info[0].Level1); } else { star1Info = Star1stLevelInfoBL.GetStar1stLevelInfo(StarsList[indexProfile].PccId, StarsList[indexProfile].StarName); DialogResult result = MessageBox.Show("Para usar este perfil es necesario actualizarlo al nuevo módulo de perfiles \n¿Desea continuar?", @"Actualizacion de perfil", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (result == DialogResult.Yes) { isMessageUpdateShow = true; newFormat = true; if (AccessProfile(star1Info[0].Level1)) { var uProfiles = new frmUpdateProfiles(this.ParentForm, "First"); uProfiles.ShowDialog(); } return; } } } else if (StarsList[indexProfile].Level.Equals(Resources.Profiles.Constants.STAR_LEVEL_TWO)) { _objStar1Details = Getprofile1Level(StarsList[indexProfile].PccId, StarsList[indexProfile].Star1Ref); star1Info = objProfilesMethods.FormatSabreProfile1L(_objStar1Details); if (StarsList[indexProfile].IsNew) { _star2D = Getprofile2Level(StarsList[indexProfile].PccId, StarsList[indexProfile].Star1Ref, StarsList[indexProfile].StarName, StarsList[indexProfile].DK); //_star2D = Getprofile2Level(StarsList[indexProfile].Email, StarsList[indexProfile].DK); ObjStar2Details = _star2D; star2Info = objProfilesMethods.FormatSabreProfile2L(_star2D); AccessProfile(star2Info[0].Level2); } else { if (!GetStar1stLevelByStar2LevelBL.GetStar1stLevelByStar2Level(StarsList[indexProfile].Star1Ref, StarsList[indexProfile].PccId)) { MessageBox.Show("No es posible actualizar este perfil ya que el perfil de primer nivel al que pertenece " + StarsList[indexProfile].Star1Ref + " aún no está actualizado", "No es posible Actualizar", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } else { star2Info = Star2ndLevelInfoBL.GetStar2ndLevelInfo(StarsList[indexProfile].PccId, StarsList[indexProfile].Star1Ref, StarsList[indexProfile].StarName); DialogResult result = MessageBox.Show("Para usar este perfil es necesario actualizarlo al nuevo módulo de perfiles \n¿Desea continuar?", @"Actualizacion de perfil", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (result == DialogResult.Yes) { newFormat = true; isMessageUpdateShow = true; if (AccessProfile(star2Info[0].Level2)) { var frm = this.ParentForm as frmProfiles; newFormat = true; var fe = new frmUpdateProfiles(this.ParentForm, "Second"); fe.ShowDialog(); } return; } } } } }