Exemplo n.º 1
0
        private async Task UpdatePhotoClass(string v_sFile, int v_iIDKey, string v_sComment)
        {
            try
            {
                DisplayPhoto cPhoto = new DisplayPhoto();
                cPhoto.IDKey    = v_iIDKey;
                cPhoto.NoteText = v_sComment;
                cPhoto.FilePath = v_sFile;
                cPhoto.FileUri  = new Uri(v_sFile, UriKind.RelativeOrAbsolute);
                Main.DisplayImageDetails didImage = await this.ReturnDisplayImageFromFile(v_sFile);

                cPhoto.ImageSource = didImage.wbBitmap;
                cPhoto.ImageWidth  = didImage.dOriginalWidth;
                cPhoto.ImageHeight = didImage.dOriginalHeight;

                cPhoto.SubProjectNo = this.m_cProject.SubProjectNo;
                //cPhoto.GridHeight = this.gvPhotos.ActualHeight;
                //cPhoto.GridWidth = this.gvPhotos.ActualWidth;
                cPhoto.UniqueID = Environment.TickCount;

                await Task.Delay(2);//Wait 2 milliseconds so tick count will always be unique when used.

                Main.p_cProjectPhotos.Add(cPhoto);

                //DisplayUI(Main.p_cProjectPhotos);
                DisplayUI(cPhoto);
                //this.gvPhotos.ItemsSource = cMain.p_cProjectPhotos;
                //this.gvPhotos.SelectedIndex = this.gvPhotos.Items.Count - 1;
            }
            catch (Exception ex)
            {
            }
        }
Exemplo n.º 2
0
        public async Task <ActionResult> GetAsync(int id)
        {
            var photo = await PhotoService.GetAsync(id);

            var displayPhoto = new DisplayPhoto(photo);

            TempData["photo"] = displayPhoto;

            return(RedirectToAction("AddAndEdit"));
        }
Exemplo n.º 3
0
        public async Task <ActionResult> AddAndEdit()
        {
            List <Album> albums = await AlbumService.ListAlbumsAsync();

            DisplayPhoto photo = TempData["photo"] as DisplayPhoto;

            photo = photo ?? new DisplayPhoto();

            IEnumerable <SelectListItem> albumNames = albums.Select(album => new SelectListItem()
            {
                Text  = album.Name,
                Value = album.Id.ToString()
            }).ToList();

            ViewBag.Albums = albumNames;

            IEnumerable <SelectListItem> photoTypes = CollectionExtensions.GetEnumSelectList <ContentType>();

            ViewBag.ContentTypes = photoTypes;

            return(View(photo));
        }
Exemplo n.º 4
0
 private void DisplayUI(DisplayPhoto ImageItem)
 {
     try
     {
         Image imgPic = new Image();
         imgPic.Source = ImageSource.FromFile(ImageItem.FileUri.ToString());
         //imgPic.HeightRequest = Convert.ToDouble(ImageItem.ImageHeight);
         //imgPic.WidthRequest = Convert.ToDouble(ImageItem.ImageWidth);
         Label lbComment = new Label()
         {
             Text = "Enter Comment:"
         };
         Entry txtPicNotes = new Entry();
         txtPicNotes.Text          = ImageItem.NoteText;
         txtPicNotes.HeightRequest = 50;
         //Button btnRemoveItem = new Button();
         Label lbRemove = new Label();
         lbRemove.Text = "Remove this image";
         lbRemove.HorizontalOptions = LayoutOptions.Start;
         lbRemove.VerticalOptions   = LayoutOptions.Center;
         Switch btnRemoveItem = new Switch();
         btnRemoveItem.IsToggled         = false;
         btnRemoveItem.HorizontalOptions = LayoutOptions.EndAndExpand;
         btnRemoveItem.VerticalOptions   = LayoutOptions.Center;
         StackLayout removeItem = new StackLayout();
         removeItem.Orientation = StackOrientation.Horizontal;
         removeItem.Children.Add(lbRemove);
         removeItem.Children.Add(btnRemoveItem);
         StackLayout item = new StackLayout();
         item.Children.Add(imgPic);
         item.Children.Add(lbComment);
         item.Children.Add(txtPicNotes);
         item.Children.Add(removeItem);
         lvPhotos.Children.Add(item);
     }
     catch (Exception ex)
     {
     }
 }
Exemplo n.º 5
0
        private void OpenDirectory(object sender, MouseButtonEventArgs e)
        {
            if (e.ChangedButton == MouseButton.Left)
            {
                txtFilter.Text = "";
                isActive       = true;

                Contr selectedItem = ((Contr)listView.SelectedItem);
                if (selectedItem != null)
                {
                    if (selectedItem.isFile)
                    {
                        if (selectedItem.Type == "JPG" || selectedItem.Type == "PNG" || selectedItem.Type == "BMP")
                        {
                            DisplayPhoto photo = new DisplayPhoto(selectedItem.Name, selectedItem.CreationDate, selectedItem.Type, selectedItem.IntSize, selectedItem.Path);
                            photo.Show();
                        }

                        else if (selectedItem.Type == "TXT")
                        {
                            RichText textWindow = new RichText(selectedItem.Path, selectedItem.Name);
                            textWindow.Show();
                        }
                        else
                        {
                            Process.Start(selectedItem.Path);
                        }
                    }

                    else
                    {
                        mainPath.Text = selectedItem.Path;
                        myStack.Push(mainPath.Text);
                        RefreshList();
                    }
                }
            }
        }
Exemplo n.º 6
0
        public async Task <ActionResult> Add(DisplayPhoto displayPhoto, HttpPostedFileBase file)
        {
            if (file != null)
            {
                displayPhoto.RawData = new byte[file.ContentLength];

                file.InputStream.Read(displayPhoto.RawData, 0, file.ContentLength);
            }

            Photo photo = new Photo
            {
                Id      = displayPhoto.Identifier,
                Name    = displayPhoto.Name,
                Type    = displayPhoto.Type,
                AlbumId = displayPhoto.AlbumId,
                Size    = displayPhoto.Size,
                RawData = displayPhoto.RawData
            };

            await PhotoService.AddAsync(photo);

            return(RedirectPermanent("Photos"));
        }
Exemplo n.º 7
0
        public VisitStorePageViewModel(INavigationService navigationService,
                                       IProductService productService,
                                       ITerminalService terminalService,
                                       IUserService userService,
                                       IWareHousesService wareHousesService,
                                       IAccountingService accountingService,
                                       IMediaPickerService mediaPickerService,
                                       ILiteDbService <TrackingModel> conn,
                                       ILiteDbService <VisitStore> vsdb,
                                       IPermissionsService permissionsService,
                                       IDialogService dialogService) : base(navigationService,
                                                                            productService,
                                                                            terminalService,
                                                                            userService,
                                                                            wareHousesService,
                                                                            accountingService,
                                                                            dialogService)
        {
            _permissionsService = permissionsService;
            _mediaPickerService = mediaPickerService;

            _conn = conn;
            _vsdb = vsdb;

            Title = "拜访门店";

            httpClientHelper = new HttpClientHelper();

            this.SubmitText = "\uf017";

            this.Load = ReactiveCommand.Create(async() =>
            {
                try
                {
                    var check          = await CheckSignIn();
                    this.SignInEnabled = !check;

                    if (!string.IsNullOrWhiteSpace(Settings.DisplayPhotos))
                    {
                        var displayPhotos = JsonConvert.DeserializeObject <List <DisplayPhoto> >(Settings.DisplayPhotos);
                        if (displayPhotos != null)
                        {
                            this.Bill.DisplayPhotos = new ObservableCollection <DisplayPhoto>(displayPhotos);
                        }
                    }

                    if (!string.IsNullOrWhiteSpace(Settings.DoorheadPhotos))
                    {
                        var doorheadPhotos = JsonConvert.DeserializeObject <List <DoorheadPhoto> >(Settings.DoorheadPhotos);
                        if (doorheadPhotos != null)
                        {
                            this.Bill.DoorheadPhotos = new ObservableCollection <DoorheadPhoto>(doorheadPhotos);
                        }
                    }

                    //重新获取客户信息
                    if (Settings.LastSigninCoustmerId > 0)
                    {
                        var tt = await _terminalService.GetTerminalAsync(Settings.LastSigninCoustmerId);
                        if (tt != null)
                        {
                            this.Terminal     = tt;
                            Bill.TerminalId   = tt.Id;
                            Bill.TerminalName = tt.Name;
                        }
                    }


                    //有没签退信息时
                    if (this.OutVisitStore != null)
                    {
                        //刷新状态
                        Refresh(this.OutVisitStore);
                    }

                    //如果上次签到客户存在时
                    var terminalId = Settings.LastSigninCoustmerId > 0 ? Settings.LastSigninCoustmerId : Bill.TerminalId;
                    if (terminalId > 0)
                    {
                        //获取终端余额
                        _terminalService.Rx_GetTerminalBalance(terminalId, new CancellationToken())?.Subscribe((balance) =>
                        {
                            if (balance != null)
                            {
                                this.TBalance = balance;
                            }
                        }).DisposeWith(DeactivateWith);


                        //获取上次拜访信息
                        _terminalService.Rx_GetLastVisitStoreAsync(terminalId, Settings.UserId, new CancellationToken())?.Subscribe((result) =>
                        {
                            if (result != null && result.Id > 0)
                            {
                                try
                                {
                                    //上次签到时间
                                    if (result.SigninDateTime != null)
                                    {
                                        var seconds = (int)DateTime.Now.Subtract(result.SigninDateTime).TotalSeconds;
                                        var coms    = CommonHelper.ConvetToSeconds(seconds);

                                        if (!string.IsNullOrEmpty(coms))
                                        {
                                            this.Bill.LastSigninDateTimeName = coms;
                                        }
                                    }

                                    //上次采购时间
                                    if (result.LastPurchaseDate != null)
                                    {
                                        var seconds = (int)DateTime.Now.Subtract(result.LastPurchaseDate).TotalSeconds;
                                        var coms    = CommonHelper.ConvetToSeconds(seconds);
                                        if (!string.IsNullOrEmpty(coms))
                                        {
                                            this.Bill.LastPurchaseDateTimeName = coms;
                                        }
                                    }

                                    if (this.OutVisitStore == null && result.SigninDateTime != null)
                                    {
                                        this.Bill.SigninDateTime = result.SigninDateTime;
                                    }
                                }
                                catch (Exception) { }
                            }
                        }).DisposeWith(DeactivateWith);
                    }
                }
                catch (Exception ex)
                {
                    Crashes.TrackError(ex);
                }
            });

            //历史记录选择
            this.HistoryCommand = ReactiveCommand.Create <object>(async e => await this.NavigateAsync($"{nameof(VisitRecordsPage)}", null));

            //到店签到
            this.OpenSignInCommend = ReactiveCommand.CreateFromTask(async() =>
            {
                if (Bill.TerminalId == 0)
                {
                    await this.NavigateAsync("CurrentCustomerPage");
                    return(Unit.Default);
                }

                var loc = await _permissionsService.GetLocationConsent();
                if (loc != PermissionStatus.Granted)
                {
                    await _dialogService.ShowAlertAsync("你的位置服务没有开启,请打开GPS", "定位", "确定");
                    return(Unit.Default);
                }

                if (Bill.TerminalId == 0 || string.IsNullOrEmpty(Bill.TerminalName))
                {
                    this.Alert("未选择客户...");
                    return(Unit.Default);
                }

                if (IsFooterVisible)
                {
                    IsVisible  = true;
                    IsExpanded = true;
                    //载入位置
                    ReloadLocation();
                    IsFooterVisible = false;
                }
                else
                {
                    IsVisible       = false;
                    IsExpanded      = false;
                    IsFooterVisible = true;
                }

                return(Unit.Default);
            });

            //取消签到
            this.CancelSignIn = ReactiveCommand.Create(() =>
            {
                IsVisible       = false;
                IsExpanded      = false;
                IsFooterVisible = true;
            });

            //签到
            this.SignInCommend = ReactiveCommand.CreateFromTask(async() =>
            {
                try
                {
                    if (!IsFastClick())
                    {
                        return(Unit.Default);
                    }

                    bool continueTodo = true;
                    if (Terminal.CalcDistance() > 50)
                    {
                        continueTodo  = await UserDialogs.Instance.ConfirmAsync($"你确定要在{Terminal.Distance:#.00}米外签到吗?", "警告", cancelText: "不签到", okText: "继续签到");
                        Bill.Abnormal = true;
                        Bill.Distance = Math.Round(Terminal.Distance, 2);
                    }


                    var lat = GlobalSettings.Latitude ?? 0;
                    var lan = GlobalSettings.Longitude ?? 0;


                    if (!continueTodo)
                    {
                        return(Unit.Default);
                    }

                    //签到
                    Bill.Id                   = 0;
                    Bill.StoreId              = Settings.StoreId;
                    Bill.BusinessUserId       = Settings.UserId;
                    Bill.BusinessUserName     = Settings.UserRealName;
                    Bill.ChannelId            = Terminal.ChannelId;
                    Bill.DistrictId           = Terminal.DistrictId;
                    Bill.SigninDateTimeEnable = true;
                    Bill.SigninDateTime       = DateTime.Now;
                    Bill.SignOutDateTime      = DateTime.Now;
                    Bill.VisitTypeId          = 2;//计划内
                    Bill.SignTypeId           = 1;
                    Bill.SignType             = Enums.SignEnum.CheckIn;
                    Bill.Remark               = LocationAddress;

                    //获取坐标
                    Bill.Latitude  = lat;
                    Bill.Longitude = lan;

                    return(await SubmitAsync(Bill, _terminalService.SignInVisitStoreAsync, async(result) =>
                    {
                        if (!result.Success)
                        {
                            this.IsVisible = false;
                            this.IsExpanded = false;
                            this.IsFooterVisible = true;
                        }
                        else
                        {
                            if (result.Data is VisitStore data)
                            {
                                this.SignInEnabled = false;
                                this.SignOutEnabled = true;
                                this.OutVisitStore = null;

                                //drawer
                                this.IsVisible = false;
                                this.IsExpanded = false;
                                this.IsFooterVisible = true;

                                //记录下签到ID
                                Settings.LastSigninId = data.Id;
                                Settings.LastSigninCoustmerId = Bill.TerminalId;
                                Settings.LastSigninCoustmerName = Bill.TerminalName;

                                this.Bill.LastSigninDateTime = data.LastSigninDateTime;
                                this.Bill.LastPurchaseDateTime = data.LastPurchaseDateTime;

                                //添加签到记录
                                try
                                {
                                    Terminal.Id = Bill.TerminalId;
                                    Terminal.LastSigninDateTimeName = data.SigninDateTime.ToString();
                                    Terminal.SigninDateTime = data.SigninDateTime;
                                    await _terminalService.AddTerminal(Terminal);
                                }
                                catch (Exception) { }
                            }
                        }
                    }, goBack: false));
                }
                catch (Exception)
                {
                    this.IsVisible       = false;
                    this.IsExpanded      = false;
                    this.IsFooterVisible = true;

                    await ShowAlert(false, $"出错啦,内部异常!");
                    return(Unit.Default);
                }
            });

            //校准位置
            this.CorrectPositionCommend = ReactiveCommand.CreateFromTask(async() =>
            {
                try
                {
                    var lat = GlobalSettings.Latitude ?? 0;
                    var lan = GlobalSettings.Longitude ?? 0;

                    if (Terminal == null || Terminal.Id == 0)
                    {
                        await ShowAlert(false, $"无效操作!");
                        return;
                    }

                    if (lat != 0 && lan != 0)
                    {
                        var distance          = MapHelper.CalculateDistance(GlobalSettings.Latitude ?? 0, GlobalSettings.Longitude ?? 0, this.Terminal?.Location_Lat ?? 0, this.Terminal?.Location_Lng ?? 0);
                        Terminal.Location_Lat = GlobalSettings.Latitude;
                        Terminal.Location_Lng = GlobalSettings.Longitude;
                        Terminal.Distance     = distance;
                        await _terminalService.UpdateterminalAsync(Terminal.Id, GlobalSettings.Latitude ?? 0, GlobalSettings.Longitude ?? 0);
                    }

                    await ShowAlert(true, $"校准成功!");
                }
                catch (Exception)
                {
                    await ShowAlert(false, $"出错啦,内部异常!");
                }
            });

            //离店签退
            this.SignOutCommend = ReactiveCommand.CreateFromTask(async() =>
            {
                try
                {
                    int onStoreStopSeconds = 0;
                    double subtract        = DateTime.Now.Subtract(Bill?.SigninDateTime ?? DateTime.Now).TotalMinutes;
                    if (!string.IsNullOrEmpty(Settings.CompanySetting))
                    {
                        var companySetting = JsonConvert.DeserializeObject <CompanySettingModel>(Settings.CompanySetting);
                        if (companySetting != null)
                        {
                            onStoreStopSeconds = companySetting.OnStoreStopSeconds;
                        }
                    }

                    if (!SignOutEnabled)
                    {
                        this.Alert("还没签到哦!");
                        return(Unit.Default);
                    }

                    if (onStoreStopSeconds > 0 && subtract < onStoreStopSeconds)
                    {
                        this.Alert($"签退无效,拜访在店时间必须大于{onStoreStopSeconds}分钟");
                        return(Unit.Default);
                    }

                    if (Settings.LastSigninId == 0)
                    {
                        this.Alert("签退无效,无法确定记录");
                        return(Unit.Default);
                    }

                    if (Bill.TerminalId == 0 || string.IsNullOrEmpty(Bill.TerminalName))
                    {
                        this.Alert("选择客户");
                        return(Unit.Default);
                    }

                    if (Bill.DoorheadPhotos == null || Bill.DoorheadPhotos.Count == 0)
                    {
                        this.Alert("请拍摄门头照片");
                        return(Unit.Default);
                    }

                    if (Bill.DisplayPhotos == null || Bill.DisplayPhotos.Count == 0)
                    {
                        this.Alert("请拍摄陈列照片");
                        return(Unit.Default);
                    }

                    if (BillId > 0)
                    {
                        switch (BillType)
                        {
                        case BillTypeEnum.SaleReservationBill:
                            this.Bill.SaleReservationBillId = BillId;
                            this.Bill.SaleOrderAmount       = Amount;
                            break;

                        case BillTypeEnum.SaleBill:
                            this.Bill.SaleBillId = BillId;
                            this.Bill.SaleAmount = Amount;
                            break;

                        case BillTypeEnum.ReturnReservationBill:
                            this.Bill.ReturnReservationBillId = BillId;
                            this.Bill.ReturnOrderAmount       = Amount;
                            break;

                        case BillTypeEnum.ReturnBill:
                            this.Bill.ReturnBillId = BillId;
                            this.Bill.ReturnAmount = Amount;
                            break;
                        }
                    }

                    //签退
                    Bill.Id = Settings.LastSigninId;
                    Bill.SignOutDateTime = DateTime.Now;
                    Bill.SignTypeId      = 2;

                    await SubmitAsync(Bill, _terminalService.SignOutVisitStoreAsync, async(result) =>
                    {
                        if (result.Success)
                        {
                            this.SignOutEnabled            = false;
                            this.Bill.SigninDateTimeEnable = false;
                            this.OutVisitStore             = null;

                            Settings.LastSigninId           = 0;
                            Settings.LastSigninCoustmerId   = 0;
                            Settings.LastSigninCoustmerName = "";

                            Settings.DisplayPhotos  = "";
                            Settings.DoorheadPhotos = "";

                            //更新签到记录
                            try
                            {
                                Terminal.Id = Bill.TerminalId;
                                Terminal.SignOutDateTime = Bill.SignOutDateTime;
                                await _terminalService.UpdateTerminal(Terminal);
                            }catch (Exception) { }
                        }
                    });

                    await _navigationService.GoBackAsync();

                    return(Unit.Default);
                }
                catch (Exception)
                {
                    await ShowAlert(false, $"出错啦,内部异常!");
                    return(Unit.Default);
                }
            });

            //应用选择执行
            this.InvokeAppCommand = ReactiveCommand.CreateFromTask <string>(async(r) =>
            {
                try
                {
                    if (Settings.LastSigninId != 0 && Settings.LastSigninCoustmerId != 0)
                    {
                        await this.NavigateAsync(r.ToString(),
                                                 ("TerminalId", Bill.TerminalId),
                                                 ("TerminalName", Bill.TerminalName),
                                                 ("Reference", this.PageName));
                    }
                    else
                    {
                        await ShowAlert(false, "需要先签到后操作");
                        return;
                    }
                }
                catch (Exception ex)
                {
                    Crashes.TrackError(ex);
                }
            });

            //拍照选择
            this.CameraPhotoCmd = ReactiveCommand.CreateFromTask <string>(async(r) =>
            {
                if (!IsFastClick())
                {
                    return;
                }

                if (this.SignInEnabled)
                {
                    this.Alert("还没有签到哦!");
                }
                else
                {
                    await this.NavigateAsync("CameraViewPage", ("TakeType", r));
                }
            });

            //删除门头照片
            this.RemoveStoragePathCommand = ReactiveCommand.Create <string>(async x =>
            {
                var ok = await _dialogService.ShowConfirmAsync("是否要删除该图片?", okText: "确定", cancelText: "取消");
                if (ok)
                {
                    var temp = this.Bill.DoorheadPhotos.FirstOrDefault(s => s.StoragePath == x);
                    if (temp != null)
                    {
                        this.Bill.DoorheadPhotos.Remove(temp);
                        Settings.DoorheadPhotos = JsonConvert.SerializeObject(this.Bill.DoorheadPhotos);
                    }
                }
            });

            //删除陈列照片
            this.RemoveDisplayPathCommand = ReactiveCommand.Create <string>(async x =>
            {
                var ok = await _dialogService.ShowConfirmAsync("是否要删除该图片?", okText: "确定", cancelText: "取消");
                if (ok)
                {
                    var temp = this.Bill.DisplayPhotos.FirstOrDefault(s => s.DisplayPath == x);
                    if (temp != null)
                    {
                        this.Bill.DisplayPhotos.Remove(temp);
                        Settings.DisplayPhotos = JsonConvert.SerializeObject(this.Bill.DisplayPhotos);
                    }
                }
            });

            //定位
            this.OrientationCmd = ReactiveCommand.Create(() =>
            {
                Device.BeginInvokeOnMainThread(() =>
                {
                    ReloadLocation();
                });
            });

            //预览照片
            this.WhenAnyValue(x => x.DoorheadPhotoSelecter)
            .Throttle(TimeSpan.FromMilliseconds(200))
            .Skip(1)
            .Where(x => x != null)
            .SubOnMainThread(async item =>
            {
                var images = new List <string> {
                    item.StoragePath
                };
                await this.NavigateAsync("ImageViewerPage", ("ImageInfos", images));
                DoorheadPhotoSelecter = null;
            }).DisposeWith(DeactivateWith);

            this.WhenAnyValue(x => x.DisplayPhotoSelecter)
            .Throttle(TimeSpan.FromMilliseconds(200))
            .Skip(1)
            .Where(x => x != null)
            .SubOnMainThread(async item =>
            {
                var images = new List <string> {
                    item.DisplayPath
                };
                await this.NavigateAsync("ImageViewerPage", ("ImageInfos", images));
                DisplayPhotoSelecter = null;
            }).DisposeWith(DeactivateWith);

            this.BindBusyCommand(Load);


            //拍照上传
            MessageBus
            .Current
            .Listen <byte[]?>(string.Format(Constants.CAMERA_KEY, "DoorheadPhotos"))
            .Subscribe(bit =>
            {
                if (bit != null && bit.Length > 0)
                {
                    UploadPhotograph((u) =>
                    {
                        var photo = new DoorheadPhoto
                        {
                            StoragePath = $"{GlobalSettings.FileCenterEndpoint}HRXHJS/document/image/" + u.Id + ""
                        };
                        this.Bill.DoorheadPhotos.Add(photo);
                        Settings.DoorheadPhotos = JsonConvert.SerializeObject(this.Bill.DoorheadPhotos);
                    }, new MemoryStream(bit));
                }
            }).DisposeWith(DeactivateWith);


            MessageBus
            .Current
            .Listen <byte[]?>(string.Format(Constants.CAMERA_KEY, "DisplayPhotos"))
            .Subscribe(bit =>
            {
                if (bit != null && bit.Length > 0)
                {
                    UploadPhotograph((u) =>
                    {
                        var photo = new DisplayPhoto
                        {
                            DisplayPath = $"{GlobalSettings.FileCenterEndpoint}HRXHJS/document/image/" + u.Id + ""
                        };
                        this.Bill.DisplayPhotos.Add(photo);
                        Settings.DisplayPhotos = JsonConvert.SerializeObject(this.Bill.DisplayPhotos);
                    }, new MemoryStream(bit));
                }
            }).DisposeWith(DeactivateWith);

            this.Load.ThrownExceptions.Subscribe(ex => { Debug.Print(ex.StackTrace); }).DisposeWith(this.DeactivateWith);
            this.HistoryCommand.ThrownExceptions.Subscribe(ex => { Debug.Print(ex.StackTrace); }).DisposeWith(this.DeactivateWith);
            this.OpenSignInCommend.ThrownExceptions.Subscribe(ex => { Debug.Print(ex.StackTrace); }).DisposeWith(this.DeactivateWith);
            this.CancelSignIn.ThrownExceptions.Subscribe(ex => { Debug.Print(ex.StackTrace); }).DisposeWith(this.DeactivateWith);
            this.SignInCommend.ThrownExceptions.Subscribe(ex => { Debug.Print(ex.StackTrace); }).DisposeWith(this.DeactivateWith);
            this.CorrectPositionCommend.ThrownExceptions.Subscribe(ex => { Debug.Print(ex.StackTrace); }).DisposeWith(this.DeactivateWith);
            this.SignOutCommend.ThrownExceptions.Subscribe(ex => { Debug.Print(ex.StackTrace); }).DisposeWith(this.DeactivateWith);
            this.InvokeAppCommand.ThrownExceptions.Subscribe(ex => { Debug.Print(ex.StackTrace); }).DisposeWith(this.DeactivateWith);
            this.CameraPhotoCmd.ThrownExceptions.Subscribe(ex => { Debug.Print(ex.StackTrace); }).DisposeWith(this.DeactivateWith);
            this.RemoveStoragePathCommand.ThrownExceptions.Subscribe(ex => { Debug.Print(ex.StackTrace); }).DisposeWith(this.DeactivateWith);
            this.RemoveDisplayPathCommand.ThrownExceptions.Subscribe(ex => { Debug.Print(ex.StackTrace); }).DisposeWith(this.DeactivateWith);
            this.OrientationCmd.ThrownExceptions.Subscribe(ex => { Debug.Print(ex.StackTrace); }).DisposeWith(this.DeactivateWith);
        }
Exemplo n.º 8
0
        /// <summary>
        /// v1.0.2 - Save Photos
        /// </summary>
        /// <returns></returns>
        private async Task <bool> SavePhotos()
        {
            //Disable screen controls
            //await this.EnableScreenControls(false);

            try
            {
                string sFileName = string.Empty;
                object sfNewFile = null; //StorageFile sfNewFile = null;
                object sfOldFile = null; //StorageFile sfOldFile = null;
                bool   bSavedOK  = false;

                //Fetch maximum image dimension.
                decimal dMaxDimension = Convert.ToDecimal(DependencyService.Get <IMain>().GetAppResourceValue("Max_Image_Dimension"));

                //For recording image sizes when resizing.
                Size szNewSize;

                //Retrieve file properties, we need the modified date.
                object bpFile = null;//Windows.Storage.FileProperties.BasicProperties bpFile = null;
                int    index  = 0;
                //Loop through photos in grid view.
                foreach (DisplayPhoto cPhoto in Main.p_cProjectPhotos)
                {
                    StackLayout parentStack = (StackLayout)lvPhotos.Children[index];
                    StackLayout swtichStack = (StackLayout)parentStack.Children[3];
                    Switch      switchItem  = (Switch)swtichStack.Children[1];
                    if (switchItem.IsToggled == true)
                    {
                        DisplayPhoto cRemovePhoto = new DisplayPhoto();
                        cRemovePhoto.FilePath = cPhoto.FilePath;
                        cRemovePhoto.IDKey    = cPhoto.IDKey;
                        Main.p_cDeletedPhotos.Add(cRemovePhoto);
                        continue;
                    }
                    index++;
                    try
                    {
                        //Create storage file object of existing file.
                        sfOldFile = await DependencyService.Get <ISettings>().GetFileFromPath(cPhoto.FilePath);

                        //Extract file name.
                        sFileName = DependencyService.Get <ISettings>().GetFileName(cPhoto.FilePath);

                        //This is a new photo.
                        if (cPhoto.IDKey == -1)
                        {
                            //Check file name is in correct format, if not create new one.
                            if (Main.IsImageFileInCorrectFormat(sFileName, this.m_cProject.SubProjectNo) == false)
                            {
                                sFileName = Main.ReturnCorrectImageNameFormat(sFileName, this.m_cProject.SubProjectNo);
                            }

                            //Create new file ready for copying.
                            sfNewFile = await DependencyService.Get <ISettings>().CreateFile(this.m_sfImageFolder, sFileName);

                            //Calculate new size
                            szNewSize = Main.ReturnAspectRatio(cPhoto.ImageWidth, cPhoto.ImageHeight, dMaxDimension);

                            //Copy and resize image and put into sub project folder.
                            bSavedOK = await DependencyService.Get <IMain>().CopyAndConvertImage(sfOldFile, sfNewFile, szNewSize);

                            //Extract file properties.
                            bpFile = await DependencyService.Get <ISettings>().GetBasicProperties(sfNewFile);
                        }
                        else
                        {
                            //If existing file retrieve date time from there.
                            bpFile = await DependencyService.Get <ISettings>().GetBasicProperties(sfOldFile);
                        }
                        DateTime dtLocalDateTime = DependencyService.Get <ISettings>().GetLocalDateTime(bpFile);
                        //Save file details away to project.
                        bSavedOK = Main.p_cDataAccess.SaveSubProjectFile(
                            this.m_cProject.SubProjectNo,
                            sFileName,
                            cPhoto.NoteText,
                            dtLocalDateTime,
                            true);
                    }
                    catch (Exception ex)
                    {
                        bSavedOK = false;
                    }

                    if (bSavedOK == false)
                    {
                        await DisplayAlert("Error Saving", "An error has occurred try to save the image details away, please try again.", "OK");

                        return(false);
                    }
                }

                try
                {
                    //Mark all the photo as deleted.
                    foreach (DisplayPhoto cPhoto in Main.p_cDeletedPhotos)
                    {
                        sFileName = cPhoto.FilePath;

                        //Create storage file object of existing file.
                        sfOldFile = await DependencyService.Get <ISettings>().GetFileFromPath(cPhoto.FilePath);

                        //Delete file.
                        await DependencyService.Get <ISettings>().Delete(sfOldFile);

                        //Update file table.
                        Main.p_cDataAccess.MarkFileAsDeleted(cPhoto.IDKey);
                    }
                }
                catch (Exception ex)
                {
                    //cMain.ReportError(ex, cMain.GetCallerMethodName(), sFileName);
                }


                //Clean up
                Main.p_cLastSelectedPhoto = null;
                Main.p_cProjectPhotos     = null;
                Main.p_cDeletedPhotos     = null;


                //Disable screen controls
                //await this.EnableScreenControls(true);

                return(true);
            }
            catch (Exception ex)
            {
                //cMain.ReportError(ex, cMain.GetCallerMethodName(), string.Empty);
                return(false);
            }
        }