public bool AddFromMobile(object data)
        {
            SqlConnection  conn        = null;
            SqlTransaction transaction = null;
            T_Planing_Action_BFRemovalMobileDTO obj = null;
            List <SqlParameter> parameterList       = new List <SqlParameter>();

            string procName = "sp_T_Planing_Action_BFRemoval_Insert_Mobile";
            string TPID     = "";

            isCan = true;
            try
            {
                obj = (T_Planing_Action_BFRemovalMobileDTO)data;
                if (obj != null)
                {
                    conn        = OpenConnection();
                    transaction = conn.BeginTransaction();
                    command     = new SqlCommand(procName, conn, transaction);

                    command.CommandType = CommandType.StoredProcedure;

                    parameterList.AddRange(GetParametersExactly(procName, obj, transaction).ToArray());
                    command.Parameters.AddRange(parameterList.ToArray());

                    command.ExecuteNonQuery();

                    TPID = obj.TPID;

                    if (obj.DeleteFiles != null && obj.DeleteFiles.Length > 0)
                    {
                        procName = "sp_T_Planing_Action_BFRemoval_Files_Delete_Mobile";
                        foreach (var fileNo in obj.DeleteFiles.Split(','))
                        {
                            if (fileNo != "")
                            {
                                command = new SqlCommand(procName, conn, transaction);

                                command.CommandType = CommandType.StoredProcedure;
                                if (fileNo != null)
                                {
                                    T_PlaningFileMobileDTO file = new T_PlaningFileMobileDTO();
                                    file.TPID     = TPID;
                                    file.No       = fileNo;
                                    parameterList = new List <SqlParameter>();
                                    parameterList.AddRange(GetParametersExactly(procName, file, transaction).ToArray());

                                    command.Parameters.AddRange(parameterList.ToArray());
                                }

                                command.ExecuteNonQuery();
                            }
                        }
                    }

                    if (obj.DeleteConditionFiles != null && obj.DeleteConditionFiles.Length > 0)
                    {
                        procName = "[sp_T_Planing_Action_BFRemoval_ConditionFiles_Delete_Mobile]";
                        foreach (var fileNo in obj.DeleteConditionFiles.Split(','))
                        {
                            if (fileNo != "")
                            {
                                command = new SqlCommand(procName, conn, transaction);

                                command.CommandType = CommandType.StoredProcedure;
                                if (fileNo != null)
                                {
                                    T_PlaningFileMobileDTO file = new T_PlaningFileMobileDTO();
                                    file.TPID       = TPID;
                                    file.No         = fileNo;
                                    file.UploadType = "3";
                                    parameterList   = new List <SqlParameter>();
                                    parameterList.AddRange(GetParametersExactly(procName, file, transaction).ToArray());

                                    command.Parameters.AddRange(parameterList.ToArray());
                                }

                                command.ExecuteNonQuery();
                            }
                        }
                    }

                    procName = "sp_T_Planing_Action_BFRemoval_Files_Insert_Mobile";
                    if (obj.UploadFileList != null && obj.UploadFileList.Count > 0)
                    {
                        foreach (T_PlaningFileMobileDTO file in obj.UploadFileList)
                        {
                            file.TPID = TPID;

                            command = new SqlCommand(procName, conn, transaction);

                            command.CommandType = CommandType.StoredProcedure;
                            if (file != null)
                            {
                                parameterList = new List <SqlParameter>();
                                parameterList.AddRange(GetParametersExactly(procName, file, transaction).ToArray());

                                command.Parameters.AddRange(parameterList.ToArray());
                            }

                            command.ExecuteNonQuery();
                        }
                    }

                    procName = "[sp_T_Planing_Action_BFRemoval_Condition_Insert_Mobile]";
                    if (obj.ConditionList != null && obj.ConditionList.Count > 0)
                    {
                        foreach (T_Planing_Action_BFRemoval_ConditionMobileDTO dto in obj.ConditionList)
                        {
                            dto.TPID = TPID;

                            command = new SqlCommand(procName, conn, transaction);

                            command.CommandType = CommandType.StoredProcedure;
                            if (dto != null)
                            {
                                parameterList = new List <SqlParameter>();
                                parameterList.AddRange(GetParametersExactly(procName, dto, transaction).ToArray());

                                command.Parameters.AddRange(parameterList.ToArray());
                            }

                            command.ExecuteNonQuery();
                        }
                    }
                    transaction.Commit();
                }
            }
            catch (Exception ex)
            {
                isCan = false;
                if (transaction != null)
                {
                    transaction.Rollback();
                }
                throw new Exception(ex.Message);
            }
            finally
            {
                CloseConnection();
            }
            return(isCan);
        }
Example #2
0
        public HttpResponseMessage Add()
        {
            var deserializer = new JavaScriptSerializer();
            T_Planing_Action_BFRemovalMobileBAL mobileBal = new T_Planing_Action_BFRemovalMobileBAL();
            ResposeType         response   = new ResposeType();
            HttpResponseMessage mapMessage = null;

            T_Planing_Action_BFRemovalMobileDTO dto = null;
            List <T_Planing_Action_BFRemoval_ConditionMobileDTO> removalCondtionList = null;
            string savedFileName = "";

            try
            {
                var context = HttpContext.Current;
                context.Response.ContentType = "multipart/form-data";

                dto = ConvertX.GetReqeustFormExactly <T_Planing_Action_BFRemovalMobileDTO>();

                string UserID = context.Request.Form["UserID"];
                dto.CreateBy  = UserID;
                dto.UpdateBy  = UserID;
                dto.CreatedBy = UserID;
                dto.UpdatedBy = UserID;

                removalCondtionList = deserializer.Deserialize <List <T_Planing_Action_BFRemoval_ConditionMobileDTO> >(context.Request.Form["defectList"]);

                dto.UploadFileList = deserializer.Deserialize <List <T_PlaningFileMobileDTO> >(context.Request.Form["fileList"]);

                if (dto.UploadFileList != null && dto.UploadFileList.Count > 0)
                {
                    foreach (T_PlaningFileMobileDTO file in dto.UploadFileList)
                    {
                        file.DesPath  = context.Server.MapPath(planPath) + @"\" + file.PID + @"\" + file.UploadType;
                        file.FullPath = file.DesPath + @"\" + file.FileName;
                        logger.debug("PlanActionAfterAppliedCoating Add file:" + file.ToString());
                    }
                }

                dto.ConditionList = removalCondtionList;

                dto.HolidayTest = dto.ConditionList.Count.ToString();
                logger.debug("PlanActionBFRemovalController Add dto:" + dto.ToString());
                if (dto.ConditionList != null && dto.ConditionList.Count > 0)
                {
                    foreach (T_Planing_Action_BFRemoval_ConditionMobileDTO condition in dto.ConditionList)
                    {
                        logger.debug("PlanActionBFRemovalController Add condition:" + condition.ToString());
                    }
                }
                response.statusCode = mobileBal.AddFromMobile(dto);

                if (response.statusCode)
                {
                    response.statusText = "Success";
                    try {
                        // For new upload
                        if (dto.UploadFileList != null && dto.UploadFileList.Count > 0)
                        {
                            foreach (T_PlaningFileMobileDTO f in dto.UploadFileList)
                            {
                                if (DTO.PTT.Util.FileMng.HaveDirectory(f.DesPath))
                                {
                                    logger.debug("Save file to :" + f.FullPath);
                                    Utility.saveBase64File(f.FullPath, f.Base64File);
                                }
                            }
                        }

                        // For delete old file
                        if (dto.DeleteFileNames != null && dto.DeleteFileNames.Length > 0)
                        {
                            foreach (var fileName in dto.DeleteFileNames.Split(','))
                            {
                                if (fileName != "")
                                {
                                    var realDesFile = context.Server.MapPath(planPath) + @"\" + dto.PID + @"\" + fileName;
                                    DTO.PTT.Util.FileMng.DeleteFile(realDesFile);
                                }
                            }
                        }
                    }
                    catch (Exception e)
                    {
                        response.statusText = "Success but process file error :" + e.ToString();
                    }
                }
            }
            catch (Exception ex)
            {
                logger.error("PlanActionBFRemovalController Add error:" + ex.ToString());
                response.statusText = ex.ToString();
            }

            mapMessage = Request.CreateResponse(HttpStatusCode.OK, response);
            return(mapMessage);
        }