private void btnSave_Click(object sender, EventArgs e) { if (!AccountTypeSelectionValid()) { XtraMessageBox.Show("Please choose to which account types this item applies to.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); gridViewStoreItemMatrix.SetColumnError(gridColAcctType, "At least one account type needs to be selected"); return; } Item itm = new Item(); ItemSupplier itmSup = new ItemSupplier(); if (itemId != 0) { itm.LoadByPrimaryKey(itemId); } else { itm.AddNew(); ItemCategory prodCate = new ItemCategory(); prodCate.AddNew(); prodCate.ItemId = itm.ID; prodCate.SubCategoryID = Convert.ToInt32(categoryId); prodCate.Save(); } if (radioGroupABC.EditValue != null) { itm.ABC = Convert.ToInt32(radioGroupABC.EditValue); } if (radioGroupVEN.EditValue != null) { itm.VEN = Convert.ToInt32(radioGroupVEN.EditValue); } itm.IsInHospitalList = ckExculed.Checked; itm.ProcessInDecimal = chkProcessDecimal.Checked; itm.Save(); if (itm.IsInHospitalList) { SaveHubDetails(); } else { // clear out the prefered locations // clear out the pick face locations // make sure that this item could be made not in the list } itmSup.DeleteAllSupForItem(itm.ID); Supplier sup = new Supplier(); for (int i = 0; i < lstSuppliers.CheckedItems.Count; i++) { sup.GetSupplierByName(lstSuppliers.CheckedItems[i].ToString()); itmSup.AddNew(); itmSup.ItemID = itm.ID; itmSup.SupplierID = sup.ID; itmSup.Save(); } ItemProgram progItm = new ItemProgram(); progItm.DeleteAllProgramsForItem(itemId); BLL.Program prog = new BLL.Program(); for (int i = 0; i < lstPrograms.CheckedItems.Count; i++) { prog.GetProgramByName(lstPrograms.CheckedItems[i].ToString()); progItm.AddNew(); progItm.ItemID = itm.ID; progItm.ProgramID = prog.ID; progItm.Save(); } XtraMessageBox.Show("Item Detail is Saved Successfully!", "Confirmation", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); }