public void AddTwoErrorsSameKey()
 {
     IValidationErrors errors = new ValidationErrors();
     errors.AddError(GoodErrorKey, ErrorMessageOne);
     errors.AddError(GoodErrorKey, ErrorMessageTwo);
     Assert.IsFalse(errors.IsEmpty);
     Assert.IsNotNull(errors.GetErrors(GoodErrorKey));
     Assert.AreEqual(2, errors.GetErrors(GoodErrorKey).Count);
 }
Ejemplo n.º 2
0
 public void ResolveErrorsWithoutMessageSource()
 {
     ValidationErrors errors = new ValidationErrors();
     errors.AddError(string.Empty, ErrorMessageOne);
     IList<string> resolvedErrors = errors.GetResolvedErrors(string.Empty, null);
     Assert.AreEqual(ErrorMessageOne.Id, (string)resolvedErrors[0]);
 }
Ejemplo n.º 3
0
        protected void ctlInsert_Click(object sender, ImageClickEventArgs e)
        {
            DbHoliday holiday;

            try
            {
                if (Mode.Equals(FlagEnum.EditFlag))
                {
                    holiday = ScgDbQueryProvider.DbHolidayQuery.FindByIdentity(HolidayId);
                }
                else
                {
                    holiday = new DbHoliday();
                }
                Spring.Validation.ValidationErrors errors = new Spring.Validation.ValidationErrors();
                try
                {
                    if (!string.IsNullOrEmpty(ctlDate.DateValue))
                    {
                        holiday.Date = UIHelper.ParseDate(ctlDate.DateValue).Value;
                    }
                }
                catch
                {
                    errors.AddError("HolidayProfile.Error", new Spring.Validation.ErrorMessage("UniqueHolidayProfile"));
                    throw new ServiceValidationException(errors);
                }
                holiday.HolidayProfileId = Int32.Parse(ctlHolidayProfileIDHidden.Value);
                holiday.Description      = ctlDescription.Text;
                holiday.CreBy            = UserAccount.UserID;
                holiday.CreDate          = DateTime.Now;
                holiday.UpdBy            = UserAccount.UserID;
                holiday.UpdDate          = DateTime.Now;
                holiday.UpdPgm           = UserAccount.CurrentLanguageCode;

                if (Mode.Equals(FlagEnum.EditFlag))
                {
                    DbHolidayService.UpdateHoliday(holiday);
                }
                else
                {
                    DbHolidayService.AddHoliday(holiday);
                }
                Notify_Ok(sender, e);
            }
            catch (ServiceValidationException ex)
            {
                this.ValidationErrors.MergeErrors(ex.ValidationErrors);
            }

            catch (NullReferenceException)
            {
                //Spring.Validation.ValidationErrors errors = new Spring.Validation.ValidationErrors();
                //errors.AddError("InternalOrder.Error", new ErrorMessage("CostCenter and Company Require."));
                //ValidationErrors.MergeErrors(errors);
                //return;
            }
        }
Ejemplo n.º 4
0
        private void CheckDataValueUpdate(DbCostCenter costCenter)
        {
            Spring.Validation.ValidationErrors errors = new Spring.Validation.ValidationErrors();

            if (string.IsNullOrEmpty(costCenter.CostCenterCode))
            {
                errors.AddError("CostCenter.Error", new Spring.Validation.ErrorMessage("RequiredCostCenterCode"));
            }
            if (string.IsNullOrEmpty(costCenter.CompanyCode))
            {
                errors.AddError("CostCenter.Error", new Spring.Validation.ErrorMessage("RequiredCompanyCode"));
            }
            if ((CostCenterCode.ToString() != ctlTextBoxCostCenterCode.Text) && (ScgDbQueryProvider.DbCostCenterQuery.IsDuplicateCostCenterCode(costCenter)))
            {
                errors.AddError("CostCenter.Error", new Spring.Validation.ErrorMessage("DuplicationCostCenterCode"));
            }

            if (!errors.IsEmpty)
            {
                throw new ServiceValidationException(errors);
            }
        }
Ejemplo n.º 5
0
        public void WhenAllValidatorsReturnTrue()
        {
            AnyValidatorGroup vg = new AnyValidatorGroup("true");
            vg.Validators.Add(new TrueValidator());
            vg.Validators.Add(new TrueValidator());
            vg.Validators.Add(new TrueValidator());

            IValidationErrors errors = new ValidationErrors();
            errors.AddError("existingErrors", new ErrorMessage("error", null));

            bool valid = vg.Validate(new object(), errors);

            Assert.IsTrue(valid, "Validation should succeed when all inner validators return true.");
            Assert.AreEqual(0, errors.GetErrors("errors").Count);
            Assert.AreEqual(1, errors.GetErrors("existingErrors").Count);
        }
Ejemplo n.º 6
0
        public void WhenAllValidatorsReturnFalse()
        {
            ValidatorGroup vg = new ValidatorGroup();
            vg.Validators.Add(new FalseValidator());
            vg.Validators.Add(new FalseValidator());
            vg.Validators.Add(new FalseValidator());

            IValidationErrors errors = new ValidationErrors();
            errors.AddError("existingErrors", new ErrorMessage("error", null));

            bool valid = vg.Validate(new object(), errors);

            Assert.IsFalse(valid, "Validation should fail when all inner validators return false.");
            Assert.AreEqual(3, errors.GetErrors("errors").Count);
            Assert.AreEqual(1, errors.GetErrors("existingErrors").Count);
        }
Ejemplo n.º 7
0
        //protected void ctlCostCenterField_OnObjectLookUpReturn(object sender, ObjectLookUpReturnArgs e)
        //{
        //    DbCostCenter costCenter = (DbCostCenter)e.ObjectReturn;
        //    if (costCenter != null)
        //    {
        //        DbCostCenter dbCost = ScgDbQueryProvider.DbCostCenterQuery.FindProxyByIdentity(costCenter.CostCenterID);
        //        if (dbCost != null)
        //        {
        //            ctlCompanyCode.Text = dbCost.CompanyID.CompanyCode.ToString();
        //            ctlCompanyName.Text = dbCost.CompanyID.CompanyName;
        //        }
        //    }
        //    ctlIOUpdatePanel.Update();
        //}

        private void CheckDataValueUpdate(DbInternalOrder io)
        {
            Spring.Validation.ValidationErrors errors = new Spring.Validation.ValidationErrors();
            if (string.IsNullOrEmpty(io.IONumber))
            {
                errors.AddError("InternalOrder.Error", new Spring.Validation.ErrorMessage("RequiredIONumber"));
            }
            if (string.IsNullOrEmpty(io.IOType))
            {
                errors.AddError("InternalOrder.Error", new Spring.Validation.ErrorMessage("RequiredIOType"));
            }
            if (string.IsNullOrEmpty(io.IOText))
            {
                errors.AddError("InternalOrder.Error", new Spring.Validation.ErrorMessage("RequiredIOText"));
            }
            if (io.CompanyID == null || io.CompanyID <= 0)
            {
                errors.AddError("InternalOrder.Error", new Spring.Validation.ErrorMessage("RequiredCompany"));
            }
            if (!(io.ExpireDate == null || io.EffectiveDate == null))
            {
                if (io.ExpireDate < io.EffectiveDate)
                {
                    errors.AddError("InternalOrder.Error", new Spring.Validation.ErrorMessage("ExpireDateMustBeMoreThanEffectiveDate"));
                }
            }
            if (DbIOService.IsExistIO(io) && Mode.Equals(FlagEnum.NewFlag))
            {
                errors.AddError("InternalOrder.Error", new Spring.Validation.ErrorMessage("Duplicate IO Code"));
            }

            if (!errors.IsEmpty)
            {
                throw new ServiceValidationException(errors);
            }
        }
Ejemplo n.º 8
0
        protected void ctlButtonSave_Click(object sender, EventArgs e)
        {
            if (Mode == FlagEnum.EditFlag)
            {
                DbCostCenter costCenter = DbCostCenterService.FindByIdentity(CostCenterID);

                costCenter.ActualPrimaryCosts = ctlChkLock.Checked;
                costCenter.Active             = ctlChkActive.Checked;
                costCenter.CompanyCode        = ctlCompanyTextboxAutoComplete.Text;
                costCenter.Description        = ctlTextBoxDescription.Text;
                //costCenter.CostCenterCode = ctlTextBoxCostCenterCode.Text;
                costCenter.BusinessArea = ctlBusinessArea.Text;
                costCenter.ProfitCenter = ctlProfitCenter.Text;

                try
                {
                    costCenter.Valid  = UIHelper.ParseDate(ctlCalendarValid.DateValue).Value;
                    costCenter.Expire = UIHelper.ParseDate(ctlCalendarExpire.DateValue).Value;
                }
                catch (Exception)
                {
                    Spring.Validation.ValidationErrors errors = new Spring.Validation.ValidationErrors();
                    errors.AddError("CostCenter.Error", new ErrorMessage("Invalid or Null in Datetime fields."));
                    ValidationErrors.MergeErrors(errors);
                    //return;
                }


                costCenter.UpdBy   = UserAccount.UserID;
                costCenter.UpdDate = DateTime.Now.Date;
                costCenter.UpdPgm  = ProgramCode;

                try
                {
                    CheckDataValueUpdate(costCenter);
                    DbCostCenterService.UpdateCostCenter(costCenter);
                    DbCostCenterService.UpdateCostCenterToExp(costCenter);
                }
                catch (ServiceValidationException ex)
                {
                    ValidationErrors.MergeErrors(ex.ValidationErrors);
                    return;
                }
            }
            if (Mode == FlagEnum.NewFlag)
            {
                DbCostCenter costCenter = new DbCostCenter();
                costCenter.CompanyID = new DbCompany();

                costCenter.ActualPrimaryCosts = ctlChkLock.Checked;
                costCenter.Active             = ctlChkActive.Checked;
                costCenter.CompanyCode        = ctlCompanyTextboxAutoComplete.Text;
                costCenter.Description        = ctlTextBoxDescription.Text;
                costCenter.CostCenterCode     = ctlTextBoxCostCenterCode.Text;
                costCenter.BusinessArea       = ctlBusinessArea.Text;
                costCenter.ProfitCenter       = ctlProfitCenter.Text;

                try
                {
                    costCenter.Valid  = UIHelper.ParseDate(ctlCalendarValid.DateValue).Value;
                    costCenter.Expire = UIHelper.ParseDate(ctlCalendarExpire.DateValue).Value;
                }
                catch (Exception)
                {
                    Spring.Validation.ValidationErrors errors = new Spring.Validation.ValidationErrors();
                    errors.AddError("CostCenter.Error", new ErrorMessage("Invalid or Null in Datetime fields."));
                    ValidationErrors.MergeErrors(errors);
                    //return;
                }

                costCenter.UpdBy   = UserAccount.UserID;
                costCenter.UpdDate = DateTime.Now.Date;
                costCenter.UpdPgm  = ProgramCode;
                costCenter.CreBy   = UserAccount.UserID;
                costCenter.CreDate = DateTime.Now.Date;

                try
                {
                    CheckDataValueInsert(costCenter);
                    DbCostCenterService.AddCostCenter(costCenter);
                }
                catch (ServiceValidationException ex)
                {
                    ValidationErrors.MergeErrors(ex.ValidationErrors);
                    return;
                }
            }

            HidePopUp();
            Notify_Ok(sender, e);
        }
        public void WhenSingleValidatorReturnsTrue()
        {
            ExclusiveValidatorGroup vg = new ExclusiveValidatorGroup(Expression.Parse("true"));
            vg.Actions.Add(new ErrorMessageAction("exclusiveError", "exclusiveErrors"));

            vg.Validators.Add(new FalseValidator());
            vg.Validators.Add(new TrueValidator());
            vg.Validators.Add(new FalseValidator());

            IValidationErrors errors = new ValidationErrors();
            errors.AddError("existingErrors", new ErrorMessage("error", null));

            bool valid = vg.Validate(new object(), errors);

            Assert.IsTrue(valid, "Validation should succeed when single inner validator returns true.");
            Assert.AreEqual(0, errors.GetErrors("errors").Count);
            Assert.AreEqual(0, errors.GetErrors("exclusiveErrors").Count);
            Assert.AreEqual(1, errors.GetErrors("existingErrors").Count);

            // ALL validators are called
            Assert.IsTrue( ((BaseTestValidator)vg.Validators[0]).WasCalled );
            Assert.IsTrue( ((BaseTestValidator)vg.Validators[1]).WasCalled );
            Assert.IsTrue( ((BaseTestValidator)vg.Validators[2]).WasCalled );
        }
        public void WhenGroupIsNotValidatedBecauseWhenExpressionReturnsFalse()
        {
            ExclusiveValidatorGroup vg = new ExclusiveValidatorGroup("false");
            vg.Validators.Add(new FalseValidator());
            vg.Validators.Add(new FalseValidator());

            IValidationErrors errors = new ValidationErrors();
            errors.AddError("existingErrors", new ErrorMessage("error", null));

            bool valid = vg.Validate(new object(), errors);

            Assert.IsTrue(valid, "Validation should succeed when group validator is not evaluated.");
            Assert.AreEqual(0, errors.GetErrors("errors").Count);
            Assert.AreEqual(1, errors.GetErrors("existingErrors").Count);
        }
        protected void ctlButtonSave_Click(object sender, EventArgs e)
        {
            #region create DTO for save Role
            role = new SuRole();
            //role = SuRoleService.FindByIdentity(RoleID);
            role.Active = ctlCheckboxActive.Checked;
            role.UpdBy  = UserAccount.UserID;

            role.UpdPgm = base.ProgramCode;
            if (Mode == FlagEnum.EditFlag)
            {
                role.CreBy = UserAccount.UserID;
            }
            role.RoleCode = ctlTextBoxGroupCode.Text;
            role.RoleName = ctlTextBoxGroupName.Text;
            role.ApproveVerifyDocument          = ctlCheckboxApproveVerifyDoc.Checked;
            role.ReceiveDocument                = ctlCheckboxRecieveDoc.Checked;
            role.VerifyDocument                 = ctlCheckboxVerifyDoc.Checked;
            role.ApproveVerifyDocument          = ctlCheckboxApproveVerifyDoc.Checked;
            role.VerifyPayment                  = ctlCheckBoxVerifyPayment.Checked;
            role.ApproveVerifyPayment           = ctlCheckBoxApproveVerifyPayment.Checked;
            role.CounterCashier                 = ctlCheckBoxCounterCashier.Checked;
            role.AllowMultipleApproveAccountant = ctlCheckboxAllowMultipleApproveAccountant.Checked;
            role.AllowMultipleApprovePayment    = ctlCheckBoxAllowMultipleApprovePayment.Checked;
            role.UseCustomizationLimitAmount    = ctlUseCustomizationLimitAmount.Checked;
            role.LimitAmountForVerifierChange   = UIHelper.ParseDouble(ctlLimitAmountForVerifierChange.Text);
            try
            {
                if (!string.IsNullOrEmpty(ctlTextBoxVerifyMax.Text))
                {
                    role.VerifyMaxLimit = UIHelper.ParseDouble(ctlTextBoxVerifyMax.Text);
                }
                else
                {
                    role.VerifyMaxLimit = int.MaxValue;
                }
                if (!string.IsNullOrEmpty(ctlTextBoxVerifyMin.Text))
                {
                    role.VerifyMinLimit = UIHelper.ParseDouble(ctlTextBoxVerifyMin.Text);
                }
                else
                {
                    role.VerifyMinLimit = 0;
                }
                if (!string.IsNullOrEmpty(ctlTextBoxApproveVerifyMax.Text))
                {
                    role.ApproveVerifyMaxLimit = UIHelper.ParseDouble(ctlTextBoxApproveVerifyMax.Text);
                }
                else
                {
                    role.ApproveVerifyMaxLimit = int.MaxValue;
                }
                if (!string.IsNullOrEmpty(ctlTextBoxApproveVerifyMin.Text))
                {
                    role.ApproveVerifyMinLimit = UIHelper.ParseDouble(ctlTextBoxApproveVerifyMin.Text);
                }
                else
                {
                    role.ApproveVerifyMinLimit = 0;
                }
            }
            catch (FormatException)
            {
                Spring.Validation.ValidationErrors errors = new Spring.Validation.ValidationErrors();
                errors.AddError("Role.Error", new ErrorMessage("Limit-field area be accept numeric only."));
                ValidationErrors.MergeErrors(errors);
                return;
            }

            #endregion
            try
            {
                if (Mode == FlagEnum.NewFlag)
                {
                    SuRoleService.AddRole(role);
                }

                else if (Mode == FlagEnum.EditFlag)
                {
                    role.RoleID = RoleID;
                    SuRoleService.UpdateRole(role);
                }
                //Auto computer will refresh workflow permission here.
                Notify_Ok(sender, e);
                HidePopUp();
            }
            catch (ServiceValidationException ex)
            {
                ValidationErrors.MergeErrors(ex.ValidationErrors);
            }
        }
Ejemplo n.º 12
0
		public void MergeErrors()
		{
			ValidationErrors otherErrors = new ValidationErrors();
			const string anotherKey = "anotherKey";
			otherErrors.AddError(anotherKey, ErrorMessageTwo);
			otherErrors.AddError(GoodErrorKey, ErrorMessageTwo);


			IValidationErrors errors = new ValidationErrors();
			errors.AddError(GoodErrorKey, ErrorMessageOne);
			errors.MergeErrors(otherErrors);

			Assert.IsFalse(errors.IsEmpty);
		    IList<ErrorMessage> mergedErrors = errors.GetErrors(GoodErrorKey);
		    Assert.IsNotNull(mergedErrors);
			Assert.AreEqual(2, mergedErrors.Count);
            Assert.AreEqual(ErrorMessageOne, mergedErrors[0]);
            Assert.AreEqual(ErrorMessageTwo, mergedErrors[1]);

			IList<ErrorMessage> otherErrorsForKey = errors.GetErrors(anotherKey);
			Assert.IsNotNull(otherErrorsForKey);
            Assert.AreEqual(1, otherErrorsForKey.Count);
            Assert.AreEqual(ErrorMessageTwo, otherErrorsForKey[0]);
        }
Ejemplo n.º 13
0
        private static void WhenSingleValidatorReturnsTrue(AnyValidatorGroup vg)
        {
            vg.Validators.Add(new FalseValidator());
            vg.Validators.Add(new TrueValidator());
            vg.Validators.Add(new FalseValidator());

            IValidationErrors errors = new ValidationErrors();
            errors.AddError("existingErrors", new ErrorMessage("error", null));

            bool valid = vg.Validate(new object(), errors);

            Assert.IsTrue(valid, "Validation should succeed when single inner validator returns true.");
            Assert.AreEqual(0, errors.GetErrors("errors").Count);
            Assert.AreEqual(1, errors.GetErrors("existingErrors").Count);
        }
        public void AddErrorWithNullKey()
        {
            IValidationErrors errors = new ValidationErrors();

            Assert.Throws <ArgumentNullException>(() => errors.AddError(null, ErrorMessageOne));
        }
		public void AddErrorWithNullKey()
		{
			IValidationErrors errors = new ValidationErrors();
            Assert.Throws<ArgumentNullException>(() => errors.AddError(null, ErrorMessageOne));
		}
        public void ResolvesAndRendersValidationErrorsUsingExplicitlySpecifiedErrorsAndMessageSource()
        {
            TestValidationControl vc = new TestValidationControl();
            vc.ID = "TestControl";

            Page page = new Page();
            page.Controls.Add(vc);

            ValidationErrors errors = new ValidationErrors();
            errors.AddError(vc.Provider, new ErrorMessage("msgId"));
            vc.ValidationErrors = errors;

            StaticMessageSource msgSrc = new StaticMessageSource();
            msgSrc.AddMessage("msgId", CultureInfo.CurrentUICulture, "Resolved Message Text");
            vc.MessageSource = msgSrc;

            vc.TestRender(null);
            Assert.AreEqual("Resolved Message Text", vc.LastErrorsRendered[0]);
        }
Ejemplo n.º 17
0
		public void MergeErrorsWithNull()
		{
			IValidationErrors errors = new ValidationErrors();
			errors.AddError(GoodErrorKey, ErrorMessageOne);
			errors.AddError(GoodErrorKey, ErrorMessageTwo);
			errors.MergeErrors(null);

			// must be unchanged with no Exception thrown...
			Assert.IsFalse(errors.IsEmpty);
			Assert.IsNotNull(errors.GetErrors(GoodErrorKey));
			Assert.AreEqual(2, errors.GetErrors(GoodErrorKey).Count);
		}
Ejemplo n.º 18
0
        public void WhenSingleValidatorReturnsTrue()
        {
            ValidatorGroup vg = new ValidatorGroup(Expression.Parse("true"));
            vg.Validators.Add(new FalseValidator());
            vg.Validators.Add(new TrueValidator());
            vg.Validators.Add(new FalseValidator());

            IValidationErrors errors = new ValidationErrors();
            errors.AddError("existingErrors", new ErrorMessage("error", null));

            bool valid = vg.Validate(new object(), errors);

            Assert.IsFalse(valid, "Validation should fail when single inner validator returns true.");
            Assert.AreEqual(2, errors.GetErrors("errors").Count);
            Assert.AreEqual(1, errors.GetErrors("existingErrors").Count);
        }
Ejemplo n.º 19
0
        public void SerializeErrors()
        {
            ValidationErrors errors = new ValidationErrors();
            ErrorMessageOne = new ErrorMessage("Kissing Leads To Brain Disease", new object[] {"Param11", 5, "Param13"});
            ErrorMessageTwo = new ErrorMessage("This Is Eva Green", new object[] { "Param21", 'g' , new object[] {"Goran", "Milosavljevic"} });
            ErrorMessage ErrorMessageThree = new ErrorMessage("Third error message", null);
            ErrorMessage ErrorMessageFour = new ErrorMessage("Fourth error message", new object[]{});
            errors.AddError("key1", ErrorMessageOne);
            errors.AddError("key1", ErrorMessageTwo);
            errors.AddError("key2", ErrorMessageThree);
            errors.AddError("key3", ErrorMessageFour);

            Stream streamBefore = new MemoryStream();
            Stream streamAfter = new MemoryStream();

            // serialize ValidationErrors
            XmlSerializer serializer = new XmlSerializer(typeof(ValidationErrors));
            serializer.Serialize(streamBefore, errors);
            streamBefore.Position = 0;

            // deserialize ValidationErrors
            ValidationErrors result = (ValidationErrors) serializer.Deserialize(streamBefore);
            
            // serialize ValidationErrors
            serializer.Serialize(streamAfter, result);
            
            // compare ValidationErrors instances
            byte[] byteBefore = new byte[streamBefore.Length];
            byte[] byteAfter = new byte[streamAfter.Length];
            
            Assert.AreEqual(byteAfter.Length, byteBefore.Length);
            
            streamBefore.Position = 0;
            streamAfter.Position = 0;
            streamBefore.Read(byteBefore, 0, (int) streamBefore.Length);
            streamAfter.Read(byteAfter, 0, (int) streamAfter.Length);
            
            Assert.AreEqual(byteBefore, byteAfter);
        }
Ejemplo n.º 20
0
        protected void ctlAdd_Click(object sender, ImageClickEventArgs e)
        {
            Dbpb pb = new Dbpb();

            if (Mode.Equals(FlagEnum.EditFlag))
            {
                pb.Pbid = PBID;
            }

            pb.PBCode        = ctlPBCode.Text;
            pb.Supplementary = ctlSupplementary.Text;
            pb.Active        = ctlActive.Checked;
            pb.UpdBy         = UserAccount.UserID;
            pb.UpdDate       = DateTime.Now;
            pb.UpdPgm        = UserAccount.CurrentLanguageCode;
            pb.CreDate       = DateTime.Now;
            pb.CreBy         = UserAccount.UserID;
            pb.CurrencyID    = UIHelper.ParseLong(ctlMainCurrencyDropdown.SelectedValue);
            pb.RepOffice     = ctlRepOffice.Checked;
            if (!string.IsNullOrEmpty(ctlMainCurrencyDropdown.SelectedValue))
            {
                pb.MainCurrencyID = UIHelper.ParseShort(ctlMainCurrencyDropdown.SelectedValue);
            }
            try
            {
                pb.PettyCashLimit = UIHelper.ParseDouble(ctlPettyCashLimit.Text);
                DbCompany com = ScgDbQueryProvider.DbCompanyQuery.FindByIdentity(UIHelper.ParseLong(ctlCompanyField.CompanyID));
                pb.CompanyCode = com.CompanyCode;
                pb.CompanyID   = com;
            }
            catch (Exception)
            {
                Spring.Validation.ValidationErrors errors = new Spring.Validation.ValidationErrors();
                errors.AddError("PB.Error", new ErrorMessage("Check For Petty Cash Limit or Company Code."));
                ValidationErrors.MergeErrors(errors);
                return;
            }
            try
            {
                // save or update PB
                if (Mode.Equals(FlagEnum.EditFlag))
                {
                    DbPBService.UpdatePB(pb, PbDataSet);
                }
                else
                {
                    long PBId = DbPBService.AddPB(pb, PbDataSet);
                    pb.Pbid = PBId;
                }

                // save or update PBlang
                IList <DbpbLang> list = new List <DbpbLang>();

                foreach (GridViewRow row in ctlPBEditorGrid.Rows)
                {
                    short languageId = UIHelper.ParseShort(ctlPBEditorGrid.DataKeys[row.RowIndex]["LanguageID"].ToString());

                    TextBox  Description = row.FindControl("ctrDescription") as TextBox;
                    TextBox  Comment     = (TextBox)row.FindControl("ctrComment") as TextBox;
                    CheckBox Active      = (CheckBox)row.FindControl("ctlActive") as CheckBox;

                    //comment by oum 02/06/2009
                    //ไม่ต้อง check description is null or empty เพราะว่าไม่ใช่ require field
                    //if ((!string.IsNullOrEmpty(Description.Text)))
                    //{
                    DbpbLang pbLang = new DbpbLang();
                    pbLang.Active      = Active.Checked;
                    pbLang.CreBy       = UserAccount.UserID;
                    pbLang.CreDate     = DateTime.Now;
                    pbLang.Description = Description.Text;
                    pbLang.Comment     = Comment.Text;
                    pbLang.LanguageID  = new DbLanguage(languageId);
                    pbLang.PBID        = pb;
                    pbLang.UpdBy       = UserAccount.UserID;
                    pbLang.UpdDate     = DateTime.Now;
                    pbLang.UpdPgm      = UserAccount.CurrentLanguageCode;
                    list.Add(pbLang);
                    //}
                }

                if (Mode.Equals(FlagEnum.EditFlag))
                {
                    DbPBLangService.UpdatePBLang(list);
                }
                if (Mode.Equals(FlagEnum.NewFlag))
                {
                    DbPBLangService.AddPBLang(list);
                }

                Notify_Ok(sender, e);
            }
            catch (ServiceValidationException ex)
            {
                this.ValidationErrors.MergeErrors(ex.ValidationErrors);
            }
            //}
        }
Ejemplo n.º 21
0
		public void AddErrorWithNullKey()
		{
			IValidationErrors errors = new ValidationErrors();
			errors.AddError(null, ErrorMessageOne);
		}
Ejemplo n.º 22
0
        public void AddErrorWithNullKey()
        {
            IValidationErrors errors = new ValidationErrors();

            errors.AddError(null, ErrorMessageOne);
        }