Ejemplo n.º 1
0
        public ActionResult EditUser(int UserId)
        {
            LoadStaticStatusData();
            var x = DBProcessor.OneById <UserModel>(UserId, "Users");

            return(View(x));
        }
        public bool PrepareDB(string timeInUse = null)
        {
            List <string> dataPointsInUse;

            if (timeInUse != null)
            {
                dataPointsInUse = new List <string> {
                    timeInUse
                };
                dataPointsInUse = GetDataPointsInUse(dataPointsInUse, "dbField", "field");
            }
            else
            {
                dataPointsInUse = GetDataPointsInUse("dbField", "field");
            }
            if (dataPointsInUse.Count == 0)
            {
                return(true);
            }
            DBProcessor dbProcessor = new DBProcessor();

            try {
                dataRecords = dbProcessor.GetRecords(connStr, sql, dbType, dataPointsInUse);
            } catch (Exception ex) {
                sourceLogger.Error(ex, $"Error retrieving Database data: ");
                return(false);
            }

            return(true);
        }
Ejemplo n.º 3
0
        public ActionResult EditOrder(int OrderId)
        {
            LoadStaticStatusData();
            OrderModel results = DBProcessor.OneById <OrderModel>(OrderId, "Orders");

            results.OrderStatusLabel = (StatusType)results.OrderStatus; //Small patch
            return(View(results));
        }
Ejemplo n.º 4
0
        public ActionResult OrderDetails(OrderModel orderModel)
        {
            LoadStaticStatusData();
            var results = DBProcessor.Details(orderModel, "Orders");

            results.OrderStatusLabel = (StatusType)results.OrderStatus;
            return(View(results));
        }
Ejemplo n.º 5
0
        public ActionResult DeleteOrder(int OrderId)
        {
            LoadStaticStatusData();
            var results = DBProcessor.OneById <OrderModel>(OrderId, "Orders", wherePropertie: "OrderId");

            results.OrderStatusLabel = (StatusType)results.OrderStatus;
            return(View(results));
        }
Ejemplo n.º 6
0
        public ActionResult EditOrder(OrderModel orderModel)
        {
            LoadStaticStatusData();
            orderModel.OrderStatus = (int)orderModel.OrderStatusLabel;
            DBProcessor.Update(orderModel, "Orders", new List <string> {
                "OrderStatusLabel"
            });

            return(RedirectToAction("OrderDetails", orderModel));
        }
Ejemplo n.º 7
0
        //---------------------------------------------------------------------------------------------
        //=============================================================================================
        //---------------------------------------------------------------------------------------------
        public ActionResult OrderList()
        {
            LoadStaticStatusData();
            List <OrderModel> results = DBProcessor.ListEverything <OrderModel>("Orders");

            foreach (var item in results)
            {
                item.OrderStatusLabel = (StatusType)item.OrderStatus;
            }
            return(View(results));
        }
Ejemplo n.º 8
0
 public void LoadStaticStatusData()
 {
     ViewBag.StatusType0Count = DBProcessor.ListAll <OrderModel>(new OrderModel(), "Orders", new List <string> {
         "OrderStatusLabel"
     }).Where(d => d.OrderStatus == 0).Count();
     ViewBag.StatusType1Count = DBProcessor.ListAll <OrderModel>(new OrderModel(), "Orders", new List <string> {
         "OrderStatusLabel"
     }).Where(d => d.OrderStatus == 1).Count();
     ViewBag.StatusType2Count = DBProcessor.ListAll <OrderModel>(new OrderModel(), "Orders", new List <string> {
         "OrderStatusLabel"
     }).Where(d => d.OrderStatus == 2).Count();
     ViewBag.StatusType3Count = DBProcessor.ListAll <OrderModel>(new OrderModel(), "Orders", new List <string> {
         "OrderStatusLabel"
     }).Where(d => d.OrderStatus == 3).Count();
 }
Ejemplo n.º 9
0
        public ActionResult CreateOrder(OrderModel orderModel)
        {
            LoadStaticStatusData();
            orderModel.EmployeeId = 0;
            orderModel.OrderId    = DBProcessor.Count <OrderModel>("Orders") + 1;

            DBProcessor.Create <ImageLinkModel>(new ImageLinkModel(), "ImageLinks");


            orderModel.ImageID = DBProcessor.Count <ImageLinkModel>("ImageLinks");
            DBProcessor.Create(orderModel, "Orders", true, new List <string> {
                "OrderStatusLabel"
            });

            return(View());
        }
Ejemplo n.º 10
0
 public ActionResult CreateEmployee(EmployeeModel employeeModel)
 {
     LoadStaticStatusData();
     DBProcessor.Create <EmployeeModel>(employeeModel, "Employees");
     return(View());
 }
Ejemplo n.º 11
0
 //---------------------------------------------------------------------------------------------
 //=============================================================================================
 //---------------------------------------------------------------------------------------------
 public ActionResult PartsList()
 {
     LoadStaticStatusData();
     return(View(DBProcessor.ListEverything <PartModel>("ComputerParts")));
 }
Ejemplo n.º 12
0
 public ActionResult CreatePart(PartModel partModel)
 {
     LoadStaticStatusData();
     DBProcessor.Create <PartModel>(partModel, "ComputerParts");
     return(View());
 }
Ejemplo n.º 13
0
 public ActionResult EditPart(int PartId)
 {
     LoadStaticStatusData();
     return(View(DBProcessor.OneById <PartModel>(PartId, "ComputerParts")));
 }
Ejemplo n.º 14
0
 public ActionResult EditPart(PartModel partModel)
 {
     LoadStaticStatusData();
     DBProcessor.Update(partModel, "ComputerParts");
     return(View());
 }
Ejemplo n.º 15
0
 public ProductsDAO()
 {
     dp = new DBProcessor(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString);
 }
Ejemplo n.º 16
0
 public ActionResult DeleteOrder(OrderModel orderModel)
 {
     LoadStaticStatusData();
     DBProcessor.Delete("Orders", orderModel.Id.ToString());
     return(View());
 }
Ejemplo n.º 17
0
 public BomDAO()
 {
     con = new DBProcessor(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString);
 }
Ejemplo n.º 18
0
 public ActionResult CreateUser(UserModel userModel)
 {
     LoadStaticStatusData();
     DBProcessor.Create <UserModel>(userModel, "Users");
     return(View());
 }
Ejemplo n.º 19
0
 public SalesStatusDatails(int contantsIndex)
 {
     InitializeComponent();
     dbp = new DBProcessor(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString);
     thisContantsIndex = contantsIndex;
 }
Ejemplo n.º 20
0
 public ActionResult DeleteUser(UserModel userModel)
 {
     LoadStaticStatusData();
     DBProcessor.Delete("Users", userModel.Id.ToString());
     return(View());
 }
Ejemplo n.º 21
0
 public ActionResult EditUser(UserModel userModel)
 {
     LoadStaticStatusData();
     DBProcessor.Update(userModel, "Users");
     return(View());
 }
Ejemplo n.º 22
0
 public OfferOrderDAO()
 {
     dp = new DBProcessor(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString);
 }
Ejemplo n.º 23
0
 public ActionResult EditEmployee(int EmployeeId)
 {
     LoadStaticStatusData();
     return(View(DBProcessor.OneById <EmployeeModel>(EmployeeId, "Employees")));
 }
Ejemplo n.º 24
0
        public string DateInsert1()
        {
            int year  = 0;
            int month = 0;
            int day   = 0;


            DateTime dt;
            Random   rd = new Random();

            DBProcessor dbp             = new DBProcessor(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString);
            int         cusno           = 0;
            int         empno           = 0;
            int         prono           = 0;
            int         cusorderorderno = 0;
            string      date            = null;
            int         price           = 0;
            int         ea = 0;

            string sp1 = "DataInsertProPrice";

            SqlParameter[] sqlParameter1 = new SqlParameter[1];
            string         sp2           = "DataInsert";

            SqlParameter[] sqlParameters2 = new SqlParameter[8];
            int            errorCheck     = 0;

            for (int i = 0; i < 50; i++) // >> 버튼 한번클릭마다 인트 i = 0 초기값을 올려줘야함
            {
                try
                {
                    errorCheck++;
                    price = 0;
                    prono = new Random().Next(24, 28);
                    ea    = new Random().Next(1, 4);
                    year  = rd.Next(2019, (int)DateTime.Today.Year + 1);
                    month = rd.Next(1, 3);
                    day   = rd.Next(1, 28);
                    date  = month.ToString() + "/" + day.ToString() + "/" + year.ToString();
                    dt    = DateTime.Parse(date);
                    /////////////////////////////////////////////////////////////////////////////
                    sqlParameter1[0] = new SqlParameter("@pro_No", prono);
                    //dbp.ExecuteParametersDT(sp1, sqlParameter1);
                    foreach (DataRow item in dbp.ExecuteParametersDT(sp1, sqlParameter1).Rows)
                    {
                        price = Int32.Parse(item["Pro_Price"].ToString()) * ea;
                    }
                    //////////////////////////////////////////////////////////////////////////////////
                    sqlParameters2[0] = new SqlParameter("@cus_No", 10);                      //5~9번 있음
                    sqlParameters2[1] = new SqlParameter("@emp_No", new Random().Next(1, 5)); //4명
                    sqlParameters2[2] = new SqlParameter("@pro_No", prono);                   //6개
                    sqlParameters2[3] = new SqlParameter("@cus_Order_OrderNo", i + 1047);     // >> 버튼 한번클릭마다 인트 i = 0 초기값을 올려줘야함
                    sqlParameters2[4] = new SqlParameter("@cus_Order_Date", dt);
                    sqlParameters2[5] = new SqlParameter("@cus_OrderComplete", 2);            //2번고정
                    sqlParameters2[6] = new SqlParameter("@cus_Order_Price", price);
                    sqlParameters2[7] = new SqlParameter("@cus_Order_EA", ea);
                    dbp.ExecuteParameters(sp2, sqlParameters2);
                }
                catch (Exception)
                {
                    return(errorCheck.ToString() + "번째에서 멈춤");
                }
            }
            return("완료");
        }
Ejemplo n.º 25
0
 public ActionResult EditEmployee(EmployeeModel employeeModel)
 {
     LoadStaticStatusData();
     DBProcessor.Update(employeeModel, "Employees");
     return(View());
 }
Ejemplo n.º 26
0
 public FrmMainControl()
 {
     InitializeComponent();
     dbp       = new DBProcessor(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString);
     salesList = new List <Cus_OrderVO>();
 }
Ejemplo n.º 27
0
 public ActionResult EmployeesList()
 {
     LoadStaticStatusData();
     return(View(DBProcessor.ListEverything <EmployeeModel>("Employees")));
 }
Ejemplo n.º 28
0
        static void Main(string[] args)
        {
            Logger objLogger = new Logger();

            if (args.Length < 1)
            {
                Console.WriteLine("You must provide the inputfiles list as parameter..");
                objLogger.LogMsg("Abnormal Close: inputfiles list was missing as parameter.");
                return;
            }


            //Getting the Configration of the EJ Upload program ..
            ConfigReader objCfg        = new ConfigReader();
            ArrayList    objArr_Config = new ArrayList();

            objArr_Config = objCfg.ReadConfig();
            if (objArr_Config == null)
            {
                return;
            }

            Console.Title = "ReconSS - NCR EJ Load";

            Console.WriteLine("NCR EJ Loading Started at : " + DateTime.Now.ToString());

            ConString       = " Data Source =" + objArr_Config[0].ToString() + "; User Id = " + objArr_Config[1].ToString() + " ; Password ="******";";
            global_bank_bin = objArr_Config[24].ToString();
            EJProcessor objEJProcessor = new EJProcessor(ConString);
            DBProcessor objDBProcessor = new DBProcessor(ConString, global_bank_bin);


            objEJProcessor.strThreshold      = objArr_Config[22].ToString();
            objEJProcessor.cass_type_1_denom = objArr_Config[5].ToString();
            objEJProcessor.cass_type_2_denom = objArr_Config[8].ToString();
            objEJProcessor.cass_type_3_denom = objArr_Config[11].ToString();
            objEJProcessor.cass_type_4_denom = objArr_Config[14].ToString();

            objEJProcessor.cass_type_1_curr = objArr_Config[6].ToString();
            objEJProcessor.cass_type_2_curr = objArr_Config[9].ToString();
            objEJProcessor.cass_type_3_curr = objArr_Config[12].ToString();
            objEJProcessor.cass_type_4_curr = objArr_Config[15].ToString();
            objEJProcessor.convert_file     = objArr_Config[23].ToString();
            objEJProcessor.global_bank_bin  = global_bank_bin;

            // COIN Starts
            EJProcessor.patternCoin  = objArr_Config[27].ToString();
            EJProcessor.patternNotes = objArr_Config[28].ToString();
            EJProcessor.CoinBINS     = objArr_Config[29].ToString().Split(',');

            //Regex rgxCoin = new Regex(objEJProcessor.patternCoin);
            //Regex rgxNotes = new Regex(objEJProcessor.patternNotes);
            //string test = "1.00X-2,0.50X-2,0.25X456456456";
            //if (rgxCoin.IsMatch(test) )//|| rgxNotes.IsMatch(test))
            //{
            //    test=test;
            //}
            // Coin Ends

            int    iTotalProcessedRecords = 0;
            int    iTotalRejectedRecords  = 0;
            int    iTotalRecords          = 0;
            string strRecordDate          = "";
            string strFilesDate           = "";
            string strFilesDateMin        = "";
            int    iEPD_CODE   = 0;
            string sFileNumber = "";

            if (File.Exists(args[0]) == false)
            {
                string strErrorMessage;
                strErrorMessage = "The file containing inputfiles list does not exist.." + args[0];
                Console.WriteLine(strErrorMessage);
                objLogger.LogMsg("Abnormal Close: " + strErrorMessage);
                if (objDBProcessor.EndApplicationJobWithError(strErrorMessage))
                {
                    return;
                }
                else
                {
                    Console.WriteLine("Abnormal Close: EndApplicationJobWithError returned false");
                    objLogger.LogMsg("Abnormal Close: EndApplicationJobWithError returned false");
                    return;
                }
            }


            sFileNumber = objDBProcessor.GetNextFileID();

            string[] strFilesToProcess = File.ReadAllLines(args[0]);

            iTotalRecords = strFilesToProcess.Length;

            //UMER_MOD 20160228 starts
            string strThresholdMinFiles = objArr_Config[25].ToString();
            int    iThresholdMinFiles   = int.Parse(strThresholdMinFiles.Trim());

            string strThresholdGrace = objArr_Config[26].ToString();
            int    iThresholdGrace   = int.Parse(strThresholdGrace.Trim());


            if (iTotalRecords < iThresholdMinFiles)
            {
                string strErrorMessage;
                strErrorMessage = "The EJ Process can not complete; There are only " + iTotalRecords +
                                  " Input Files while Minimum Threshold Value is configured as: " + iThresholdMinFiles;

                Console.WriteLine(strErrorMessage);
                objLogger.LogMsg("Abnormal Close: " + strErrorMessage);
                if (objDBProcessor.EndApplicationJobWithError(strErrorMessage))
                {
                    return;
                }
                else
                {
                    Console.WriteLine("Abnormal Close: EndApplicationJobWithError returned false");
                    objLogger.LogMsg("Abnormal Close: EndApplicationJobWithError returned false");
                    return;
                }
            }
            objLogger.LogMsg("No of Files are more than threshold value: " + iTotalRecords + ">" + iThresholdMinFiles);
            //UMER_MOD 20160228 ends
            //UMER_MOD 20170515 starts
            //do not take the record date as sys date, but take the maximum date of the input files list


            strRecordDate = (DateTime.Now.Year.ToString().Substring(2, 2) + DateTime.Now.Month.ToString().PadLeft(2, '0') + DateTime.Now.Day.ToString().PadLeft(2, '0')); //UMER_MOD 20170524

            strFilesDate = strFilesToProcess.Select(v => int.Parse(v.Substring(10, 6))).Max().ToString();                                                                 //UMER_MOD 20170524

            //UMER_MOD 20170530 starts
            strFilesDateMin = strFilesToProcess.Select(v => int.Parse(v.Substring(10, 6))).Min().ToString();
            if (strFilesDate != strFilesDateMin)
            {
                string strErrorMessage;
                string strMonitorMessage;
                strErrorMessage   = "Abnormal Close: EJ Proccess Input Files are having multiple dates";
                strMonitorMessage = "Abnormal Close: EJ Proccess Input Files are having multiple dates";
                Console.WriteLine(strErrorMessage);
                objLogger.LogMsg(strErrorMessage);
                if (objDBProcessor.EndApplicationJobWithError(strMonitorMessage))
                {
                    return;
                }
                else
                {
                    Console.WriteLine("Abnormal Close: EndApplicationJobWithError returned false");
                    objLogger.LogMsg("Abnormal Close: EndApplicationJobWithError returned false");
                    return;
                }
            }
            //UMER_MOD 20170530 ends


            //UMER_MOD 20170515 ends


            //UMER_MOD 20160228 starts
            int iRemainingRcds = 0;

            //  objDBProcessor.Chk_EJ_Process_Log_for_PrevDay(strRecordDate, ref iRemainingRcds);
            objDBProcessor.Chk_EJ_Process_Log_for_PrevDay(strFilesDate, ref iRemainingRcds);//UMER_MOD 20170524
            if (iRemainingRcds > 0)
            {
                /*UMER_MOD 201704 23 starts */
                /* Configuration check if the previous day files in folder are reaching minimum threshold */
                //UMER_MOD 20170515 starts
                //DateTime yesterdayDt = DateTime.Now.Date.AddDays(-1);
                //string stryesterdayDt = (yesterdayDt.Year.ToString() + yesterdayDt.Month.ToString().PadLeft(2, '0') + yesterdayDt.Day.ToString().PadLeft(2, '0'));
                //DateTime yesterdayDt = DateTime.ParseExact(strRecordDate, "yyMMdd", System.Globalization.CultureInfo.InvariantCulture);//UMER_MOD 20170524
                DateTime yesterdayDt = DateTime.ParseExact(strFilesDate, "yyMMdd", System.Globalization.CultureInfo.InvariantCulture);//UMER_MOD 20170524
                yesterdayDt = yesterdayDt.AddDays(-1);
                string stryesterdayDt = (yesterdayDt.Year.ToString() + yesterdayDt.Month.ToString().PadLeft(2, '0') + yesterdayDt.Day.ToString().PadLeft(2, '0'));
                //UMER_MOD 20170515 ends
                //int iTotalYesterdayRcds = 0;
                //int iTotalYesterdayRcds = iThresholdGrace;//UMER_MOD 20170516 //add a grace to allow loading even if 123 is missing
                int iTotalYesterdayRcds = 0; //UMER_MOD 20170524

                for (int iLoop = 0; iLoop < iTotalRecords; iLoop++)
                {
                    if (strFilesToProcess[iLoop].Contains("_" + stryesterdayDt))
                    {
                        iTotalYesterdayRcds++;
                    }
                }
                /*UMER_MOD 201704 23 ends */

                // if (iTotalYesterdayRcds < iThresholdMinFiles && iTotalYesterdayRcds<iRemainingRcds)//UMER_MOD 20170524
                if (iTotalYesterdayRcds < iThresholdMinFiles && (iTotalYesterdayRcds + iThresholdGrace) < iRemainingRcds)//UMER_MOD 20170524
                {
                    string strErrorMessage;
                    string strMonitorMessage;
                    strErrorMessage = "The EJ Process is not executed for the prvious day while running on:" + strRecordDate +
                                      " and only contains " + iTotalYesterdayRcds + " Input Files while Minimum Threshold Value is configured as: "
                                      + iThresholdMinFiles + " And Remaing are: " + iRemainingRcds;

                    strMonitorMessage = "Failed: Not executed for Prev Day, Yesterday Records / Grace Value/ Threshold/ Remaining: " +
                                        iTotalYesterdayRcds + " / " + iThresholdGrace + " / " + iThresholdMinFiles + " / " + iRemainingRcds;

                    Console.WriteLine(strErrorMessage);
                    objLogger.LogMsg("Abnormal Close: " + strErrorMessage);
                    if (objDBProcessor.EndApplicationJobWithError(strMonitorMessage))
                    {
                        return;
                    }
                    else
                    {
                        Console.WriteLine("Abnormal Close: EndApplicationJobWithError returned false");
                        objLogger.LogMsg("Abnormal Close: EndApplicationJobWithError returned false");
                        return;
                    }
                }
                else
                {
                    Console.WriteLine("The EJ Process is not executed for the prvious day while running on:" + strFilesDate + ", but contains " + iTotalYesterdayRcds + " Input Files with Threshold/Grace Value as: " + iThresholdMinFiles + "/" + iThresholdGrace + " And Remaing are: " + iRemainingRcds + " ,Therefore it will continue Processing");
                    objLogger.LogMsg("The EJ Process is not executed for the prvious day while running on:" + strFilesDate + ", but contains " + iTotalYesterdayRcds + " Input Files with Threshold/Grace Value as: " + iThresholdMinFiles + "/" + iThresholdGrace + " And Remaing are: " + iRemainingRcds + " ,Therefore it will continue Processing");
                }
            }

            //UMER_MOD 20160228 ends


            if (objDBProcessor.Insert_EJ_Process_Log(strRecordDate, sFileNumber,
                                                     //UMER_MOD 140519 starts
                                                     //take file_Date from filename xxxx_20140519_xxxx
                                                     //strFilesToProcess[0].Substring(strFilesToProcess[0].Length - 6, 6),
                                                     strFilesToProcess[0].Substring(strFilesToProcess[0].IndexOf("_") + 3, 6),
                                                     //UMER_MOD 140519 ends
                                                     DateTime.Now.Hour.ToString().PadLeft(2, '0') + ":" + DateTime.Now.Minute.ToString().PadLeft(2, '0'), "", "001", 0, 0, iTotalRecords, out iEPD_CODE))
            {
                try
                {
                    objEJProcessor.file_number = Convert.ToInt32(sFileNumber);
                }
                catch (Exception ex)
                {
                    objLogger.LogMsg("Error in file number conversion: " + sFileNumber + " Exception is:" + ex.Message);
                    objEJProcessor.file_number = 1;
                }
                //insert into  application job log the job status to be started
                //UMER_MOD 170614 starts
                //bank requirement, yousuf's email 170614, application job should have file date inspite or sysdate
                //objDBProcessor.StartApplicationJob(strRecordDate);
                objDBProcessor.StartApplicationJob(strFilesDate);
                //UMER_MOD 170614 ends

                for (int i = 0; i < strFilesToProcess.Length; i++)
                {
                    if (strFilesToProcess[i].Trim().Length > 0)
                    {
                        Console.WriteLine("Processing File: " + objArr_Config[3].ToString() + strFilesToProcess[i]);
                        if (File.Exists(objArr_Config[3].ToString() + strFilesToProcess[i]))
                        {
                            Console.WriteLine(strFilesToProcess[i]);
                            Console.WriteLine("Processing File: " + strFilesToProcess[i]);
                            objLogger.LogMsg("Processing File: " + strFilesToProcess[i]);

                            if (objEJProcessor.ProcessEJFile(objArr_Config[3].ToString(), strFilesToProcess[i]) == 0)
                            {
                                //UMER_MOD 20141208 starts

                                /*objDBProcessor.UpdateFileProcessStatus(objEJProcessor.strTermID, objEJProcessor.strNoOfTxn,
                                 *  objEJProcessor.strNoOfStatus, objEJProcessor.strFdate, objEJProcessor.strMissingBulk, strFilesToProcess[i]);
                                 */
                                objDBProcessor.UpdateFileProcessStatus(objEJProcessor.strTermID, objEJProcessor.strNoOfTxn,
                                                                       objEJProcessor.strNoOfStatus, objEJProcessor.strFdate, objEJProcessor.strMissingBulk, strFilesToProcess[i], sFileNumber);

                                //UMER_MOD 20141208 ends
                                Console.WriteLine("Successfully Processed : " + strFilesToProcess[i]);
                                objLogger.LogMsg("Successfully Processed : " + strFilesToProcess[i]);
                                iTotalProcessedRecords++;

                                /* try
                                 * {
                                 *   strTotalProcessedRecords = (Convert.ToInt32(strTotalProcessedRecords) + Convert.ToInt32(objEJProcessor.strNoOfTxn) +
                                 *       Convert.ToInt32(objEJProcessor.strNoOfTxn)).ToString();
                                 *
                                 * }
                                 * catch (Exception ex)
                                 * {
                                 *   objLogger.LogMsg("Exception in calculating the total no of records from file : " + strFilesToProcess[i] + " , Exception says: " +ex.Message);
                                 * }*/
                            }
                            else
                            {
                                /* if(strFilesToProcess[i].Length>8)
                                 *   objDBProcessor.UpdateFileProcessStatus(" ","0","0",strFilesToProcess[i].Substring(strFilesToProcess[i].Length -8,8),"104",strFilesToProcess[i]);
                                 * else
                                 *   objDBProcessor.UpdateFileProcessStatus(" ", "0", "0", "", "104", strFilesToProcess[i]);*/
                                iTotalRejectedRecords++;
                                Console.WriteLine("Error: File processing : " + strFilesToProcess[i]);
                                objLogger.LogMsg("Error: File processing : " + strFilesToProcess[i]);
                            }
                        }
                        else
                        {
                            Console.WriteLine("Input file does not exist: " + strFilesToProcess[i] + " continuing for the rest of the list..");
                            objLogger.LogMsg("Input file does not exist: " + strFilesToProcess[i] + " continuing for the rest of the list..");
                        }
                    }
                }

                //update application job process status to be completed

                if (iTotalRecords == iTotalRejectedRecords)
                {
                    string strErrorMessage;
                    string strMonitorMessage;
                    strErrorMessage   = "Successful- while all input files were Duplicate";
                    strMonitorMessage = "Successful- while all input files were Duplicate";
                    Console.WriteLine(strErrorMessage);
                    objLogger.LogMsg(strErrorMessage);
                    objDBProcessor.EndApplicationJobWithError(strMonitorMessage);
                }
                else
                {
                    objDBProcessor.EndApplicationJob();
                }

                if (objDBProcessor.Update_EJ_PROCESS_LOG(strRecordDate, iTotalProcessedRecords, iTotalRejectedRecords, iEPD_CODE))
                {
                    objLogger.LogMsg("NCR EJ Program Completed Successfully - and EJ_PROCESS_LOG updated successfully");
                    Console.WriteLine("NCR EJ Program Completed Successfully at: " + DateTime.Now.ToString());
                    //Console.ReadLine();
                }
                else
                {
                    objLogger.LogMsg("NCR EJ Program Completed But EJ_PROCESS_LOG could not be updated, which is critical please check logs.");
                    Console.WriteLine("NCR EJ Program Completed But EJ_PROCESS_LOG could not be updated, which is critical please check logs.");
                    // Console.ReadLine();
                }
            }//if ej_process_log insertion is ok
            else
            {
                Console.WriteLine("ERROR Abnormal Exit as the EJ_PROCESS_LOG could not be updated properly with the given date: ");
                objLogger.LogMsg("ERROR Abnormal Exit as the EJ_PROCESS_LOG could not be updated properly with the given date: ");
            }
        }
Ejemplo n.º 29
0
 public ActionResult AddImage(ImageModel imageModel)
 {
     DBProcessor.Create <ImageModel>(imageModel, "Images");
     return(View());
 }