fix(commission/dashboard): fix PackageId type - use long? directly, add global.json for SDK 9.0
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 12m48s
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 12m48s
This commit is contained in:
@@ -3,7 +3,6 @@ using MudBlazor;
|
||||
using System.Globalization;
|
||||
using CMSMicroservice.Protobuf.Protos.Commission;
|
||||
using BackOffice.Services;
|
||||
using Google.Protobuf.WellKnownTypes;
|
||||
|
||||
namespace BackOffice.Pages.Commission;
|
||||
|
||||
@@ -117,7 +116,7 @@ public partial class Dashboard
|
||||
var request = new GetWeeklyCommissionPoolRequest
|
||||
{
|
||||
WeekDefinitionId = _currentWeekDefinitionId,
|
||||
PackageId = _selectedPackageId.HasValue ? new Int64Value { Value = _selectedPackageId.Value } : null
|
||||
PackageId = _selectedPackageId
|
||||
};
|
||||
|
||||
_poolData = await CommissionContract.GetWeeklyCommissionPoolAsync(request);
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "9.0.306",
|
||||
"rollForward": "latestPatch"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user