Пример #1
0
        public override DTO.EditFormData GetData(int id, out Library.DTO.Notification notification)
        {
            notification = new Library.DTO.Notification()
            {
                Type = Library.DTO.NotificationType.Success
            };
            DTO.EditFormData data = new DTO.EditFormData();
            data.Data = new DTO.AppointmentDTO();
            data.Data.AppointmentAttachedFileDTOs = new List <DTO.AppointmentAttachedFileDTO>();
            data.employeeDepartmentDTOs           = new List <DTO.EmployeeDepartmentDTO>();
            data.Data.agendaMngUsers = new List <DTO.AgendaMngUser>();
            //try to get data
            try
            {
                if (id >= 0)
                {
                    using (AgendaMngEntities context = CreateContext())
                    {
                        data.Data = converter.DB2DTO_AppointmentDTO(context.AgendaMng_Appointment_View.Include("AgendaMng_AppointmentAttachedFile_View").FirstOrDefault(o => o.AppointmentID == id));
                    }
                }
                data.employeeDepartmentDTOs = GetListEmployee();
            }
            catch (Exception ex)
            {
                notification.Type    = Library.DTO.NotificationType.Error;
                notification.Message = ex.Message;
            }

            return(data);
        }
Пример #2
0
        public DTO.SupportData GetSupportData(string formName, out Library.DTO.Notification notification)
        {
            DTO.SupportData data = new DTO.SupportData();
            notification = new Library.DTO.Notification()
            {
                Type = Library.DTO.NotificationType.Success
            };
            data.Factories                    = new List <Support.DTO.Factory>();
            data.MeetingLocations             = new List <DTO.MeetingLocation>();
            data.Users                        = new List <Support.DTO.User2>();
            data.Sales                        = new List <DTO.Sale>();
            data.employeeDepartmentDTOs       = new List <Support.DTO.EmployeeDepartmentDTO>();
            data.TimeRange                    = new List <string>();
            data.AppointmentAttachedFileTypes = new List <Support.DTO.AppointmentAttachedFileType>();

            try
            {
                switch (formName)
                {
                case "calendar":
                    foreach (Support.DTO.MeetingLocation location in supportFactory.GetMeetingLocation())
                    {
                        data.MeetingLocations.Add(new DTO.MeetingLocation()
                        {
                            MeetingLocationID = location.MeetingLocationID, MeetingLocationNM = location.MeetingLocationNM, IsSelected = false
                        });
                    }
                    data.Factories = supportFactory.GetFactory();
                    break;

                case "editEvent":
                    data.Users = supportFactory.GetUsers2();
                    data.employeeDepartmentDTOs = supportFactory.GetDepartmentDTOs();
                    data.TimeRange = supportFactory.GetTimeRange();
                    data.AppointmentAttachedFileTypes = supportFactory.GetAppointmentAttachedFileType();
                    using (AgendaMngEntities context = CreateContext())
                    {
                        data.Sales = converter.DB2DTO_SaleList(context.SupportMng_Sale_View.Where(o => o.CompanyID.Value != 3).ToList());     // company different than AVT
                    }
                    break;

                default:
                    break;
                }
            }
            catch (Exception ex)
            {
                notification = new Library.DTO.Notification()
                {
                    Message = ex.Message, Type = Library.DTO.NotificationType.Error
                };
            }
            return(data);
        }
Пример #3
0
        public List <DTO.EmployeeDepartmentDTO> GetListEmployee()
        {
            List <DTO.EmployeeDepartmentDTO> result = new List <DTO.EmployeeDepartmentDTO>();

            try
            {
                using (AgendaMngEntities context = this.CreateContext())
                {
                    result = converter.DB2DTO_EmployeeDepartment(context.AgendaMng_Employee_View.ToList());
                }
            }
            catch { }

            return(result);
        }
Пример #4
0
        public bool DeleteAppointment(int userId, int id, out Library.DTO.Notification notification)
        {
            notification = new Library.DTO.Notification()
            {
                Type = Library.DTO.NotificationType.Success
            };
            try
            {
                using (AgendaMngEntities context = CreateContext())
                {
                    Appointment dbItem = context.Appointment.FirstOrDefault(o => o.AppointmentID == id);
                    if (dbItem == null)
                    {
                        throw new Exception("Event not found!");
                    }
                    if (dbItem.MeetingLocationID.Value != 5 && dbItem.UserID.Value != userId)
                    {
                        throw new Exception("You can not delete this event, please contact the event owner!");
                    }

                    // delete the event
                    foreach (AppointmentAttachedFile dbFile in dbItem.AppointmentAttachedFile.ToArray())
                    {
                        if (!string.IsNullOrEmpty(dbFile.FileUD))
                        {
                            fwFactory.RemoveImageFile(dbFile.FileUD);
                        }
                        dbItem.AppointmentAttachedFile.Remove(dbFile);
                        context.AppointmentAttachedFile.Remove(dbFile);
                    }
                    context.Appointment.Remove(dbItem);
                    context.SaveChanges();

                    return(true);
                }
            }
            catch (Exception ex)
            {
                notification = new Library.DTO.Notification()
                {
                    Message = ex.Message, Type = Library.DTO.NotificationType.Error
                };
                return(false);
            }
        }
Пример #5
0
        public List <DTO.ClientSearchResult> QuickSearchClient(string query, out Library.DTO.Notification notification)
        {
            notification = new Library.DTO.Notification()
            {
                Type = Library.DTO.NotificationType.Success
            };
            List <DTO.ClientSearchResult> data = new List <DTO.ClientSearchResult>();

            //try to get data
            try
            {
                using (AgendaMngEntities context = CreateContext())
                {
                    data = converter.DB2DTO_ClientSearchResultList(context.AgendaMng_function_SearchClient(query).ToList());
                }
            }
            catch (Exception ex)
            {
                notification.Type    = Library.DTO.NotificationType.Error;
                notification.Message = ex.Message;
            }

            return(data);
        }
Пример #6
0
        public override DTO.SearchFormData GetDataWithFilter(System.Collections.Hashtable filters, int pageSize, int pageIndex, string orderBy, string orderDirection, out int totalRows, out Library.DTO.Notification notification)
        {
            notification = new Library.DTO.Notification()
            {
                Type = Library.DTO.NotificationType.Success
            };
            DTO.SearchFormData data = new DTO.SearchFormData();
            data.Data = new List <DTO.AppointmentSearchResultDTO>();
            totalRows = 0;

            //try to get data
            try
            {
                using (AgendaMngEntities context = CreateContext())
                {
                    string MeetingLocations = null;
                    string Factories        = null;
                    int    Month            = Convert.ToInt32(filters["month"]);
                    int    Year             = Convert.ToInt32(filters["year"]);
                    if (filters.ContainsKey("locations") && !string.IsNullOrEmpty(filters["locations"].ToString()))
                    {
                        MeetingLocations = string.Empty;
                        //((Newtonsoft.Json.Linq.JArray)MeetingLocations).ToList
                        foreach (int locationID in Newtonsoft.Json.JsonConvert.DeserializeObject <int[]>(filters["locations"].ToString().Replace("'", "''")))
                        {
                            if (string.IsNullOrEmpty(MeetingLocations))
                            {
                                MeetingLocations += locationID.ToString();
                            }
                            else
                            {
                                MeetingLocations += "," + locationID.ToString();;
                            }
                        }
                    }
                    if (filters.ContainsKey("factories") && !string.IsNullOrEmpty(filters["factories"].ToString()))
                    {
                        Factories = string.Empty;
                        //((Newtonsoft.Json.Linq.JArray)MeetingLocations).ToList
                        foreach (int factoryID in Newtonsoft.Json.JsonConvert.DeserializeObject <int[]>(filters["factories"].ToString().Replace("'", "''")))
                        {
                            if (string.IsNullOrEmpty(Factories))
                            {
                                Factories += factoryID;
                            }
                            else
                            {
                                Factories += "," + factoryID;
                            }
                        }
                    }
                    data.Data = converter.DB2DTO_AppointmentSearchResultDTOList(context.AgendaMng_function_SearchAppointment(MeetingLocations, Factories, Month, Year).ToList());
                }
            }
            catch (Exception ex)
            {
                notification.Type    = Library.DTO.NotificationType.Error;
                notification.Message = ex.Message;
            }

            return(data);
        }
Пример #7
0
        public override bool UpdateData(int userId, int id, ref object dtoItem, out Library.DTO.Notification notification)
        {
            DTO.AppointmentDTO dtoAppointment = ((Newtonsoft.Json.Linq.JObject)dtoItem).ToObject <DTO.AppointmentDTO>();
            notification = new Library.DTO.Notification()
            {
                Type = Library.DTO.NotificationType.Success
            };
            try
            {
                using (AgendaMngEntities context = CreateContext())
                {
                    Appointment dbItem = null;
                    if (id <= 0)
                    {
                        dbItem = new Appointment();
                        if (dtoAppointment.MeetingLocationID == 5) // trip to VN
                        {
                            dbItem.UserID = dtoAppointment.UserID;
                        }
                        else
                        {
                            dbItem.UserID = userId;
                        }
                        context.Appointment.Add(dbItem);
                    }
                    else
                    {
                        dbItem = context.Appointment.FirstOrDefault(o => o.AppointmentID == id);
                        if (dbItem == null)
                        {
                            throw new Exception("Event not found!");
                        }
                        if (dtoAppointment.MeetingLocationID == 5) // trip to VN
                        {
                            dbItem.UserID = dtoAppointment.UserID;
                        }
                        //if (dbItem.UserID.Value != userId)
                        //{
                        //    throw new Exception("You can not delete this event, please contact the event owner!");
                        //}
                    }
                    if (dtoAppointment.MeetingLocationID == 5) // trip to VN
                    {
                        dtoAppointment.StartTime = "00:00";
                        dtoAppointment.EndTime   = "23:59";
                    }

                    converter.DTO2DB(dtoAppointment, ref dbItem, FrameworkSetting.Setting.AbsoluteUserTempFolder + userId.ToString() + @"\", userId);
                    context.AgendaMngUser.Local.Where(o => o.Appointment == null).ToList().ForEach(o => context.AgendaMngUser.Remove(o));
                    // updated by, updated date, meeting minute.
                    dbItem.MeetingMinute = dtoAppointment.MeetingMinute;
                    dbItem.UpdatedBy     = userId;
                    dbItem.UpdatedDate   = DateTime.Now;

                    context.SaveChanges();

                    // generate agenda code
                    if (id <= 0)
                    {
                        using (DbContextTransaction scope = context.Database.BeginTransaction())
                        {
                            context.Database.ExecuteSqlCommand("SELECT * FROM Appointment WITH (TABLOCKX, HOLDLOCK)");

                            try
                            {
                                dbItem.AppointmentUD = dbItem.AppointmentID.ToString("D10");
                                context.SaveChanges();
                            }
                            catch (Exception ex)
                            {
                                throw ex;
                            }
                            finally
                            {
                                scope.Commit();
                            }
                        }
                    }
                    else
                    {
                        context.SaveChanges();
                    }

                    return(true);
                }
            }
            catch (Exception ex)
            {
                notification = new Library.DTO.Notification()
                {
                    Message = ex.Message, Type = Library.DTO.NotificationType.Error
                };
                return(false);
            }
        }