chore: update .gitignore, change imagePullPolicy to Always in backoffice deployment, and add new columns for ChangeDiscountValue and CurrentDiscountBalance in WalletManagementPage. Bump Foursat.CMSMicroservice.Protobuf to 0.0.200.
Build and Deploy to Kubernetes / build-and-deploy (push) Has been cancelled

This commit is contained in:
masoodafar-web
2026-06-20 23:38:14 +03:30
parent 31f0fc4860
commit 6126ecf023
4 changed files with 13 additions and 3 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ spec:
containers: containers:
- name: backoffice - name: backoffice
image: 194.5.195.53:30080/admin/backoffice:latest image: 194.5.195.53:30080/admin/backoffice:latest
imagePullPolicy: IfNotPresent imagePullPolicy: Always
ports: ports:
- containerPort: 80 - containerPort: 80
name: http name: http
+1 -1
View File
@@ -140,7 +140,7 @@
<!-- CMS Protobuf NuGet package (used for both local dev and Docker builds) --> <!-- CMS Protobuf NuGet package (used for both local dev and Docker builds) -->
<ItemGroup> <ItemGroup>
<PackageReference Include="Foursat.CMSMicroservice.Protobuf" Version="0.0.199" /> <PackageReference Include="Foursat.CMSMicroservice.Protobuf" Version="0.0.200" />
</ItemGroup> </ItemGroup>
<!-- ============================================================ --> <!-- ============================================================ -->
@@ -125,6 +125,16 @@
<MudText Color="Color.Success">@context.Item.CurrentNetworkBalance.ToString("N0")</MudText> <MudText Color="Color.Success">@context.Item.CurrentNetworkBalance.ToString("N0")</MudText>
</CellTemplate> </CellTemplate>
</TemplateColumn> </TemplateColumn>
<TemplateColumn Title="تغییر موجودی اعتباری">
<CellTemplate>
<MudText>@context.Item.ChangeDiscountValue.ToString("N0")</MudText>
</CellTemplate>
</TemplateColumn>
<TemplateColumn Title="موجودی اعتباری">
<CellTemplate>
<MudText Color="Color.Tertiary">@context.Item.CurrentDiscountBalance.ToString("N0")</MudText>
</CellTemplate>
</TemplateColumn>
<TemplateColumn Title="شناسه مرجع"> <TemplateColumn Title="شناسه مرجع">
<CellTemplate> <CellTemplate>
@(context.Item.RefrenceId?.ToString() ?? "—") @(context.Item.RefrenceId?.ToString() ?? "—")