Update payment handling in BookWalkViewModel; increment application version to 1.286
This commit is contained in:
parent
c09f280a54
commit
a031ebc3b5
@ -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);
|
||||
|
||||
// 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()
|
||||
{
|
||||
Type = WalkTypeDto.Scheduled,
|
||||
@ -638,7 +638,7 @@ namespace gehGassiApp.ViewModels.Walks
|
||||
ReturnAddress = ReturnAddress.ToDto(),
|
||||
Price = Price,
|
||||
Info = Info,
|
||||
PaymentType = paymentResult.Result is bool b && b ? WalkPaymentTypeDto.Cash : null
|
||||
PaymentType = paymentResult
|
||||
};
|
||||
|
||||
#region Pickupaddress
|
||||
|
||||
@ -22,8 +22,8 @@
|
||||
<ApplicationIdGuid>284D2BDB-7FFC-485A-968F-8440A92578FE</ApplicationIdGuid>
|
||||
|
||||
<!-- Versions -->
|
||||
<ApplicationDisplayVersion>1.285</ApplicationDisplayVersion>
|
||||
<ApplicationVersion>285</ApplicationVersion>
|
||||
<ApplicationDisplayVersion>1.286</ApplicationDisplayVersion>
|
||||
<ApplicationVersion>286</ApplicationVersion>
|
||||
|
||||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion>
|
||||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">29.0</SupportedOSPlatformVersion>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user