Exemple #1
0
 public EditorDialogMultipleChoiceValues(CampaignQuestionnaire oQuestionnaire, PropertyGridControl sourcePropertyGrid)
 {
     InitializeComponent();
     sourcePG = sourcePropertyGrid;
     campaignQuestionnaire = oQuestionnaire;
     answerOptionList = campaignQuestionnaire.Form.Settings.AnswerOptions;
     CreateEditorRows();
 }
Exemple #2
0
 public EditorDialogAnswerOptions(CampaignQuestionnaire oQuestionnaire, PropertyGridControl sourcePropertyGrid)
 {
     InitializeComponent();
     this.KeyPreview = true;
     sourcePG = sourcePropertyGrid;
     campaignQuestionnaire = oQuestionnaire;
     answerOptionList = campaignQuestionnaire.Form.Settings.AnswerOptions;
     CreateEditorRows();
 }
Exemple #3
0
 public EditorDialogOtherChoices(CampaignQuestionnaire oQuestionnaire, 
     PropertyGridControl sourcePropertyGrid,
     OtherChoiceOptions options = OtherChoiceOptions.OtherChoice)
 {
     InitializeComponent();
     sourcePG = sourcePropertyGrid;
     campaignQuestionnaire = oQuestionnaire;
     answerOptionList = campaignQuestionnaire.Form.Settings.AnswerOptions;
     oChoiceOption = options;
     CreateEditorRows();
 }
Exemple #4
0
        private void BindPropertyGrid(string questionTypeConstants, CampaignQuestionnaire Questionnaire)
        {
            CampaignQuestionnaire oQuestionnaire = null;

            if (Questionnaire != null) {
                oQuestionnaire = Questionnaire;
                if(oQuestionnaire.Form.Settings.Label == "[Sample label]")
                    oQuestionnaire.Form.Settings.Label = "";
            } else {
                oQuestionnaire = CampaignQuestionnaire.Instanciate(questionTypeConstants);
                oQuestionnaire.Form.Settings.Label = "";
            }
            int langId = 0;
            var obj = gridViewQuestion.GetFocusedRow();
            if (obj != null) {
                DataRowView drRowView = (DataRowView)obj;
                oQuestionnaire.Form.Settings.QuestionText = drRowView.Row["question"].ToString();
                oQuestionnaire.Form.Settings.QuestionHelp = drRowView.Row["helptext"].ToString();
                var langitem = lookUpEditLanguage.EditValue;
                if (langitem != null) {
                    langId = int.Parse(langitem.ToString());
                    var lang = BPContext.languages.FirstOrDefault(x => x.id == langId);
                    if (lang != null)
                        oQuestionnaire.Form.Settings.DataBindings.language_code = lang.code;
                }
            }
            var binding = oQuestionnaire.Form.Settings.DataBindings;
            if (string.IsNullOrEmpty(binding.language_code))
                binding.language_code = "SE";

            binding.account_level = (bool)rgLevel.EditValue;

            currentType = questionTypeConstants;
            this.layoutControlGroupPreview.BeginUpdate();
            //this.layoutControlGroupPreview.Clear();
            DisposeGroupControls(this.layoutControlGroupPreview);
            if (questionTypeConstants == QuestionTypeConstants.Dropbox) {
                Dropbox oDropbox = new Dropbox(this.layoutControlPreview);
                oDropbox.DisableSelection = true;
                oDropbox.ToolTipController = defaultToolTipController1;
                oDropbox.Questionnaire = oQuestionnaire;
                oDropbox.BindControls();
                this.layoutControlGroupPreview.Add(oDropbox.ControlGroup);
            } else if (questionTypeConstants == QuestionTypeConstants.Textbox) {
                Textbox oTextbox = new Textbox(this.layoutControlPreview);
                oTextbox.DisableSelection = true;
                oTextbox.ToolTipController = defaultToolTipController1;
                oTextbox.Questionnaire = oQuestionnaire;
                oTextbox.BindControls();
                this.layoutControlGroupPreview.Add(oTextbox.ControlGroup);
            } else if (questionTypeConstants == QuestionTypeConstants.MultipleChoice) {
                Multiplechoice oMultipleChoice = new Multiplechoice(this.layoutControlPreview);
                oMultipleChoice.DisableSelection = true;
                oMultipleChoice.ToolTipController = defaultToolTipController1;
                oMultipleChoice.Questionnaire = oQuestionnaire;
                oMultipleChoice.BindControls();
                this.layoutControlGroupPreview.Add(oMultipleChoice.ControlGroup);
            } else if (questionTypeConstants == QuestionTypeConstants.Schedule) {
                Schedule oSchedule = new Schedule(this.layoutControlPreview);
                oSchedule.DisableSelection = true;
                oSchedule.ToolTipController = defaultToolTipController1;
                oSchedule.Questionnaire = oQuestionnaire;
                //TODO: Change this during the implementation of component user for account_id
                //oSchedule.Questionnaire.Form.Settings.DataBindings.account_id = "1";
                oSchedule.BindControls();
                this.layoutControlGroupPreview.Add(oSchedule.ControlGroup);
            }
            else if (questionTypeConstants == QuestionTypeConstants.SmartText) {
                SmartText oSmartText = new SmartText(this.layoutControlPreview);
                oSmartText.DisableSelection = true;
                oSmartText.ToolTipController = defaultToolTipController1;
                oSmartText.Questionnaire = oQuestionnaire;
                oSmartText.BindPropertyGrid();
                oSmartText.BindSampleDataTable();
                this.layoutControlGroupPreview.Add(oSmartText.ControlGroup);
            }

            //else if (questionTypeConstants == QuestionTypeConstants.Seminar) {
            //    Seminar oSeminar = new Seminar(this.layoutControlPreview);
            //    oSeminar.DisableSelection = true;
            //    oSeminar.ToolTipController = defaultToolTipController1;
            //    oSeminar.Questionnaire = oQuestionnaire;
            //    //TODO: Change this during the implementation of component user for account_id
            //    oSeminar.Questionnaire.Form.Settings.DataBindings.account_id = "1";
            //    oSeminar.BindControls();
            //    this.layoutControlGroupPreview.Add(oSeminar.ControlGroup);
            //}
            DevExpress.XtraLayout.EmptySpaceItem emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
            emptySpaceItem1.CustomizationFormText = "emptySpaceItemBottom";
            emptySpaceItem1.Name = "emptySpaceItemBottom";
            emptySpaceItem1.ShowInCustomizationForm = false;
            emptySpaceItem1.Size = new System.Drawing.Size(0, 0);
            emptySpaceItem1.Text = "emptySpaceItemBottom";
            emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);

            //add bottom spacer
            this.layoutControlGroupPreview.AddItem(emptySpaceItem1);
            this.layoutControlGroupPreview.EndUpdate();
            this.layoutControlPreview.BestFit();
            var answerOptionList = oQuestionnaire.Form.Settings.AnswerOptions;
            propertyGridControl1.SelectedObject = oQuestionnaire;
        }
Exemple #5
0
 private void BindPropertyGrid(CampaignQuestionnaire Questionnaire)
 {
     BindPropertyGrid(null, Questionnaire);
 }
Exemple #6
0
        public static CampaignQuestionnaire SetQuestionnaireData(CampaignQuestionnaire pQuestionnaire, answer pData)
        {
            if (pQuestionnaire == null || pData == null)
                return pQuestionnaire;

            if (string.IsNullOrEmpty(pQuestionnaire.Form.Settings.DataBindings.answer_id))
                return pQuestionnaire;

            int _AnswerId = int.Parse(pQuestionnaire.Form.Settings.DataBindings.answer_id);
            if (pData != null) {

                /**
                 * private vars.
                 */
                #region Contents
                sub_answers                 _SubAnswer;
                IDropbox                    _iDropbox;
                ITextbox                    _iTextbox;
                IMultipleChoice             _iMultiplechoice;
                ISchedule                   _iSchedule = null;
                ISmartText                  _iSmartText = null;
                IEnumerable<sub_answers>    _lstSubAnswers = null;
                List<MultipleChoiceValue>   _lstMultipleChoices = null;
                List<OtherChoice>           _lstOtherChoices = null;
                List<Attendie>              _lstAttendies = null;
                List<SmartTextValue>        _lstSmartTexts = null;
                Settings                    _Settings = pQuestionnaire.Form.Settings;
                IList<AnswerOption>         _lstAnswerOptions = pQuestionnaire.Form.Settings.AnswerOptions;
                DataBindings                _BindingData = _Settings.DataBindings;
                DropboxValue                _DropBoxValue = null;
                #endregion

                /**
                 * set respective dialog answers.
                 */
                #region Contents
                _Settings.BVOwnership = pData.OwnershipBrightvision;
                _Settings.CustomerOwnership = pData.OwnershipAccount;
                for (int x = 0; x < _lstAnswerOptions.Count; ++x) {
                    switch (pQuestionnaire.Type.ToLower()) {
                        #region Text Box
                        case QuestionTypeConstants.Textbox:
                            _SubAnswer = pData.sub_answers.ElementAtOrDefault(x);
                            if (_SubAnswer != null) {
                                _iTextbox = _lstAnswerOptions[x] as ITextbox;
                                _iTextbox.InputValue = _SubAnswer.answer_text != null ? _SubAnswer.answer_text : string.Empty;
                                _iTextbox.DefaultInputValue = _iTextbox.InputValue;
                            }
                            break;
                        #endregion
                        #region Drop Box
                        case QuestionTypeConstants.Dropbox:
                            _SubAnswer = pData.sub_answers.ElementAtOrDefault(x);
                            if (_SubAnswer != null) {
                                _DropBoxValue = DropboxValue.Instanciate(_SubAnswer.answer_text);
                                _iDropbox = _lstAnswerOptions[x] as IDropbox;
                                _iDropbox.SelectionValue = _DropBoxValue == null ? "" : _DropBoxValue.SelectionValue;
                                _iDropbox.DefaultSelectionValue = _iDropbox.SelectionValue;
                                _iDropbox.SelectionValueIfOther = _DropBoxValue == null ? "" : _DropBoxValue.OtherValue;
                                _iDropbox.DefaultSelectionValueIfOther = _iDropbox.SelectionValueIfOther;
                            }
                            break;
                        #endregion
                        #region Multiple Choice
                        case QuestionTypeConstants.MultipleChoice:
                            /**
                             * if sub_answer_index != -1 if answer is in multiple choice values
                             * if sub_answer_index == -1 if answer is in other choice
                             */
                            _iMultiplechoice = _lstAnswerOptions[x] as IMultipleChoice;
                            _lstMultipleChoices = _iMultiplechoice.MultipleChoiceValues;
                            _lstSubAnswers = from _obj in pData.sub_answers
                                             where _obj.sub_answer_index != -1
                                             select _obj;

                            if (_lstSubAnswers != null && _lstSubAnswers.Count() > 0) {
                                for (int q = 0; q < _lstSubAnswers.Count(); ++q) {
                                    _SubAnswer = _lstSubAnswers.ElementAtOrDefault(q);
                                    if (_SubAnswer != null) {
                                        _lstMultipleChoices[q].Checked = Convert.ToBoolean(_SubAnswer.sub_answer_index);
                                        _lstMultipleChoices[q].TextPrefix = _SubAnswer.answer_text;
                                    }
                                }
                            }

                            _lstOtherChoices = _iMultiplechoice.OtherChoices;
                            _lstSubAnswers = from _obj in pData.sub_answers
                                             where _obj.sub_answer_index == -1
                                             select _obj;

                            if (_lstSubAnswers != null && _lstSubAnswers.Count() > 0) {
                                for (int j = 0; j < _lstSubAnswers.Count(); ++j) {
                                    _SubAnswer = _lstSubAnswers.ElementAtOrDefault(j);
                                    if (_SubAnswer != null) {
                                        _lstOtherChoices[j].InputValue = _SubAnswer.answer_text;
                                        _lstOtherChoices[j].DefaultInputValue = _SubAnswer.answer_text;
                                    }
                                }
                            }
                            break;
                        #endregion
                        #region Schedule & Booking
                        case QuestionTypeConstants.Schedule:
                            /*********************************************************************
                                * Change Log:
                                Note: sub_answer_index = 1 if answer is CalendarSelectedValue => Booking Type
                                    sub_answer_index = 2 if answer is Schedule date InputValue => Sales Person / Resource
                                    sub_answer_index = 3 if answer is StartTime InputValue => ScheduleValue
                                    sub_answer_index = 4 if answer is EndTime InputValue => Null
                                    sub_answer_index = 5 if answer is Attendies => ContactAttendies
                                    sub_answer_index = 6 if answer is MeetingPlaceDetails => Null
                                    sub_answer_index = 7 if answer is OtherChoice => OtherChoice
                            *********************************************************************/
                            _iSchedule = _lstAnswerOptions[x] as ISchedule;

                            /**
                             * set calendar selected value.
                             */
                            _SubAnswer = pData.sub_answers.Where(sa => sa.sub_answer_index == 1).FirstOrDefault();
                            if (_SubAnswer != null) {
                                if (_iSchedule.ScheduleType == null)
                                    _iSchedule.ScheduleType = new ScheduleType();

                                _iSchedule.ScheduleType.ScheduleTypeSelectedValue = _SubAnswer.answer_text;
                            }

                            /**
                             * set schedule date input value.
                             */
                            _SubAnswer = pData.sub_answers.Where(sa => sa.sub_answer_index == 2).FirstOrDefault();
                            if (_SubAnswer != null) {
                                SalesPerson _sp = SalesPerson.Instanciate(_SubAnswer.answer_text);
                                //if (_sp != null && _iSchedule.ScheduleSalesPerson == null) { //DAN: Neglect the other as it could not properly set the correct sales person
                                if (_sp != null)
                                {
                                    _iSchedule.ScheduleSalesPerson = new ScheduleSalesPerson();
                                    _iSchedule.ScheduleSalesPerson.SalesPersonSelectedValue = _sp;
                                }
                            }

                            /**
                             * set start time input value.
                             */
                            _SubAnswer = pData.sub_answers.Where(sa => sa.sub_answer_index == 3).FirstOrDefault();
                            if (_SubAnswer != null)
                                _iSchedule.ScheduleValue = ScheduleValue.Instanciate(_SubAnswer.answer_text);

                            /**
                             * set attendies.
                             */
                            _iSchedule.Attendies.Clear();
                            _lstAttendies = _iSchedule.Attendies;
                            _lstSubAnswers = pData.sub_answers.Where(k => k.sub_answer_index == 5);
                            if (_lstSubAnswers != null && _lstSubAnswers.Count() > 0) {
                                for (int q = 0; q < _lstSubAnswers.Count(); ++q) {
                                    _SubAnswer = _lstSubAnswers.ElementAtOrDefault(q);
                                    if (_SubAnswer != null) {
                                        Attendie _Attendie = Attendie.Instanciate(_SubAnswer.answer_text);
                                        if (_Attendie != null)
                                            _lstAttendies.Add(_Attendie);
                                    }
                                }
                            }

                            /**
                             * set other choices.
                             */
                            _lstOtherChoices = _iSchedule.OtherChoices;
                            _lstSubAnswers = pData.sub_answers.Where(k => k.sub_answer_index == 7);
                            if (_lstSubAnswers != null && _lstSubAnswers.Count() > 0) {
                                for (int j = 0; j < _lstSubAnswers.Count(); ++j) {
                                    _SubAnswer = _lstSubAnswers.ElementAtOrDefault(j);
                                    if (_SubAnswer != null) {
                                        _lstOtherChoices[j].InputValue = _SubAnswer.answer_text;
                                        _lstOtherChoices[j].DefaultInputValue = _SubAnswer.answer_text;
                                    }
                                }
                            }
                            break;
                        #endregion
                        #region Smart Text
                        case QuestionTypeConstants.SmartText:
                            _SubAnswer = pData.sub_answers.ElementAtOrDefault(x);
                            if (_SubAnswer != null) {
                                _iSmartText = _lstAnswerOptions[x] as ISmartText;
                                _lstSmartTexts = SmartTextValue.Instanciate(_SubAnswer.answer_text);
                                _iSmartText.SmartTextValues = _lstSmartTexts;
                            }
                            break;
                        #endregion
                    }
                }
                #endregion

                /**
                 * set binding data values.
                 */
                #region Contents
                if (string.IsNullOrEmpty(_BindingData.language_code))
                    _BindingData.language_code = "SE";

                if (!_BindingData.account_level)
                    _BindingData.contact_id = pData.contact_id != null ? pData.contact_id.ToString() : null;
                else {
                    /**
                     * [@jeff 05.25.2012]: https://brightvision.jira.com/browse/PLATFORM-1438
                     * added error validation for null or empty contact ids.
                     */
                    int _AnswerContactId = pData.contact_id == null ? 0 : Convert.ToInt32(pData.contact_id);
                    int _BindingContactId = 0;
                    try {
                        _BindingContactId = int.Parse(_BindingData.contact_id);
                    }
                    catch {
                        _BindingContactId = 0;
                    }

                    if ((_AnswerContactId > 0 && _BindingContactId > 0) && _AnswerContactId == _BindingContactId)
                        if (!_BindingData.account_level)
                            _BindingData.same_contact_binding = true;
                        else
                            _BindingData.same_contact_binding = false;
                }

                _BindingData.answer_id = pData.id.ToString();
                _BindingData.account_id = pData.accounts_id.ToString();
                _BindingData.questionlayout_id = pData.questionlayout_id.ToString();
                _BindingData.campaign_id = pData.campaigns_id.ToString();
                _BindingData.dialog_id = pData.dialog_id.ToString();
                _BindingData.created_by = pData.created_by.ToString();
                #endregion
            }

            return pQuestionnaire;
        }
Exemple #7
0
        public static void SaveAnswer(CampaignQuestionnaire oQuestionnaire, int pContactId = 0)
        {
            using (BrightPlatformEntities BPContext = new BrightPlatformEntities(UserSession.EntityConnection))
            {
                #region Member Variables
                var settings = oQuestionnaire.Form.Settings;
                var answerOptions = oQuestionnaire.Form.Settings.AnswerOptions;
                var binding = settings.DataBindings;
                sub_answers subanswer = null;
                //answer tempAnswer = null;
                //sub_answers tempSubAnswer = null;

                IDropbox iDropbox = null;
                ITextbox iTextbox = null;
                IMultipleChoice iMultiplechoice = null;
                ISchedule iSchedule = null;
                ISmartText iSmartText = null;
                IEnumerable<sub_answers> subanswersValues = null;
                List<MultipleChoiceValue> listMCV = null;
                List<OtherChoice> listOtherChoice = null;
                List<Attendie> listAttendie = null;
                List<SmartTextValue> listSmartText = null;
                bool IsNew = false;
                #endregion

                string answer_id = binding.answer_id;
                int int_answer_id = (!string.IsNullOrEmpty(answer_id) ? int.Parse(answer_id) : 0);
                var objAnswer = BPContext.answers.Include("sub_answers")
                    .FirstOrDefault(p => p.id == int_answer_id);
                if (objAnswer == null)
                {
                    #region Add Answer Details
                    IsNew = true;
                    //if not exists create new answer
                    objAnswer = new answer();
                    //set dummy values
                    //tempAnswer = BPContext.answers.OrderByDescending(a => a.id).FirstOrDefault();
                    //objAnswer.id = tempAnswer != null ? tempAnswer.id + 1 : 1;
                    objAnswer.account_level = binding.account_level;
                    objAnswer.questionlayout_id = int.Parse(binding.questionlayout_id);
                    objAnswer.accounts_id = int.Parse(binding.account_id);
                    //objAnswer.contact_id = !string.IsNullOrEmpty(binding.contact_id) ? int.Parse(binding.contact_id) : (int?) null;
                    objAnswer.campaigns_id = int.Parse(binding.campaign_id);
                    objAnswer.dialog_id = int.Parse(binding.dialog_id);
                    objAnswer.created_by = UserSession.CurrentUser.UserId;
                    objAnswer.created_timestamp = DateTime.Now;
                    objAnswer.modified_on = DateTime.Now;
                    objAnswer.modified_by = UserSession.CurrentUser.UserId;
                    //set settings
                    objAnswer.OwnershipBrightvision = settings.BVOwnership;
                    objAnswer.OwnershipAccount = settings.CustomerOwnership;
                    #endregion
                }
                //update the value of the schedule_id
                if (!string.IsNullOrEmpty(binding.schedule_id))
                    objAnswer.schedule_id = int.Parse(binding.schedule_id);

                //update account level question to currently selected contact id
                //if (binding.account_level)
                objAnswer.contact_id = !string.IsNullOrEmpty(binding.contact_id) ? int.Parse(binding.contact_id) : (int?)null;

                /**
                 * [@jeff 04.12.2013]: https://brightvision.jira.com/browse/PLATFORM-2742
                 * assign the proper contact id when saving answers.
                 */
                //objAnswer.contact_id = pContactId;

                //bool maxIDset = false;
                for (int x = 0; x < answerOptions.Count; ++x)
                {
                    switch (oQuestionnaire.Type.ToLower())
                    {
                        #region SubAnswer for Textbox Component
                        case QuestionTypeConstants.Textbox:
                            iTextbox = answerOptions[x] as ITextbox;
                            subanswer = objAnswer.sub_answers.ElementAtOrDefault(x);
                            if (subanswer == null)
                            {
                                //if not exists create new subanswer
                                subanswer = new sub_answers();
                                subanswer.answer_text = iTextbox.InputValue != null ? iTextbox.InputValue : string.Empty;
                                subanswer.sub_answer_index = -1;
                                objAnswer.sub_answers.Add(subanswer);
                            }
                            else
                            {
                                subanswer.answer_text = iTextbox.InputValue != null ? iTextbox.InputValue : string.Empty;
                                subanswer.sub_answer_index = -1;
                            }
                            break;
                        #endregion
                        #region SubAnswer for Dropbox Component
                        case QuestionTypeConstants.Dropbox:
                            iDropbox = answerOptions[x] as IDropbox;
                            subanswer = objAnswer.sub_answers.ElementAtOrDefault(x);
                            if (subanswer == null)
                            {
                                //if not exists create new subanswer
                                subanswer = new sub_answers();
                                subanswer.answer_text = new DropboxValue()
                                {
                                    SelectionValue = iDropbox.SelectionValue != null ? iDropbox.SelectionValue : string.Empty,
                                    OtherValue = iDropbox.DefaultSelectionValueIfOther != null ? iDropbox.DefaultSelectionValueIfOther : string.Empty
                                    //OtherValue = iDropbox.SelectionValueIfOther != null ? iDropbox.SelectionValueIfOther : string.Empty
                                }.ToJSONString();
                                subanswer.sub_answer_index = 1;
                                objAnswer.sub_answers.Add(subanswer);
                            }
                            else
                            {
                                subanswer.answer_text = new DropboxValue()
                                {
                                    SelectionValue = iDropbox.SelectionValue != null ? iDropbox.SelectionValue : string.Empty,
                                    OtherValue = iDropbox.DefaultSelectionValueIfOther != null ? iDropbox.DefaultSelectionValueIfOther : string.Empty
                                    //OtherValue = iDropbox.SelectionValueIfOther != null ? iDropbox.SelectionValueIfOther : string.Empty
                                }.ToJSONString();
                                subanswer.sub_answer_index = 1;
                            }
                            break;
                        #endregion
                        #region SubAnswer for MultipleChoice Component
                        case QuestionTypeConstants.MultipleChoice:
                            iMultiplechoice = answerOptions[x] as IMultipleChoice;
                            //Note: sub_answer_index != -1 if answer is in multiple choice values
                            //      sub_answer_index == -1 if answer is in other choice

                            //set multiplechoicevalues
                            listMCV = iMultiplechoice.MultipleChoiceValues;
                            subanswersValues =
                                from obj in objAnswer.sub_answers
                                where obj.sub_answer_index != -1
                                select obj;
                            if (subanswersValues != null && subanswersValues.Count() > 0)
                            {
                                for (int q = 0; q < subanswersValues.Count(); ++q)
                                {
                                    subanswer = subanswersValues.ElementAtOrDefault(q);
                                    if (subanswer != null)
                                    {
                                        subanswer.sub_answer_index = Convert.ToInt16(listMCV[q].Checked);
                                        subanswer.answer_text = listMCV[q].TextPrefix;
                                    }
                                }
                            }
                            else
                            {
                                for (int q = 0; q < iMultiplechoice.MultipleChoiceValues.Count; ++q)
                                {
                                    //if not exists create new subanswer
                                    subanswer = new sub_answers();
                                    subanswer.sub_answer_index = Convert.ToInt16(listMCV[q].Checked);
                                    subanswer.answer_text = listMCV[q].TextPrefix;
                                    objAnswer.sub_answers.Add(subanswer);
                                }
                            }
                            //set otherchoice
                            listOtherChoice = iMultiplechoice.OtherChoices;
                            subanswersValues =
                                from obj in objAnswer.sub_answers
                                where obj.sub_answer_index == -1
                                select obj;
                            if (subanswersValues != null && subanswersValues.Count() > 0)
                            {
                                for (int j = 0; j < subanswersValues.Count(); ++j)
                                {
                                    subanswer = subanswersValues.ElementAtOrDefault(j);
                                    if (subanswer != null)
                                    {
                                        subanswer.answer_text = listOtherChoice[j].InputValue;
                                        if (subanswer.answer_text == null)
                                            subanswer.answer_text = string.Empty;
                                        subanswer.sub_answer_index = -1;
                                    }
                                }
                            }
                            else
                            {
                                for (int j = 0; j < listOtherChoice.Count; ++j)
                                {
                                    //if not exists create new subanswer
                                    subanswer = new sub_answers();
                                    subanswer.answer_text = listOtherChoice[j].InputValue;
                                    if (subanswer.answer_text == null)
                                        subanswer.answer_text = string.Empty;
                                    subanswer.sub_answer_index = -1;
                                    objAnswer.sub_answers.Add(subanswer);
                                }
                            }
                            break;
                        #endregion
                        #region SubAnswer for Schedule Component
                        case QuestionTypeConstants.Schedule:
                            iSchedule = answerOptions[x] as ISchedule;
                            /*********************************************************************
                            * Change Log:
                            Note:   sub_answer_index = 1 if answer is CalendarSelectedValue => Booking Type
                                    sub_answer_index = 2 if answer is Schedule date InputValue => Sales Person / Resource
                                    sub_answer_index = 3 if answer is StartTime InputValue => ScheduleValue
                                    sub_answer_index = 4 if answer is EndTime InputValue => Null
                                    sub_answer_index = 5 if answer is Attendies => ContactAttendies
                                    sub_answer_index = 6 if answer is MeetingPlaceDetails => Null
                                    sub_answer_index = 7 if answer is OtherChoice => OtherChoice
                            *********************************************************************/

                            //set CalendarSelectedValue
                            if (iSchedule.ScheduleType != null)
                            {
                                subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 1).FirstOrDefault();
                                if (subanswer == null)
                                {
                                    //if not exists create new subanswer
                                    subanswer = new sub_answers();
                                    subanswer.answer_text = iSchedule.ScheduleType.ScheduleTypeSelectedValue;
                                    subanswer.sub_answer_index = 1;
                                    objAnswer.sub_answers.Add(subanswer);
                                }
                                else
                                {
                                    subanswer.answer_text = iSchedule.ScheduleType.ScheduleTypeSelectedValue;
                                    subanswer.sub_answer_index = 1;
                                }
                            }
                            if (iSchedule.ScheduleSalesPerson != null && iSchedule.ScheduleSalesPerson.SalesPersonSelectedValue != null)
                            {
                                //set Schedule date InputValue
                                subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 2).FirstOrDefault();
                                if (subanswer == null)
                                {
                                    //if not exists create new subanswer
                                    subanswer = new sub_answers();
                                    subanswer.answer_text = iSchedule.ScheduleSalesPerson.SalesPersonSelectedValue.ToJSONString();
                                    subanswer.sub_answer_index = 2;
                                    objAnswer.sub_answers.Add(subanswer);
                                }
                                else
                                {
                                    subanswer.answer_text = iSchedule.ScheduleSalesPerson.SalesPersonSelectedValue.ToJSONString();
                                    subanswer.sub_answer_index = 2;
                                }
                            }
                            //set StartTime InputValue
                            if (iSchedule.ScheduleValue != null)
                            {
                                subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 3).FirstOrDefault();
                                if (subanswer == null)
                                {
                                    //if not exists create new subanswer
                                    subanswer = new sub_answers();
                                    subanswer.answer_text = iSchedule.ScheduleValue.ToJSONString();
                                    subanswer.sub_answer_index = 3;
                                    objAnswer.sub_answers.Add(subanswer);
                                }
                                else
                                {
                                    subanswer.answer_text = iSchedule.ScheduleValue.ToJSONString();
                                    subanswer.sub_answer_index = 3;
                                }
                            }
                            //set EndTime InputValue
                            //subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 4).FirstOrDefault();
                            //if (subanswer == null) {
                            //    //if not exists create new subanswer
                            //    subanswer = new sub_answers();
                            //    //subanswer.answer_text = iSchedule.EndTime.InputValue != null ? iSchedule.EndTime.InputValue : string.Empty;
                            //    subanswer.sub_answer_index = 4;
                            //    objAnswer.sub_answers.Add(subanswer);
                            //} else {
                            //    //subanswer.answer_text = iSchedule.EndTime.InputValue != null ? iSchedule.EndTime.InputValue : string.Empty;
                            //    subanswer.sub_answer_index = 4;
                            //}
                            //set Attendies
                            listAttendie = iSchedule.Attendies;
                            subanswersValues = objAnswer.sub_answers.Where(k => k.sub_answer_index == 5);
                            int subCount = subanswersValues.Count();
                            int attCount = 0;
                            if (listAttendie == null || listAttendie.Count <= 0)
                            {
                                for (int d = 0; d < subCount; ++d)
                                {
                                    var ans = subanswersValues.ElementAtOrDefault(d);
                                    if (ans != null)
                                        BPContext.sub_answers.DeleteObject(ans);
                                }
                            }
                            else
                            {
                                attCount = listAttendie.Count;
                            }
                            subCount = subanswersValues.Count();
                            //remove existing excess
                            if (subCount > attCount)
                            {
                                int diff = subCount - attCount;
                                for (int j = diff - 1; j < subCount; ++j)
                                {
                                    var subAns = subanswersValues.ElementAtOrDefault(j);
                                    if (subAns != null)
                                        BPContext.sub_answers.DeleteObject(subAns);
                                }
                            }

                            if (attCount > 0)
                            {
                                for (int q = 0; q < attCount; ++q)
                                {
                                    subanswer = subanswersValues.ElementAtOrDefault(q);
                                    if (subanswer != null)
                                    {
                                        subanswer.sub_answer_index = 5;
                                        subanswer.answer_text = listAttendie[q].ToJSONString();
                                    }
                                    else
                                    {
                                        subanswer = new sub_answers();
                                        subanswer.sub_answer_index = 5;
                                        subanswer.answer_text = listAttendie[q].ToJSONString();
                                        objAnswer.sub_answers.Add(subanswer);
                                    }
                                }
                            }

                            //set otherchoice
                            listOtherChoice = iSchedule.OtherChoices;
                            subanswersValues = objAnswer.sub_answers.Where(k => k.sub_answer_index == 7);
                            if (subanswersValues != null && subanswersValues.Count() > 0)
                            {
                                for (int j = 0; j < subanswersValues.Count(); ++j)
                                {
                                    subanswer = subanswersValues.ElementAtOrDefault(j);
                                    if (subanswer != null)
                                    {
                                        subanswer.answer_text = listOtherChoice[j].InputValue;
                                        if (subanswer.answer_text == null)
                                            subanswer.answer_text = string.Empty;
                                        subanswer.sub_answer_index = 7;
                                    }
                                }
                            }
                            else
                            {
                                for (int j = 0; j < listOtherChoice.Count; ++j)
                                {
                                    //if not exists create new subanswer
                                    subanswer = new sub_answers();
                                    subanswer.answer_text = listOtherChoice[j].InputValue;
                                    if (subanswer.answer_text == null)
                                        subanswer.answer_text = string.Empty;
                                    subanswer.sub_answer_index = 7;
                                    objAnswer.sub_answers.Add(subanswer);
                                }
                            }
                            break;
                        #endregion
                        #region SubAnswer for SmartText
                        case QuestionTypeConstants.SmartText:
                            iSmartText = answerOptions[x] as ISmartText;
                            if (iSmartText.SmartTextValues == null || iSmartText.SmartTextValues.Count() < 1)
                                break;

                            subanswer = objAnswer.sub_answers.ElementAtOrDefault(x);
                            if (subanswer == null)
                            {
                                subanswer = new sub_answers();
                                subanswer.answer_text = SmartTextValue.ToJSONString(iSmartText.SmartTextValues);
                                subanswer.sub_answer_index = 0;
                                objAnswer.sub_answers.Add(subanswer);
                            }
                            else
                            {
                                subanswer.answer_text = SmartTextValue.ToJSONString(iSmartText.SmartTextValues);
                                subanswer.sub_answer_index = 0;
                            }
                            break;
                        #endregion
                    }
                }
                try
                {
                    //[@jeff 11.03.2011 #PLATFORM-710]: added modified by and dates
                    objAnswer.modified_on = DateTime.Now;
                    objAnswer.modified_by = UserSession.CurrentUser.UserId;

                    if (IsNew)
                    {
                        BPContext.answers.AddObject(objAnswer);
                    }
                    BPContext.SaveChanges();
                    binding.answer_id = objAnswer.id.ToString();
                    BPContext.FIUpdateContactDialogDate(objAnswer.contact_id, objAnswer.modified_by);
                }
                catch (Exception ex)
                {
                    var x = ex;
                }
            }
        }
Exemple #8
0
        // old implementation
        public static CampaignQuestionnaire BindAnswer(CampaignQuestionnaire oQuestionnaire, answer objAnswer)
        {
            //BrightPlatformEntities BPContext = new BrightPlatformEntities(UserSession.EntityConnection);
            var oQues = oQuestionnaire;
            if (oQues != null ) {
                string answer_id = oQuestionnaire.Form.Settings.DataBindings.answer_id;
                if (string.IsNullOrEmpty(answer_id)) return oQuestionnaire;
                int int_answer_id = int.Parse(answer_id);

               // var objAnswer = BPContext.answers.Include("sub_answers").FirstOrDefault(p => p.id == int_answer_id);
                if (objAnswer != null) {

                    #region AnswerDetails
                    sub_answers subanswer;
                    IDropbox iDropbox;
                    ITextbox iTextbox;
                    IMultipleChoice iMultiplechoice;
                    ISchedule iSchedule = null;
                    ISmartText iSmartText = null;

                    IEnumerable<sub_answers> subanswersValues = null;
                    List<MultipleChoiceValue> listMCV = null;
                    List<OtherChoice> listOtherChoice = null;

                    List<Attendie> listAttendie = null;
                    List<SmartTextValue> listSmartText = null;
                    var settings = oQues.Form.Settings;
                    var answerOptions = oQues.Form.Settings.AnswerOptions;
                    var binding = settings.DataBindings;

                    //set settings
                    settings.BVOwnership = objAnswer.OwnershipBrightvision;
                    settings.CustomerOwnership = objAnswer.OwnershipAccount;

                    #endregion
                    DropboxValue dropboxVal = null;
                    //set answeroptions
                    for (int x = 0; x < answerOptions.Count; ++x) {

                        switch (oQuestionnaire.Type.ToLower()) {
                            #region SubAnswer for Textbox Component
                            case QuestionTypeConstants.Textbox:
                                subanswer = objAnswer.sub_answers.ElementAtOrDefault(x);
                                if(subanswer != null) {
                                    iTextbox = answerOptions[x] as ITextbox;
                                    iTextbox.InputValue = subanswer.answer_text != null ? subanswer.answer_text : string.Empty;
                                    iTextbox.DefaultInputValue = iTextbox.InputValue;
                                }
                                break;
                            #endregion
                            #region SubAnswer for Dropbox Component
                            case QuestionTypeConstants.Dropbox:
                                subanswer = objAnswer.sub_answers.ElementAtOrDefault(x);
                                if (subanswer != null) {
                                    dropboxVal = DropboxValue.Instanciate(subanswer.answer_text);
                                    iDropbox = answerOptions[x] as IDropbox;
                                    iDropbox.SelectionValue = dropboxVal == null? "": dropboxVal.SelectionValue;
                                    iDropbox.DefaultSelectionValue = iDropbox.SelectionValue;
                                    iDropbox.SelectionValueIfOther = dropboxVal == null ? "" : dropboxVal.OtherValue;
                                    iDropbox.DefaultSelectionValueIfOther = iDropbox.SelectionValueIfOther;
                                }
                                break;
                            #endregion
                            #region SubAnswer for MultipleChoice Component
                            case QuestionTypeConstants.MultipleChoice:
                                iMultiplechoice = answerOptions[x] as IMultipleChoice;
                                //Note: sub_answer_index != -1 if answer is in multiple choice values
                                //      sub_answer_index == -1 if answer is in other choice

                                //set multiplechoicevalues
                                listMCV = iMultiplechoice.MultipleChoiceValues;
                                subanswersValues =
                                    from obj in objAnswer.sub_answers
                                    where obj.sub_answer_index != -1
                                    select obj;
                                if (subanswersValues != null && subanswersValues.Count() > 0) {
                                    for (int q = 0; q < subanswersValues.Count(); ++q) {
                                        subanswer = subanswersValues.ElementAtOrDefault(q);
                                        if (subanswer != null) {
                                            listMCV[q].Checked = Convert.ToBoolean(subanswer.sub_answer_index);
                                            listMCV[q].TextPrefix = subanswer.answer_text;
                                        }
                                    }
                                }
                                //set otherchoice
                                listOtherChoice = iMultiplechoice.OtherChoices;
                                subanswersValues =
                                    from obj in objAnswer.sub_answers
                                    where obj.sub_answer_index == -1
                                    select obj;
                                if (subanswersValues != null && subanswersValues.Count() > 0) {
                                    for (int j = 0; j < subanswersValues.Count(); ++j) {
                                        subanswer = subanswersValues.ElementAtOrDefault(j);
                                        if (subanswer != null) {
                                            listOtherChoice[j].InputValue = subanswer.answer_text;
                                            listOtherChoice[j].DefaultInputValue = subanswer.answer_text;
                                        }
                                    }
                                }
                                break;
                            #endregion
                            #region SubAnswer for Schedule Component
                            case QuestionTypeConstants.Schedule:
                                iSchedule = answerOptions[x] as ISchedule;
                                /*********************************************************************
                                 * Change Log:
                                 Note: sub_answer_index = 1 if answer is CalendarSelectedValue => Booking Type
                                       sub_answer_index = 2 if answer is Schedule date InputValue => Sales Person / Resource
                                       sub_answer_index = 3 if answer is StartTime InputValue => ScheduleValue
                                       sub_answer_index = 4 if answer is EndTime InputValue => Null
                                       sub_answer_index = 5 if answer is Attendies => ContactAttendies
                                       sub_answer_index = 6 if answer is MeetingPlaceDetails => Null
                                       sub_answer_index = 7 if answer is OtherChoice => OtherChoice
                                *********************************************************************/
                                //set CalendarSelectedValue
                                subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 1).FirstOrDefault();
                                if (subanswer != null) {
                                    if (iSchedule.ScheduleType == null) iSchedule.ScheduleType = new ScheduleType();
                                    iSchedule.ScheduleType.ScheduleTypeSelectedValue = subanswer.answer_text;
                                }
                                //set Schedule date InputValue
                                subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 2).FirstOrDefault();
                                if (subanswer != null) {
                                    SalesPerson _sp = SalesPerson.Instanciate(subanswer.answer_text);
                                    if (_sp != null && iSchedule.ScheduleSalesPerson == null) {
                                        iSchedule.ScheduleSalesPerson = new ScheduleSalesPerson();
                                        iSchedule.ScheduleSalesPerson.SalesPersonSelectedValue = _sp;
                                        //iSchedule.ScheduleSalesPerson.SalesPersonSelectedValue = SalesPerson.Instanciate(subanswer.answer_text);
                                    }
                                }
                                //set StartTime InputValue
                                subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 3).FirstOrDefault();
                                if (subanswer != null) {
                                    iSchedule.ScheduleValue = ScheduleValue.Instanciate(subanswer.answer_text);
                                }
                                ////set EndTime InputValue
                                //subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 4).FirstOrDefault();
                                //if (subanswer != null) {
                                //    //iSchedule.EndTime.InputValue = subanswer.answer_text;
                                //}
                                //set Attendies
                                iSchedule.Attendies.Clear(); //clear dummy values.
                                listAttendie = iSchedule.Attendies;
                                subanswersValues = objAnswer.sub_answers.Where(k => k.sub_answer_index == 5);
                                if (subanswersValues != null && subanswersValues.Count() > 0) {
                                    for (int q = 0; q < subanswersValues.Count(); ++q) {
                                        subanswer = subanswersValues.ElementAtOrDefault(q);
                                        if (subanswer != null) {
                                            var attendie = Attendie.Instanciate(subanswer.answer_text);
                                            if(attendie != null)
                                                listAttendie.Add(attendie);
                                        }
                                    }
                                }
                                //set otherchoice
                                listOtherChoice = iSchedule.OtherChoices;
                                subanswersValues = objAnswer.sub_answers.Where(k => k.sub_answer_index == 7);
                                if (subanswersValues != null && subanswersValues.Count() > 0) {
                                    for (int j = 0; j < subanswersValues.Count(); ++j) {
                                        subanswer = subanswersValues.ElementAtOrDefault(j);
                                        if (subanswer != null) {
                                            listOtherChoice[j].InputValue = subanswer.answer_text;
                                            listOtherChoice[j].DefaultInputValue = subanswer.answer_text;
                                        }
                                    }
                                }
                                break;
                            #endregion
                            #region SubAnswer for SmartText
                            case QuestionTypeConstants.SmartText:
                                subanswer = objAnswer.sub_answers.ElementAtOrDefault(x);
                                if (subanswer != null){
                                    iSmartText = answerOptions[x] as ISmartText;
                                    listSmartText = SmartTextValue.Instanciate(subanswer.answer_text);
                                    iSmartText.SmartTextValues = listSmartText;
                                }
                                break;
                            #endregion
                        }
                    }
                    //set data bindings

                    if(string.IsNullOrEmpty(binding.language_code))
                        binding.language_code = "SE";

                    if (!binding.account_level) //bypass objanswer contact_id if accountLevel and use currently selected contact
                        binding.contact_id = objAnswer.contact_id != null ? objAnswer.contact_id.ToString() : null;
                    else {
                        /**
                         * [@jeff 05.25.2012]: https://brightvision.jira.com/browse/PLATFORM-1438
                         * added error validation for null or empty contact ids.
                         */
                        int _AnswerContactId = objAnswer.contact_id == null ? 0 : Convert.ToInt32(objAnswer.contact_id);
                        int _BindingContactId = 0;
                        try { _BindingContactId = int.Parse(binding.contact_id); } catch { _BindingContactId = 0; }
                        //if (objAnswer.contact_id != null && Convert.ToInt32(objAnswer.contact_id) == int.Parse(binding.contact_id))
                        if ((_AnswerContactId > 0 && _BindingContactId > 0) && _AnswerContactId == _BindingContactId)
                            if(!binding.account_level)
                                binding.same_contact_binding = true;
                            else
                                binding.same_contact_binding = false;
                    }

                    binding.answer_id = objAnswer.id.ToString();
                    binding.account_id = objAnswer.accounts_id.ToString();
                    binding.questionlayout_id = objAnswer.questionlayout_id.ToString();
                    binding.campaign_id = objAnswer.campaigns_id.ToString();
                    binding.dialog_id = objAnswer.dialog_id.ToString();
                    binding.created_by = objAnswer.created_by.ToString();
                }
            }
            return oQues;
        }
Exemple #9
0
        public static CampaignQuestionnaire BindAnswer(CampaignQuestionnaire oQuestionnaire, BrightPlatformEntities BPContext, int question_id)
        {
            var oQues = oQuestionnaire;
            if (oQues != null) {
                var objAnswer = BPContext.answers.Include("sub_answers").FirstOrDefault(p => p.questions_id == question_id);
                if (objAnswer != null) {
                    sub_answers subanswer;
                    IDropbox iDropbox;
                    ITextbox iTextbox;
                    IMultipleChoice iMultiplechoice;

                    IEnumerable<sub_answers> subanswersMultipleChoiceValues;
                    List<MultipleChoiceValue> listMCV;
                    List<OtherChoice> listOtherChoice;

                    var settings = oQues.Form.Settings;
                    var answerOptions = oQues.Form.Settings.AnswerOptions;
                    var binding = settings.DataBindings;

                    //set settings
                    settings.BVOwnership = objAnswer.OwnershipBrightvision;
                    settings.CustomerOwnership = objAnswer.OwnershipAccount;

                    //set answeroptions
                    for (int x = 0; x < answerOptions.Count; ++x) {
                        if (oQues.Type.ToLower() == QuestionTypeConstants.Dropbox) {
                            subanswer = objAnswer.sub_answers.ElementAtOrDefault(x);
                            if (subanswer != null) {
                                iDropbox = answerOptions[x] as IDropbox;
                                iDropbox.SelectionValue = subanswer.sub_answer_index.ToString();
                                iDropbox.SelectionValueIfOther = subanswer.answer_text;
                            }
                        } else if (oQues.Type.ToLower() == QuestionTypeConstants.Textbox) {
                            subanswer = objAnswer.sub_answers.ElementAtOrDefault(x);
                            if (subanswer != null) {
                                iTextbox = answerOptions[x] as ITextbox;
                                iTextbox.InputValue = subanswer.answer_text;
                            }
                        } else if (oQues.Type.ToLower() == QuestionTypeConstants.MultipleChoice) {
                            //Note: sub_answer_index != -1 if answer is in multiple choice values
                            //      sub_answer_index == -1 if answer is in other choice

                            //set multiplechoicevalues
                            subanswersMultipleChoiceValues =
                                from obj in objAnswer.sub_answers
                                where obj.sub_answer_index != -1
                                select obj;
                            iMultiplechoice = answerOptions[x] as IMultipleChoice;
                            if (subanswersMultipleChoiceValues != null) {
                                for (int q = 0; q < subanswersMultipleChoiceValues.Count(); ++q) {
                                    subanswer = subanswersMultipleChoiceValues.ElementAtOrDefault(q);
                                    if (subanswer != null) {
                                        listMCV = iMultiplechoice.MultipleChoiceValues;
                                        listMCV[q].Checked = Convert.ToBoolean(subanswer.sub_answer_index);
                                    }
                                }
                            }
                            //set otherchoice
                            subanswersMultipleChoiceValues =
                                from obj in objAnswer.sub_answers
                                where obj.sub_answer_index == -1
                                select obj;
                            if (subanswersMultipleChoiceValues != null) {
                                for (int j = 0; j < subanswersMultipleChoiceValues.Count(); ++j) {
                                    subanswer = subanswersMultipleChoiceValues.ElementAtOrDefault(j);
                                    if (subanswer != null) {
                                        listOtherChoice = iMultiplechoice.OtherChoices;
                                        listOtherChoice[j].InputValue = subanswer.answer_text;
                                    }
                                }
                            }
                        }
                    }

                    //set data bindings
                    binding.answer_id = objAnswer.id.ToString();
                    binding.account_id = objAnswer.accounts_id.ToString();
                    binding.contact_id = objAnswer.contact_id.ToString();
                    binding.question_id = question_id.ToString();
                    binding.campaign_id = objAnswer.campaigns_id.ToString();
                    binding.dialog_id = objAnswer.dialog_id.ToString();
                }
            }
            return oQues;
        }
Exemple #10
0
        public static void SaveAnswer(CampaignQuestionnaire oQuestionnaire, BrightPlatformEntities BPContext, int question_id)
        {
            #region Member Variables
            BPContext = new BrightPlatformEntities();
            var settings = oQuestionnaire.Form.Settings;
            var answerOptions = oQuestionnaire.Form.Settings.AnswerOptions;
            var binding = settings.DataBindings;
            sub_answers subanswer = null;
            //answer tempAnswer = null;
            //sub_answers tempSubAnswer = null;

            IDropbox iDropbox = null;
            ITextbox iTextbox = null;
            IMultipleChoice iMultiplechoice = null;
            ISchedule iSchedule = null;
            ISeminar iSeminar = null;

            IEnumerable<sub_answers> subanswersValues = null;
            List<MultipleChoiceValue> listMCV = null;
            List<OtherChoice> listOtherChoice = null;
            List<MeetingPlaceDetail> listMeetingPlace = null;
            List<Attendie> listAttendie = null;

            bool IsNew = false;
            #endregion
            var objAnswer = BPContext.answers.Include("sub_answers").FirstOrDefault(p => p.questions_id == question_id);
            if (objAnswer == null) {
                #region Add Answer Details
                IsNew = true;
                //if not exists create new answer
                objAnswer = new answer();
                //set dummy values
                //tempAnswer = BPContext.answers.OrderByDescending(a => a.id).FirstOrDefault();
                //objAnswer.id = tempAnswer != null ? tempAnswer.id + 1 : 1;
                objAnswer.questions_id = question_id;
                objAnswer.accounts_id = 1;
                objAnswer.contact_id = 1;
                objAnswer.campaigns_id = 1;
                objAnswer.dialog_id = 1;
                objAnswer.created_by = 1;
                objAnswer.created_timestamp = DateTime.Now;
                //set settings
                objAnswer.OwnershipBrightvision = settings.BVOwnership;
                objAnswer.OwnershipAccount = settings.CustomerOwnership;
                #endregion
            }
            //bool maxIDset = false;
            for (int x = 0; x < answerOptions.Count; ++x) {
                switch (oQuestionnaire.Type.ToLower()) {
                    #region SubAnswer for Textbox Component
                    case QuestionTypeConstants.Textbox:
                        iTextbox = answerOptions[x] as ITextbox;
                        subanswer = objAnswer.sub_answers.ElementAtOrDefault(x);
                        if (subanswer == null) {
                            //if not exists create new subanswer
                            subanswer = new sub_answers();
                            subanswer.answer_text = iTextbox.InputValue != null ? iTextbox.InputValue : string.Empty;
                            subanswer.sub_answer_index = -1;
                            objAnswer.sub_answers.Add(subanswer);
                        } else {
                            subanswer.answer_text = iTextbox.InputValue != null ? iTextbox.InputValue : string.Empty;
                            subanswer.sub_answer_index = -1;
                        }
                        break;
                    #endregion
                    #region SubAnswer for Dropbox Component
                    case QuestionTypeConstants.Dropbox:
                        iDropbox = answerOptions[x] as IDropbox;
                        subanswer = objAnswer.sub_answers.ElementAtOrDefault(x);
                        if (subanswer == null) {
                            //if not exists create new subanswer
                            subanswer = new sub_answers();
                            subanswer.sub_answer_index = short.Parse(iDropbox.SelectionValue);
                            subanswer.answer_text = iDropbox.SelectionValueIfOther;
                            if (subanswer.answer_text == null)
                                subanswer.answer_text = string.Empty;
                            objAnswer.sub_answers.Add(subanswer);
                        } else {
                            subanswer.sub_answer_index = short.Parse(iDropbox.SelectionValue);
                            if (subanswer.answer_text == null)
                                subanswer.answer_text = string.Empty;
                        }
                        break;
                    #endregion
                    #region SubAnswer for MultipleChoice Component
                    case QuestionTypeConstants.MultipleChoice:
                        iMultiplechoice = answerOptions[x] as IMultipleChoice;
                        //Note: sub_answer_index != -1 if answer is in multiple choice values
                        //      sub_answer_index == -1 if answer is in other choice

                        //set multiplechoicevalues
                        listMCV = iMultiplechoice.MultipleChoiceValues;
                        subanswersValues =
                            from obj in objAnswer.sub_answers
                            where obj.sub_answer_index != -1
                            select obj;
                        if (subanswersValues != null && subanswersValues.Count() > 0) {
                            for (int q = 0; q < subanswersValues.Count(); ++q) {
                                subanswer = subanswersValues.ElementAtOrDefault(q);
                                if (subanswer != null) {
                                    subanswer.sub_answer_index = Convert.ToInt16(listMCV[q].Checked);
                                    subanswer.answer_text = listMCV[q].TextPrefix;
                                }
                            }
                        } else {
                            for (int q = 0; q < iMultiplechoice.MultipleChoiceValues.Count; ++q) {
                                //if not exists create new subanswer
                                subanswer = new sub_answers();
                                subanswer.sub_answer_index = Convert.ToInt16(listMCV[q].Checked);
                                subanswer.answer_text = listMCV[q].TextPrefix;
                                objAnswer.sub_answers.Add(subanswer);
                            }
                        }
                        //set otherchoice
                        listOtherChoice = iMultiplechoice.OtherChoices;
                        subanswersValues =
                            from obj in objAnswer.sub_answers
                            where obj.sub_answer_index == -1
                            select obj;
                        if (subanswersValues != null && subanswersValues.Count() > 0) {
                            for (int j = 0; j < subanswersValues.Count(); ++j) {
                                subanswer = subanswersValues.ElementAtOrDefault(j);
                                if (subanswer != null) {
                                    subanswer.answer_text = listOtherChoice[j].InputValue;
                                    if (subanswer.answer_text == null)
                                        subanswer.answer_text = string.Empty;
                                    subanswer.sub_answer_index = -1;
                                }
                            }
                        } else {
                            for (int j = 0; j < listOtherChoice.Count; ++j) {
                                //if not exists create new subanswer
                                subanswer = new sub_answers();
                                subanswer.answer_text = listOtherChoice[j].InputValue;
                                if (subanswer.answer_text == null)
                                    subanswer.answer_text = string.Empty;
                                subanswer.sub_answer_index = -1;
                                objAnswer.sub_answers.Add(subanswer);
                            }
                        }
                        break;
                    #endregion
                    #region SubAnswer for Schedule Component
                    case QuestionTypeConstants.Schedule:
                        iSchedule = answerOptions[x] as ISchedule;
                        /*********************************************************************
                         Note: sub_answer_index = 1 if answer is CalendarSelectedValue
                               sub_answer_index = 2 if answer is Schedule date InputValue
                               sub_answer_index = 3 if answer is StartTime InputValue
                               sub_answer_index = 4 if answer is EndTime InputValue
                               sub_answer_index = 5 if answer is Attendies
                               sub_answer_index = 6 if answer is MeetingPlaceDetails
                               sub_answer_index = 7 if answer is OtherChoice
                        *********************************************************************/
                        //set CalendarSelectedValue
                        subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 1).FirstOrDefault();
                        if (subanswer == null) {
                            //if not exists create new subanswer
                            subanswer = new sub_answers();
                            subanswer.answer_text = iSchedule.CalendarOption.CalendarSelectedValue != null ? iSchedule.CalendarOption.CalendarSelectedValue : string.Empty;
                            subanswer.sub_answer_index = 1;
                            objAnswer.sub_answers.Add(subanswer);
                        } else {
                            subanswer.answer_text = iSchedule.CalendarOption.CalendarSelectedValue != null ? iSchedule.CalendarOption.CalendarSelectedValue : string.Empty;
                            subanswer.sub_answer_index = 1;
                        }
                        //set Schedule date InputValue
                        subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 2).FirstOrDefault();
                        if (subanswer == null) {
                            //if not exists create new subanswer
                            subanswer = new sub_answers();
                            subanswer.answer_text = iSchedule.ScheduleDate.InputValue != null ? iSchedule.ScheduleDate.InputValue : string.Empty;
                            subanswer.sub_answer_index = 2;
                            objAnswer.sub_answers.Add(subanswer);
                        } else {
                            subanswer.answer_text = iSchedule.ScheduleDate.InputValue != null ? iSchedule.ScheduleDate.InputValue : string.Empty;
                            subanswer.sub_answer_index = 2;
                        }
                        //set StartTime InputValue
                        subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 3).FirstOrDefault();
                        if (subanswer == null) {
                            //if not exists create new subanswer
                            subanswer = new sub_answers();
                            subanswer.answer_text = iSchedule.StartTime.InputValue != null ? iSchedule.StartTime.InputValue : string.Empty;
                            subanswer.sub_answer_index = 3;
                            objAnswer.sub_answers.Add(subanswer);
                        } else {
                            subanswer.answer_text = iSchedule.StartTime.InputValue != null ? iSchedule.StartTime.InputValue : string.Empty;
                            subanswer.sub_answer_index = 3;
                        }
                        //set EndTime InputValue
                        subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 4).FirstOrDefault();
                        if (subanswer == null) {
                            //if not exists create new subanswer
                            subanswer = new sub_answers();
                            subanswer.answer_text = iSchedule.EndTime.InputValue != null ? iSchedule.EndTime.InputValue : string.Empty;
                            subanswer.sub_answer_index = 4;
                            objAnswer.sub_answers.Add(subanswer);
                        } else {
                            subanswer.answer_text = iSchedule.EndTime.InputValue != null ? iSchedule.EndTime.InputValue : string.Empty;
                            subanswer.sub_answer_index = 4;
                        }
                        //set Attendies
                        listAttendie = iSchedule.Attendies;
                        subanswersValues = objAnswer.sub_answers.Where(k => k.sub_answer_index == 5);
                        if (subanswersValues != null && subanswersValues.Count() > 0) {
                            for (int q = 0; q < subanswersValues.Count(); ++q) {
                                subanswer = subanswersValues.ElementAtOrDefault(q);
                                if (subanswer != null) {
                                    subanswer.sub_answer_index = 5;
                                    subanswer.answer_text = listAttendie[q].ToJSONString();
                                }
                            }
                        } else {
                            for (int q = 0; q < listAttendie.Count; ++q) {
                                //if not exists create new subanswer
                                subanswer = new sub_answers();
                                subanswer.sub_answer_index = 5;
                                subanswer.answer_text = listAttendie[q].ToJSONString();
                                objAnswer.sub_answers.Add(subanswer);
                            }
                        }
                        //set MeetingPlaceDetails
                        listMeetingPlace = iSchedule.MeetingPlaceDetails;
                        subanswersValues = objAnswer.sub_answers.Where(k => k.sub_answer_index == 6);
                        if (subanswersValues != null && subanswersValues.Count() > 0) {
                            for (int q = 0; q < subanswersValues.Count(); ++q) {
                                subanswer = subanswersValues.ElementAtOrDefault(q);
                                if (subanswer != null) {
                                    subanswer.sub_answer_index = 6;
                                    subanswer.answer_text = listMeetingPlace[q].InputValue;
                                }
                            }
                        } else {
                            for (int q = 0; q < listMeetingPlace.Count; ++q) {
                                //if not exists create new subanswer
                                subanswer = new sub_answers();
                                subanswer.sub_answer_index = 6;
                                subanswer.answer_text = listMeetingPlace[q].InputValue;
                                objAnswer.sub_answers.Add(subanswer);
                            }
                        }
                        //set otherchoice
                        listOtherChoice = iSchedule.OtherChoices;
                        subanswersValues = objAnswer.sub_answers.Where(k=>k.sub_answer_index == 7);
                        if (subanswersValues != null && subanswersValues.Count() > 0) {
                            for (int j = 0; j < subanswersValues.Count(); ++j) {
                                subanswer = subanswersValues.ElementAtOrDefault(j);
                                if (subanswer != null) {
                                    subanswer.answer_text = listOtherChoice[j].InputValue;
                                    if (subanswer.answer_text == null)
                                        subanswer.answer_text = string.Empty;
                                    subanswer.sub_answer_index = 7;
                                }
                            }
                        } else {
                            for (int j = 0; j < listOtherChoice.Count; ++j) {
                                //if not exists create new subanswer
                                subanswer = new sub_answers();
                                subanswer.answer_text = listOtherChoice[j].InputValue;
                                if (subanswer.answer_text == null)
                                    subanswer.answer_text = string.Empty;
                                subanswer.sub_answer_index = 7;
                                objAnswer.sub_answers.Add(subanswer);
                            }
                        }
                        break;
                    #endregion
                    #region Sub Answer for Seminar Component
                    case QuestionTypeConstants.Seminar:
                        iSeminar = answerOptions[x] as ISeminar;
                        /*********************************************************************
                         Note: sub_answer_index = 1 if answer is SelectedValue
                               sub_answer_index = 2 if answer is Attendies
                               sub_answer_index = 3 if answer is OtherChoice
                        *********************************************************************/
                        //set SelectedValue
                        subanswer = objAnswer.sub_answers.Where(sa => sa.sub_answer_index == 1).FirstOrDefault();
                        if (subanswer == null) {
                            //if not exists create new subanswer
                            subanswer = new sub_answers();
                            subanswer.answer_text = iSeminar.SeminarSchedule.SelectedValue != null ? iSeminar.SeminarSchedule.SelectedValue : string.Empty;
                            subanswer.sub_answer_index = 1;
                            objAnswer.sub_answers.Add(subanswer);
                        } else {
                            subanswer.answer_text = iSeminar.SeminarSchedule.SelectedValue != null ? iSeminar.SeminarSchedule.SelectedValue : string.Empty;
                            subanswer.sub_answer_index = 1;
                        }
                        //set Attendies
                        listAttendie = iSeminar.Attendies;
                        subanswersValues = objAnswer.sub_answers.Where(k => k.sub_answer_index == 2);
                        if (subanswersValues != null && subanswersValues.Count() > 0) {
                            for (int q = 0; q < subanswersValues.Count(); ++q) {
                                subanswer = subanswersValues.ElementAtOrDefault(q);
                                if (subanswer != null) {
                                    subanswer.sub_answer_index = 2;
                                    subanswer.answer_text = listAttendie[q].ToJSONString();
                                }
                            }
                        } else {
                            for (int q = 0; q < listAttendie.Count; ++q) {
                                //if not exists create new subanswer
                                subanswer = new sub_answers();
                                subanswer.sub_answer_index = 2;
                                subanswer.answer_text = listAttendie[q].ToJSONString();
                                objAnswer.sub_answers.Add(subanswer);
                            }
                        }
                        //set otherchoice
                        listOtherChoice = iSeminar.OtherChoices;
                        subanswersValues = objAnswer.sub_answers.Where(k => k.sub_answer_index == 3);
                        if (subanswersValues != null && subanswersValues.Count() > 0) {
                            for (int j = 0; j < subanswersValues.Count(); ++j) {
                                subanswer = subanswersValues.ElementAtOrDefault(j);
                                if (subanswer != null) {
                                    subanswer.answer_text = listOtherChoice[j].InputValue;
                                    if (subanswer.answer_text == null)
                                        subanswer.answer_text = string.Empty;
                                    subanswer.sub_answer_index = 3;
                                }
                            }
                        } else {
                            for (int j = 0; j < listOtherChoice.Count; ++j) {
                                //if not exists create new subanswer
                                subanswer = new sub_answers();
                                subanswer.answer_text = listOtherChoice[j].InputValue;
                                if (subanswer.answer_text == null)
                                    subanswer.answer_text = string.Empty;
                                subanswer.sub_answer_index = 3;
                                objAnswer.sub_answers.Add(subanswer);
                            }
                        }
                        break;
                    #endregion
                }
            }
            try {
                if(IsNew)
                    BPContext.answers.AddObject(objAnswer);
                BPContext.SaveChanges();
            } catch (Exception ex) {
                var x = ex;
            }
        }
Exemple #11
0
        private void BindPropertyGrid(string questionTypeConstants, CampaignQuestionnaire Questionnaire)
        {
            CampaignQuestionnaire oQuestionnaire = null;
            if (Questionnaire != null) {
                oQuestionnaire = Questionnaire;
            } else {
                oQuestionnaire = CampaignQuestionnaire.Instanciate(questionTypeConstants);
            }
            currentType = questionTypeConstants;
            this.layoutControlGroupPreview.BeginUpdate();
            //this.layoutControlGroupPreview.Clear();
            DisposeGroupControls(this.layoutControlGroupPreview);
            if (questionTypeConstants == QuestionTypeConstants.Dropbox) {
                Dropbox oDropbox = new Dropbox(this.layoutControlPreview);
                oDropbox.DisableSelection = true;
                oDropbox.ToolTipController = defaultToolTipController1;
                oDropbox.Questionnaire = oQuestionnaire;
                oDropbox.BindControls();
                this.layoutControlGroupPreview.Add(oDropbox.ControlGroup);
            } else if (questionTypeConstants == QuestionTypeConstants.Textbox) {
                Textbox oTextbox = new Textbox(this.layoutControlPreview);
                oTextbox.DisableSelection = true;
                oTextbox.ToolTipController = defaultToolTipController1;
                oTextbox.Questionnaire = oQuestionnaire;
                oTextbox.BindControls();
                this.layoutControlGroupPreview.Add(oTextbox.ControlGroup);
            } else if (questionTypeConstants == QuestionTypeConstants.MultipleChoice) {
                Multiplechoice oMultipleChoice = new Multiplechoice(this.layoutControlPreview);
                oMultipleChoice.DisableSelection = true;
                oMultipleChoice.ToolTipController = defaultToolTipController1;
                oMultipleChoice.Questionnaire = oQuestionnaire;
                oMultipleChoice.BindControls();
                this.layoutControlGroupPreview.Add(oMultipleChoice.ControlGroup);
            } else if (questionTypeConstants == QuestionTypeConstants.Schedule) {
                Schedule oSchedule = new Schedule(this.layoutControlPreview);
                oSchedule.DisableSelection = true;
                oSchedule.ToolTipController = defaultToolTipController1;
                oSchedule.Questionnaire = oQuestionnaire;
                //TODO: Change this during the implementation of component user for account_id
                oSchedule.Questionnaire.Form.Settings.DataBindings.account_id = "1";
                oSchedule.BindControls();
                this.layoutControlGroupPreview.Add(oSchedule.ControlGroup);
            }
            //else if (questionTypeConstants == QuestionTypeConstants.Seminar) {
            //    Seminar oSeminar = new Seminar(this.layoutControlPreview);
            //    oSeminar.DisableSelection = true;
            //    oSeminar.ToolTipController = defaultToolTipController1;
            //    oSeminar.Questionnaire = oQuestionnaire;
            //    //TODO: Change this during the implementation of component user for account_id
            //    oSeminar.Questionnaire.Form.Settings.DataBindings.account_id = "1";
            //    oSeminar.BindControls();
            //    this.layoutControlGroupPreview.Add(oSeminar.ControlGroup);
            //}
            DevExpress.XtraLayout.EmptySpaceItem emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
            emptySpaceItem1.CustomizationFormText = "emptySpaceItemBottom";
            emptySpaceItem1.Name = "emptySpaceItemBottom";
            emptySpaceItem1.ShowInCustomizationForm = false;
            emptySpaceItem1.Size = new System.Drawing.Size(0, 0);
            emptySpaceItem1.Text = "emptySpaceItemBottom";
            emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);

            //add bottom spacer
            this.layoutControlGroupPreview.AddItem(emptySpaceItem1);
            this.layoutControlGroupPreview.EndUpdate();
            this.layoutControlPreview.BestFit();
            var answerOptionList = oQuestionnaire.Form.Settings.AnswerOptions;
            repositoryItemButtonEditAnswerOptions.Click += new EventHandler(repositoryItemButtonEditAnswerOptions_ButtonClick);
            propertyGridControl1.DefaultEditors.Add(typeof(List<AnswerOption>), repositoryItemButtonEditAnswerOptions);
            propertyGridControl1.SelectedObject = oQuestionnaire;
        }