Ejemplo n.º 1
0
        public static CheckListTransaction GetCheckListTransaction(CheckListTransactionDO checkListTransactionDO)
        {
            CheckListTransaction checkListTransaction = new CheckListTransaction()
            {
                ID = checkListTransactionDO.ID,
                OptionTransactionID = checkListTransactionDO.OptionTransID,
                CheckListID         = checkListTransactionDO.CheckListID,
                result   = checkListTransactionDO.ResultTypeID,
                comments = checkListTransactionDO.Comment,
                PunchID  = checkListTransactionDO.PunchID,
                itemType = (ItemType)checkListTransactionDO.ItemTypeID
            };

            return(checkListTransaction);
        }
Ejemplo n.º 2
0
        public static CheckListTransactionDO GetCheckListTransactionDO(CheckListTransaction checkListTransaction)
        {
            CheckListTransactionDO checkListTransactionDO = new CheckListTransactionDO()
            {
                ID            = checkListTransaction.ID,
                OptionTransID = checkListTransaction.OptionTransactionID,
                CheckListID   = checkListTransaction.CheckListID,
                ResultTypeID  = checkListTransaction.result,
                Comment       = checkListTransaction.comments,
                PunchID       = checkListTransaction.PunchID,
                ItemTypeID    = (int)checkListTransaction.itemType
            };

            return(checkListTransactionDO);
        }
        public CheckListTransaction GetCheckListTransaction(int id)
        {
            CheckListTransaction checkListTransaction = new CheckListTransaction();

            try
            {
                CheckListTransactionDO checkListitems = checkListTransactionsRepository.GetEntity(id);
                checkListTransaction = Converter.GetCheckListTransaction(checkListitems);
            }
            catch (Exception ex)
            {
                Debug.WriteLine("Exception Occured in GetCheckListTransaction method due to " + ex.Message);
            }
            return(checkListTransaction);
        }
        public int DeleteInspectionTransactionNotSync(Inspection inspection)
        {
            int inspectionTransactionResult = 0;

            try
            {
                IEnumerable <InspectionTransactionDO> inspections = inspectionTransactionRepository.GetEntities();

                InspectionTransactionDO inspectionTransactionDO = inspections.FirstOrDefault(ins => ins.InspectionID == inspection.inspectionID && ins.ProjectID == inspection.projectID);
                inspectionTransactionResult = inspectionTransactionRepository.DeleteEntity(inspectionTransactionDO.ID);
                LocationImageDo.DeleteImage(conn, inspectionTransactionDO.ID);
                DocumentDO.DeleteDocument(conn, inspection.inspectionID, inspection.projectID);
                PunchListDO.DeletePunchList(conn, inspection.inspectionID, inspection.projectID);
                PunchListImageDO.DeletePunchListImageList(conn, inspection.ID);
                ReportDO.DeleteReports(conn, inspection.ID);
                using (var optService = new OptionTransactionService(conn))
                {
                    var optIds = optService.GetOptionTransactionsForInspection(inspection.ID).Select(s => s.ID);
                    OptionTransactionDO.DeleteInspectionOptions(conn, inspection.ID);
                    if (optIds != null && optIds.Count() > 0)
                    {
                        foreach (var optID in optIds)
                        {
                            var chkTransIDs = CheckListTransactionDO.GetCheckListTransaction(conn, optID).Select(s => s.ID);
                            CheckListTransactionDO.DeletecheckList(conn, optID);
                            OptionTransactionImageDO.DeleteOptionImagesSync(conn, optID);
                            if (chkTransIDs != null && chkTransIDs.Count() > 0)
                            {
                                foreach (var chkId in chkTransIDs)
                                {
                                    GuildedPhotoDO.DeleteGuidedImageList(conn, chkId);
                                }
                            }
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                Debug.WriteLine("Exception Occured in DeleteInspectionTransaction method due to " + ex.Message);
            }
            return(inspectionTransactionResult);
        }
        public int SaveCheckListTransaction(CheckListTransaction checkList)
        {
            CheckListTransactionDO checkListtxnDO = new CheckListTransactionDO();
            int result = 0;

            try
            {
                if (checkList != null)
                {
                    checkListtxnDO = Converter.GetCheckListTransactionDO(checkList);
                    result         = checkListTransactionsRepository.SaveEntity(checkListtxnDO);
                }
            }
            catch (Exception ex)
            {
                Debug.WriteLine("Exception Occured in SaveCheckListTransaction method due to " + ex.Message);
            }
            return(result);
        }
Ejemplo n.º 6
0
        /// <summary>
        /// Syncs the data.
        /// </summary>
        public void syncData()
        {
            lock (syncLock)
            {
                try
                {
                    if (!IsSyncProgress)
                    {
                        IsSyncProgress = true;

                        if (syncProgress != null)
                        {
                            syncProgress(true);
                        }
                        //Check if there are finished inspections
                        InspectionTransactionService transSer = new InspectionTransactionService(conn);
                        OptionTransactionService     OTS      = new OptionTransactionService(conn);
                        //int count = 0;
                        var                     finishedInspectionsQry = transSer.GetInspectionTransactions().Where(i => i.IsFinalise > 0);    // && (i.pass.ToLower () == "pass" || i.pass.ToLower () == "fail"));
                        UserService             userService            = new UserService(conn);
                        User                    user            = userService.GetUser();
                        IServices               service         = new Services();
                        InspectionDetailService ids             = new InspectionDetailService(conn);
                        OptionImageService      optImageservice = new OptionImageService(conn);
                        PunchService            pushservice     = new PunchService(conn);
                        DocViewService          docService      = new DocViewService(conn);
                        NotificationRepository  notificationRep = new NotificationRepository(conn);

                        if (finishedInspectionsQry.Any())
                        {
                            List <Inspection> finishedInspections = finishedInspectionsQry.Where(i => i.IsFinalise > 0).ToList();
                            if (finishedInspections.Count > 0)
                            {
                                int reportCount    = 0;
                                int punchListCount = 0;

                                Debug.WriteLine("sync thread started");

                                foreach (var inspection in finishedInspections)
                                {
                                    if (inspection == null)
                                    {
                                        Debug.WriteLine(string.Format("inspection is null"));
                                    }

                                    if (!inspection.isInspectionSynced)
                                    {
                                        if (notifiy != null)
                                        {
                                            notifiy(new notificationEventArgs
                                            {
                                                current = new Notifications
                                                {
                                                    notificationTypeID = inspection.projectID,
                                                    notificationType   = "Inspection",
                                                },
                                                isSyncCompleted = false,
                                            });
                                        }

                                        Model.ServiceModel.InspectionResults req = new Model.ServiceModel.InspectionResults();
                                        req.token       = user.Token;
                                        req.inspections = new List <Model.ServiceModel.InspectionResult>();
                                        Model.Inspection inspectionSer = ids.GetInspectionDetail(inspection, true);


                                        if (inspectionSer != null)
                                        {
                                            var insp = inspectionSer.getServiceModel();



                                            req.inspections.Add(insp);

                                            Model.ServiceModel.InspectionResultsAck inspectinPushRes = service.PushInspections(req);


                                            if (inspectinPushRes.result != null && inspectinPushRes.result.code == 0)
                                            {
                                                int inspectionTransactionID = 0;
                                                InspectionTransactionService insTransService = new InspectionTransactionService(conn);
                                                inspectionTransactionID = insTransService.GetInspectionTransactionID(inspection.projectID, inspection.inspectionID);

                                                //Loaction Image Delete after sync
                                                DAL.LocationImageDo.DeleteImage(conn, inspectionTransactionID);

                                                //Inspection Document Delete after sync
                                                var documents = docService.GetDocumentsForSync(inspection.inspectionID, inspection.projectID);
                                                if (documents != null && documents.Count > 0)
                                                {
                                                    if (DocumentDeleted != null)
                                                    {
                                                        DocumentDeleted(this, new DocumentDeletionEventArgs()
                                                        {
                                                            documentList = documents
                                                        });
                                                    }
                                                    docService.DeleteDocumentItemsForSync(inspection.inspectionID, inspection.projectID);
                                                }

                                                /// Punch List Delete for only final Inspection
                                                if (inspection.inspectionID == BALConstant.FINAL_INSPECTIONID)
                                                {
                                                    List <Punch> punchList = pushservice.getPunchList(inspection.inspectionID, inspection.projectID);
                                                    foreach (var punch in punchList)
                                                    {
                                                        PunchListImageDO.DeletePunchImageList(conn, punch.PunchID);
                                                        OptionPunchDO.DeleteOptionPunchID(conn, punch.PunchID);
                                                    }
                                                    PunchListDO.DeletePunchList(conn, BALConstant.FINAL_INSPECTIONID, inspection.projectID);
                                                }

                                                using (LevelTransactionService levelTransactionService = new LevelTransactionService(conn))
                                                {
                                                    var levelTransactions = levelTransactionService.GetLevelTransactions();

                                                    if (levelTransactions != null)
                                                    {
                                                        foreach (var levelTrans in levelTransactions)
                                                        {
                                                            levelTransactionService.DeleteLevelTransactions(levelTrans);
                                                        }
                                                    }
                                                }


                                                using (SpaceTransactionService spaceTransactionService = new SpaceTransactionService(conn))
                                                {
                                                    var spaceTransactions = spaceTransactionService.GetSpaceTransactions();

                                                    if (spaceTransactions != null)
                                                    {
                                                        foreach (var spaceTrans in spaceTransactions
                                                                 )
                                                        {
                                                            spaceTransactionService.DeleteSpaceTransactions(spaceTrans);
                                                        }
                                                    }
                                                }


                                                //Get Option transactions for inspection(Not including punch list)
                                                List <OptionTransaction> optiontransactionLst = null;
                                                optiontransactionLst = OTS.GetOptionTransactionsForInspection(inspectionTransactionID);

                                                //Delete Item Transaction
                                                if (optiontransactionLst != null && optiontransactionLst.Count > 0)
                                                {
                                                    foreach (var optiontransaction in optiontransactionLst)
                                                    {
                                                        //Option Image Deletion
                                                        optImageservice.DeleteOptionImagesForSync(conn, optiontransaction.ID);

                                                        //Guided picture deletion
                                                        if (optiontransaction.OptionId == BALConstant.GUIDEDPICTURE_OPTIONID)
                                                        {
                                                            var chkTransIDs = CheckListTransactionDO.GetCheckListTransaction(conn, optiontransaction.ID).Select(s => s.ID);
                                                            if (chkTransIDs != null && chkTransIDs.Count() > 0)
                                                            {
                                                                foreach (var chkId in chkTransIDs)
                                                                {
                                                                    GuildedPhotoDO.DeleteGuidedImageList(conn, chkId);
                                                                }
                                                            }
                                                        }
                                                        // Checklist transaction Deletion
                                                        CheckListTransactionDO.DeletecheckList(conn, optiontransaction.ID);

                                                        //Option Transaction Row deletion
                                                        OTS.DeleteOptionTransactions(optiontransaction);
                                                    }
                                                }

                                                inspection.isInspectionSynced = true;
                                                inspection.InspectionStarted  = 0;

                                                transSer.UpdateInspectionTransaction(inspection);
                                                //update notification table with successfully uploaded insÏpection
                                                notificationRep.Save("Inspection", inspection.projectID, "Inspection Results for App ID  : " + inspection.projectID + "  successfully synced");
                                            }
                                            else
                                            {
                                                //update notification table with retry count for inspection
                                                notificationRep.Save("Inspection", inspection.projectID, "Inspection Results for App ID : " + inspection.projectID + " not synced");
                                            }
                                        }
                                    }

                                    if (inspection.isInspectionSynced)
                                    {                                     ///If inspection sync is success
                                        ReportService        repservice = new ReportService(conn);
                                        IEnumerable <Report> reports    = repservice.GetReports().Where(r => r.InspectionTransID == inspection.ID);
                                        if (reports != null)
                                        {
                                            foreach (var report in reports)
                                            {
                                                if (notifiy != null)
                                                {
                                                    notifiy(new notificationEventArgs
                                                    {
                                                        current = new Notifications
                                                        {
                                                            notificationTypeID = report.ReportID + "-" + inspection.projectID,
                                                            notificationType   = "Report",
                                                        },
                                                        isSyncCompleted = false,
                                                    });
                                                }

                                                Model.ServiceModel.InspectionReportAck inspectionReoprtRes = service.PushReport(new Model.ServiceModel.InspectionReport()
                                                {
                                                    inspectionTypeID = inspection.inspectionID,
                                                    appID            = inspection.projectID,
                                                    report           = report.ReportDesc,
                                                    reportName       = report.ReportType,
                                                    token            = user.Token,
                                                });
                                                if (inspectionReoprtRes.result != null && inspectionReoprtRes.result.code == 0)
                                                {
                                                    notificationRep.Save(report.ReportType.ToUpper(), inspection.projectID, report.ReportType.ToUpper() + " Report for App ID : " + inspection.projectID + " successfully synced");
                                                    repservice.DeleteReport(report);
                                                }
                                                else
                                                {
                                                    notificationRep.Save(report.ReportType.ToUpper(), inspection.projectID, report.ReportType.ToUpper() + " Report for App ID  : " + inspection.projectID + " not synced");
                                                }
                                            }
                                        }


                                        List <Model.ServiceModel.PunchListItem> PunchItemList = new List <Model.ServiceModel.PunchListItem>();
                                        if (inspection.inspectionID != BALConstant.FINAL_INSPECTIONID)
                                        {
                                            if (notifiy != null)
                                            {
                                                notifiy(new notificationEventArgs
                                                {
                                                    current = new Notifications
                                                    {
                                                        notificationTypeID = inspection.projectID,
                                                        notificationType   = "Punchlist",
                                                    },
                                                    isSyncCompleted = false,
                                                });
                                            }

                                            List <Punch> punchList = pushservice.getPunchList(inspection.inspectionID, inspection.projectID);
                                            if (punchList != null && punchList.Count > 0)
                                            {
                                                foreach (var punch in punchList)
                                                {
                                                    List <PunchListImageDO> ImageTransLst = PunchListImageDO.getPunchImageList(conn, punch.PunchID);
                                                    List <byte[]>           images        = new List <byte[]>();

                                                    if (ImageTransLst != null)
                                                    {
                                                        foreach (var ImageTrans in ImageTransLst)
                                                        {
                                                            images.Add(ImageTrans.PunchListImage);
                                                        }
                                                    }

                                                    PunchItemList.Add(new Model.ServiceModel.PunchListItem()
                                                    {
                                                        photos   = images,
                                                        comment  = punch.punchDescription,
                                                        sequence = -1
                                                    });
                                                }

                                                Model.ServiceModel.PunchListAck inspectionPunchListRes = service.PushPunchList(new Model.ServiceModel.PunchListResult()
                                                {
                                                    inspectionTypeID = inspection.inspectionID,
                                                    appID            = inspection.projectID,
                                                    punchList        = PunchItemList,
                                                    token            = user.Token
                                                });
                                                if (inspectionPunchListRes.result != null && inspectionPunchListRes.result.code == 0)
                                                {
                                                    //update notification table with successfully uploaded punch list
                                                    notificationRep.Save("Punchlist", inspection.projectID, "Punch List for App ID : " + inspection.projectID + " successfully synced");
                                                    foreach (Punch item in punchList)
                                                    {
                                                        pushservice.DeletePunchItem(item);
                                                        PunchListImageDO.DeletePunchImageList(conn, item.PunchID);
                                                    }
                                                    OptionTransactionDO.DeleteInspectionOptions(conn, inspection.ID);
                                                }
                                                else
                                                {
                                                    //update notification table with retry count for punch list
                                                    notificationRep.Save("Punchlist", inspection.projectID, "Punch List for App ID : " + inspection.projectID + " not synced");
                                                }
                                            }
                                        }
                                    }

                                    if (inspection.isInspectionSynced)
                                    {
                                        using (ReportService repservice = new ReportService(conn))
                                        {
                                            IEnumerable <Report> reports = repservice.GetReports().Where(r => r.InspectionTransID == inspection.ID);
                                            if (reports != null && reports.Count() > 0)
                                            {
                                                reportCount = reports.Count();
                                            }
                                        }
                                        if (inspection.inspectionID != BALConstant.FINAL_INSPECTIONID)
                                        {
                                            List <Punch> punchList = pushservice.getPunchList(inspection.inspectionID, inspection.projectID);
                                            if (punchList != null && punchList.Count > 0)
                                            {
                                                punchListCount = punchList.Count;
                                            }
                                        }
                                        if (reportCount == 0 && punchListCount == 0)
                                        {
                                            transSer.DeleteInspectionTransaction(inspection);
                                            continue;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                catch (Exception ex)
                {
                    Debug.WriteLine("Exception Occured in Syncdata method due to " + ex.Message);
                }
                finally
                {
                    if (notifiy != null)
                    {
                        notifiy(new notificationEventArgs
                        {
                            current         = new Notifications(),
                            isSyncCompleted = true,
                        });
                    }
                    if (syncProgress != null)
                    {
                        syncProgress(false);
                    }
                    IsSyncProgress = false;
                    UIApplication.SharedApplication.InvokeOnMainThread(delegate
                    {
                        UIApplication.SharedApplication.IdleTimerDisabled = false;
                        Debug.WriteLine("sync thread finished");
                    });
                }
            }
        }
Ejemplo n.º 7
0
        /// <summary>
        /// Views the did load.
        /// </summary>
        public async override void ViewDidLoad()
        {
            //OptionTransaction obt = new OptionTransaction ();
            //ssssobt.
            base.ViewDidLoad();

            lblSyncNumber.Layer.CornerRadius = lblSyncNumber.Frame.Height / 2;
            lblSyncNumber.ClipsToBounds      = true;

            LblNotifyNbr.Layer.CornerRadius = LblNotifyNbr.Frame.Height / 2;
            LblNotifyNbr.ClipsToBounds      = true;

            WVReport.Delegate = new ReportWebviewDelegate(this);
//			WVReport.UserInteractionEnabled = false;

            btnHome.TouchUpInside -= BtnHome_TouchUpInside;
            btnHome.TouchUpInside += BtnHome_TouchUpInside;
            btnEdit.TouchUpInside -= BtnEdit_TouchUpInside;
            btnEdit.TouchUpInside += BtnEdit_TouchUpInside;

            btnNotify.TouchUpInside += BtnNotify_TouchUpInside;
            //btnSync.TouchUpInside += btnSync_TouchUpInside;
            btnSync.Enabled = false;

            btnLogOut.TouchUpInside += BtnLogout_TouchUpInside;

            //reportPhotoSegment.SelectedSegment = 1;
            //		nint selectedsegmentid=reportPhotoSegment.SelectedSegment;

            reportPhotoSegment.ValueChanged += ReportPhotoSegment_ValueChanged;

            syncInit();
            //NotifyCount ();
            lblCalDate.Text = DateTime.Today.Date.ToString("MMM dd");
            lblCalDay.Text  = "Today";
            btnFinalizeSave.TouchUpInside -= BtnFinalizeSave_TouchUpInside;
            btnFinalizeSave.TouchUpInside += BtnFinalizeSave_TouchUpInside;
            OptionTransactionService optionTransactionService = new OptionTransactionService(AppDelegate.DatabaseContext);

            if (InspectionResult != null)
            {
                this.InvokeOnMainThread(delegate {
                    LoadOverLayPopup();
                });
                ///Modification needed
                int checkListResult = 0;
                var optData         = optionTransactionService.GetOptionTransactions().Where(o => o.inspectionTransID == InspectionResult.ID);
                foreach (var opt in optData)
                {
                    opt.checkListTransaction = CheckListTransactionDO.GetCheckListTransaction(AppDelegate.DatabaseContext, opt.ID);
                    checkListResult          = checkListResult + opt.checkListTransaction.Where(i => i.result == (int)ResultType.FAIL).Count();
                }

                if (checkListResult > 0)
                {
                    InspectionResult.pass = "******";
                }
                else
                {
                    InspectionResult.pass = "******";
                }
                UpdateView();
                reportPath = await GenerateReport();
                await generatePhotoReport(InspectionResult);

                this.InvokeOnMainThread(delegate {
                    HideOverLay();
                });
            }
            if (File.Exists(reportPath))
            {
                WVReport.LoadRequest(new Foundation.NSUrlRequest(new Foundation.NSUrl(reportPath, false)));
            }

            // Perform any additional setup after loading the view, typically from a nib.
        }
        public void SaveInspectionCheckList(int OPTID, OptionTransaction optionTransaction, Option option)
        {
            try
            {
                CheckListTransactionDO           checkListTxnDO             = new CheckListTransactionDO();
                OptionTransactionImageRepository optionTransImageRepository = new OptionTransactionImageRepository(conn);
                PunchListImageRepository         punchListRepository        = new PunchListImageRepository(conn);
                PunchListImage punchImages;
                bool           PunchListItems = false;
                if (optionTransaction != null)
                {
                    if (optionTransaction.checkListTransaction != null && optionTransaction.checkListTransaction.Count > 0)
                    {
                        foreach (var checkListItem in optionTransaction.checkListTransaction)
                        {
                            checkListItem.OptionTransactionID = OPTID;
                            CheckListTransactionDO checkLists = CheckListTransactionDO.GetCheckListTransactionID(conn, OPTID, checkListItem.CheckListID).FirstOrDefault();
                            checkListTxnDO = Converter.GetCheckListTransactionDO(checkListItem);
                            if (checkLists != null)
                            {
                                if (checkLists.ID > 0)
                                {
                                    CheckList chkItem = option.checkListItems.Find(i => i.ID == checkListTxnDO.CheckListID);
                                    checkListTxnDO.ID = checkLists.ID;
                                    checkListTransactionRepository.UpdateEntity(checkListTxnDO);
                                    checkListItem.ID = checkListTxnDO.ID;
                                    if (chkItem != null)
                                    {
                                        chkItem.CheckListTransID = checkListItem.ID;
                                    }
                                }
                                else
                                {
                                    CheckList chkItem = option.checkListItems.Find(i => i.ID == checkListTxnDO.CheckListID);
                                    checkListTransactionRepository.SaveEntity(checkListTxnDO);
                                    checkListItem.ID = checkListTransactionRepository.GetEntities().LastOrDefault().ID;
                                    if (chkItem != null)
                                    {
                                        chkItem.CheckListTransID = checkListItem.ID;
                                    }
                                }
                            }
                            else
                            {
                                CheckList chkItem = option.checkListItems.Find(i => i.ID == checkListTxnDO.CheckListID);
                                checkListTransactionRepository.SaveEntity(checkListTxnDO);
                                checkListItem.ID = checkListTransactionRepository.GetEntities().LastOrDefault().ID;
                                if (chkItem != null)
                                {
                                    chkItem.CheckListTransID = checkListItem.ID;
                                }
                            }

                            if (checkListItem.itemType == ItemType.GuidedPicture)
                            {
                                GuildedPhotoDO.DeleteGuidedImageList(conn, checkListItem.ID);
                                if (checkListItem.GuidedPictures != null && checkListItem.GuidedPictures.Count > 0)
                                {
                                    foreach (var img in checkListItem.GuidedPictures)
                                    {
                                        GuildedPhotoDO.InsertGuidedImage(conn, checkListItem.ID, img);
                                    }
                                }
                                continue;
                            }
                            if (checkListItem.PunchID > 0 && checkListItem.itemType == ItemType.PunchList)
                            {
                                PunchListItems = true;
                                punchImages    = new PunchListImage();
                                PunchListImageDO.DeletePunchImageList(conn, checkListItem.PunchID);
                                if (checkListItem.GuidedPictures != null && checkListItem.GuidedPictures.Count > 0)
                                {
                                    foreach (var img in checkListItem.GuidedPictures)
                                    {
                                        if (img != null)
                                        {
                                            punchImages.Image = img;
                                        }
                                        else
                                        {
                                            punchImages.Image = null;
                                        }
                                        punchImages.PunchID           = checkListItem.PunchID;
                                        punchImages.inspectionTransID = optionTransaction.inspectionTransID;
                                        PunchListImageDO punchListDO = Converter.GetPunchListImageDO(punchImages);
                                        punchListRepository.SaveEntity(punchListDO);
                                    }
                                }
                            }
                        }
                    }
                    OptionTransactionImageDO.DeleteOptionImagesSync(conn, OPTID);
                    if (optionTransaction.photos != null && optionTransaction.photos.Count > 0)
                    {
                        foreach (var optionimage in optionTransaction.photos)
                        {
                            optionimage.OptionTransID = OPTID;
                            OptionTransactionImageDO optTransDO = Converter.GetOptionTransactionImageDO(optionimage);
                            int Result = optionTransImageRepository.SaveEntity(optTransDO);
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                Debug.WriteLine("Exception occured in method SaveInspectionCheckList" + ex.Message);
            }
        }