Update payment handling in BookWalkViewModel; increment application version to 1.286

This commit is contained in:
Max Mannstein 2026-01-03 13:56:18 +01:00
parent c09f280a54
commit a031ebc3b5
2 changed files with 5 additions and 5 deletions

View File

@ -622,8 +622,8 @@ namespace gehGassiApp.ViewModels.Walks
var helpEndDate = new DateTimeOffset(EndDate.Year, EndDate.Month, EndDate.Day, EndTime.Hours, EndTime.Minutes, EndTime.Seconds, DateTimeOffset.Now.Offset); var helpEndDate = new DateTimeOffset(EndDate.Year, EndDate.Month, EndDate.Day, EndTime.Hours, EndTime.Minutes, EndTime.Seconds, DateTimeOffset.Now.Offset);
// PaymentType auswählen // PaymentType auswählen
var paymentResult = await _popupService.ShowPopupAsync<PaymentInfoPopup, object>(Shell.Current); await _popupService.ShowPopupAsync<PaymentInfoPopup, object>(Shell.Current);
var paymentResult = WalkPaymentTypeDto.Cash;
var walkCreateDto = new WalkCreateDto() var walkCreateDto = new WalkCreateDto()
{ {
Type = WalkTypeDto.Scheduled, Type = WalkTypeDto.Scheduled,
@ -638,7 +638,7 @@ namespace gehGassiApp.ViewModels.Walks
ReturnAddress = ReturnAddress.ToDto(), ReturnAddress = ReturnAddress.ToDto(),
Price = Price, Price = Price,
Info = Info, Info = Info,
PaymentType = paymentResult.Result is bool b && b ? WalkPaymentTypeDto.Cash : null PaymentType = paymentResult
}; };
#region Pickupaddress #region Pickupaddress

View File

@ -22,8 +22,8 @@
<ApplicationIdGuid>284D2BDB-7FFC-485A-968F-8440A92578FE</ApplicationIdGuid> <ApplicationIdGuid>284D2BDB-7FFC-485A-968F-8440A92578FE</ApplicationIdGuid>
<!-- Versions --> <!-- Versions -->
<ApplicationDisplayVersion>1.285</ApplicationDisplayVersion> <ApplicationDisplayVersion>1.286</ApplicationDisplayVersion>
<ApplicationVersion>285</ApplicationVersion> <ApplicationVersion>286</ApplicationVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">29.0</SupportedOSPlatformVersion> <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">29.0</SupportedOSPlatformVersion>