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);
|
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
|
||||||
|
|||||||
@ -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>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user