8518c7b3ec
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 8m9s
- Updated AcceptClubMembershipContractCommandHandler to set PackagePurchasedAt to the contract-signing time, ensuring accurate pool charging. - Modified ActivateClubMembershipCommand to allow specifying a PackageId for forced activation, defaulting to the base package if not provided. - Improved ActivateClubMembershipCommandHandler to handle new and existing memberships differently regarding pool charging. - Added validation logic in GetWeeklyCommissionPoolQueryHandler to compare TotalPoolAmount against actual activations. - Introduced validation fields in WeeklyCommissionPoolDto for tracking discrepancies and expected amounts. - Updated stored procedures to ensure accurate calculations based on package purchases and to handle empty pools. - Enhanced protobuf definitions to include validation fields for commission pools and network tree nodes. - Added mapping for new fields in CommissionProfile and NetworkMembershipProfile. - Created DiscountProductProfile for mapping discount product requests and responses.
42 lines
1.5 KiB
C#
42 lines
1.5 KiB
C#
namespace CMSMicroservice.Application.NetworkMembershipCQ.Queries.GetNetworkTree;
|
|
|
|
/// <summary>
|
|
/// DTO برای نتیجه Flat از Stored Procedure
|
|
/// هر ردیف یک نود از درخت است
|
|
/// </summary>
|
|
public class NetworkTreeNodeDto
|
|
{
|
|
public long UserId { get; set; }
|
|
public string? Mobile { get; set; }
|
|
public string? FirstName { get; set; }
|
|
public string? LastName { get; set; }
|
|
public string? ReferralCode { get; set; }
|
|
public int? LegPosition { get; set; }
|
|
public long? ParentId { get; set; }
|
|
public int NetworkLevel { get; set; }
|
|
public DateTime? ClubActivatedAt { get; set; }
|
|
public bool IsClubActive { get; set; }
|
|
public long? ActivationWeekDefinitionId { get; set; }
|
|
public string? ActivationWeekDisplayName { get; set; }
|
|
public bool IsActivatedInTargetWeek { get; set; }
|
|
public DateTimeOffset UserCreated { get; set; }
|
|
|
|
/// <summary>
|
|
/// آیا فعالسازی در هفته هدف اولین بار بوده (true) یا خرید مجدد (false)؟
|
|
/// null یعنی Cycleای ندارد
|
|
/// </summary>
|
|
public bool? IsNewActivation { get; set; }
|
|
|
|
/// <summary>
|
|
/// نام پکیج موثر (هفته هدف یا پکیج فعلی)
|
|
/// </summary>
|
|
public string? PackageName { get; set; }
|
|
|
|
public long? PackageId { get; set; }
|
|
|
|
/// <summary>
|
|
/// نام کامل کاربر
|
|
/// </summary>
|
|
public string FullName => $"{FirstName} {LastName}".Trim();
|
|
}
|