完成门店管理后端接口与任务

This commit is contained in:
2026-01-01 07:26:14 +08:00
parent dc9f6136d6
commit fc55003d3d
131 changed files with 15333 additions and 201 deletions

View File

@@ -1,5 +1,6 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using TakeoutSaaS.Application.App.Stores.Services;
using TakeoutSaaS.Domain.Deliveries.Repositories;
using TakeoutSaaS.Domain.Inventory.Repositories;
using TakeoutSaaS.Domain.Merchants.Repositories;
@@ -66,6 +67,13 @@ public static class AppServiceCollectionExtensions
services.AddScoped<IBillingExportService, BillingExportService>();
services.AddScoped<IMerchantExportService, MerchantExportService>();
// 2. (空行后) 门店配置服务
services.AddScoped<IGeoJsonValidationService, GeoJsonValidationService>();
services.AddScoped<IDeliveryZoneService, DeliveryZoneService>();
services.AddScoped<IStoreFeeCalculationService, StoreFeeCalculationService>();
services.AddScoped<IStoreSchedulerService, StoreSchedulerService>();
// 3. (空行后) 初始化配置与种子
services.AddOptions<AppSeedOptions>()
.Bind(configuration.GetSection(AppSeedOptions.SectionName))
.ValidateDataAnnotations();

View File

@@ -25,6 +25,7 @@ using TakeoutSaaS.Shared.Abstractions.Ids;
using TakeoutSaaS.Shared.Abstractions.Security;
using TakeoutSaaS.Shared.Abstractions.Tenancy;
using TakeoutSaaS.Infrastructure.App.Persistence.Configurations;
using Microsoft.AspNetCore.Http;
namespace TakeoutSaaS.Infrastructure.App.Persistence;
@@ -35,8 +36,9 @@ public sealed class TakeoutAppDbContext(
DbContextOptions<TakeoutAppDbContext> options,
ITenantProvider tenantProvider,
ICurrentUserAccessor? currentUserAccessor = null,
IIdGenerator? idGenerator = null)
: TenantAwareDbContext(options, tenantProvider, currentUserAccessor, idGenerator)
IIdGenerator? idGenerator = null,
IHttpContextAccessor? httpContextAccessor = null)
: TenantAwareDbContext(options, tenantProvider, currentUserAccessor, idGenerator, httpContextAccessor)
{
/// <summary>
/// 租户聚合根。
@@ -123,6 +125,18 @@ public sealed class TakeoutAppDbContext(
/// </summary>
public DbSet<Store> Stores => Set<Store>();
/// <summary>
/// 门店费用配置。
/// </summary>
public DbSet<StoreFee> StoreFees => Set<StoreFee>();
/// <summary>
/// 门店资质证照。
/// </summary>
public DbSet<StoreQualification> StoreQualifications => Set<StoreQualification>();
/// <summary>
/// 门店审核记录。
/// </summary>
public DbSet<StoreAuditRecord> StoreAuditRecords => Set<StoreAuditRecord>();
/// <summary>
/// 门店营业时间。
/// </summary>
public DbSet<StoreBusinessHour> StoreBusinessHours => Set<StoreBusinessHour>();
@@ -392,6 +406,9 @@ public sealed class TakeoutAppDbContext(
ConfigureMerchantContract(modelBuilder.Entity<MerchantContract>());
ConfigureMerchantStaff(modelBuilder.Entity<MerchantStaff>());
ConfigureMerchantCategory(modelBuilder.Entity<MerchantCategory>());
ConfigureStoreFee(modelBuilder.Entity<StoreFee>());
ConfigureStoreQualification(modelBuilder.Entity<StoreQualification>());
ConfigureStoreAuditRecord(modelBuilder.Entity<StoreAuditRecord>());
ConfigureStoreBusinessHour(modelBuilder.Entity<StoreBusinessHour>());
ConfigureStoreHoliday(modelBuilder.Entity<StoreHoliday>());
ConfigureStoreDeliveryZone(modelBuilder.Entity<StoreDeliveryZone>());
@@ -559,6 +576,14 @@ public sealed class TakeoutAppDbContext(
builder.Property(x => x.LegalRepresentative).HasMaxLength(100);
builder.Property(x => x.RegisteredAddress).HasMaxLength(500);
builder.Property(x => x.BusinessLicenseImageUrl).HasMaxLength(500);
builder.Property(x => x.SignboardImageUrl).HasMaxLength(500);
builder.Property(x => x.OwnershipType).HasConversion<int>();
builder.Property(x => x.AuditStatus).HasConversion<int>();
builder.Property(x => x.BusinessStatus).HasConversion<int>();
builder.Property(x => x.ClosureReason).HasConversion<int?>();
builder.Property(x => x.ClosureReasonText).HasMaxLength(500);
builder.Property(x => x.RejectionReason).HasMaxLength(500);
builder.Property(x => x.ForceCloseReason).HasMaxLength(500);
builder.Property(x => x.Province).HasMaxLength(64);
builder.Property(x => x.City).HasMaxLength(64);
builder.Property(x => x.District).HasMaxLength(64);
@@ -568,11 +593,61 @@ public sealed class TakeoutAppDbContext(
builder.Property(x => x.DeliveryRadiusKm).HasPrecision(6, 2);
builder.HasIndex(x => new { x.TenantId, x.MerchantId });
builder.HasIndex(x => new { x.TenantId, x.Code }).IsUnique();
builder.HasIndex(x => new { x.TenantId, x.AuditStatus });
builder.HasIndex(x => new { x.TenantId, x.BusinessStatus });
builder.HasIndex(x => new { x.TenantId, x.OwnershipType });
builder.HasIndex(x => new { x.Longitude, x.Latitude })
.HasFilter("\"Longitude\" IS NOT NULL AND \"Latitude\" IS NOT NULL");
builder.HasIndex(x => new { x.MerchantId, x.BusinessLicenseNumber })
.IsUnique()
.HasFilter("\"BusinessLicenseNumber\" IS NOT NULL AND \"Status\" <> 3");
}
private static void ConfigureStoreFee(EntityTypeBuilder<StoreFee> builder)
{
builder.ToTable("store_fees");
builder.HasKey(x => x.Id);
builder.Property(x => x.StoreId).IsRequired();
builder.Property(x => x.MinimumOrderAmount).HasPrecision(10, 2);
builder.Property(x => x.BaseDeliveryFee).HasPrecision(10, 2);
builder.Property(x => x.PackagingFeeMode).HasConversion<int>();
builder.Property(x => x.FixedPackagingFee).HasPrecision(10, 2);
builder.Property(x => x.FreeDeliveryThreshold).HasPrecision(10, 2);
builder.HasIndex(x => new { x.TenantId, x.StoreId }).IsUnique();
builder.HasIndex(x => x.TenantId);
}
private static void ConfigureStoreQualification(EntityTypeBuilder<StoreQualification> builder)
{
builder.ToTable("store_qualifications");
builder.HasKey(x => x.Id);
builder.Property(x => x.StoreId).IsRequired();
builder.Property(x => x.QualificationType).HasConversion<int>();
builder.Property(x => x.FileUrl).HasMaxLength(500).IsRequired();
builder.Property(x => x.DocumentNumber).HasMaxLength(100);
builder.Property(x => x.SortOrder).HasDefaultValue(100);
builder.HasIndex(x => new { x.TenantId, x.StoreId });
builder.HasIndex(x => x.ExpiresAt)
.HasFilter("\"ExpiresAt\" IS NOT NULL");
builder.Ignore(x => x.IsExpired);
builder.Ignore(x => x.IsExpiringSoon);
}
private static void ConfigureStoreAuditRecord(EntityTypeBuilder<StoreAuditRecord> builder)
{
builder.ToTable("store_audit_records");
builder.HasKey(x => x.Id);
builder.Property(x => x.StoreId).IsRequired();
builder.Property(x => x.Action).HasConversion<int>();
builder.Property(x => x.PreviousStatus).HasConversion<int?>();
builder.Property(x => x.NewStatus).HasConversion<int>();
builder.Property(x => x.OperatorName).HasMaxLength(100).IsRequired();
builder.Property(x => x.RejectionReason).HasMaxLength(500);
builder.Property(x => x.Remarks).HasMaxLength(1000);
builder.HasIndex(x => new { x.TenantId, x.StoreId });
builder.HasIndex(x => x.CreatedAt);
}
private static void ConfigureProductCategory(EntityTypeBuilder<ProductCategory> builder)
{
builder.ToTable("product_categories");

View File

@@ -36,17 +36,51 @@ public sealed class EfStoreRepository(TakeoutAppDbContext context) : IStoreRepos
}
/// <inheritdoc />
public async Task<IReadOnlyList<Store>> SearchAsync(long tenantId, StoreStatus? status, CancellationToken cancellationToken = default)
public async Task<IReadOnlyList<Store>> SearchAsync(
long tenantId,
long? merchantId,
StoreStatus? status,
StoreAuditStatus? auditStatus,
StoreBusinessStatus? businessStatus,
StoreOwnershipType? ownershipType,
string? keyword,
CancellationToken cancellationToken = default)
{
var query = context.Stores
.AsNoTracking()
.Where(x => x.TenantId == tenantId);
if (merchantId.HasValue)
{
query = query.Where(x => x.MerchantId == merchantId.Value);
}
if (status.HasValue)
{
query = query.Where(x => x.Status == status.Value);
}
if (auditStatus.HasValue)
{
query = query.Where(x => x.AuditStatus == auditStatus.Value);
}
if (businessStatus.HasValue)
{
query = query.Where(x => x.BusinessStatus == businessStatus.Value);
}
if (ownershipType.HasValue)
{
query = query.Where(x => x.OwnershipType == ownershipType.Value);
}
if (!string.IsNullOrWhiteSpace(keyword))
{
var trimmed = keyword.Trim();
query = query.Where(x => x.Name.Contains(trimmed) || x.Code.Contains(trimmed));
}
var stores = await query
.OrderBy(x => x.Name)
.ToListAsync(cancellationToken);
@@ -54,6 +88,43 @@ public sealed class EfStoreRepository(TakeoutAppDbContext context) : IStoreRepos
return stores;
}
/// <inheritdoc />
public async Task<bool> ExistsStoreWithinDistanceAsync(
long merchantId,
long tenantId,
double longitude,
double latitude,
double distanceMeters,
CancellationToken cancellationToken = default)
{
// 1. 校验距离阈值
if (distanceMeters <= 0)
{
return false;
}
// 2. (空行后) 拉取候选坐标
var coordinates = await context.Stores
.AsNoTracking()
.Where(x => x.TenantId == tenantId && x.MerchantId == merchantId)
.Where(x => x.Longitude.HasValue && x.Latitude.HasValue)
.Select(x => new { Longitude = x.Longitude!.Value, Latitude = x.Latitude!.Value })
.ToListAsync(cancellationToken);
// 3. (空行后) 计算距离并判断是否命中
foreach (var coordinate in coordinates)
{
var distance = CalculateDistanceMeters(latitude, longitude, coordinate.Latitude, coordinate.Longitude);
if (distance <= distanceMeters)
{
return true;
}
}
// 4. (空行后) 返回未命中结果
return false;
}
/// <inheritdoc />
public async Task<Dictionary<long, int>> GetStoreCountsAsync(long? tenantId, IReadOnlyCollection<long> merchantIds, CancellationToken cancellationToken = default)
{
@@ -92,6 +163,91 @@ public sealed class EfStoreRepository(TakeoutAppDbContext context) : IStoreRepos
return hours;
}
/// <inheritdoc />
public Task<StoreFee?> GetStoreFeeAsync(long storeId, long tenantId, CancellationToken cancellationToken = default)
{
return context.StoreFees
.AsNoTracking()
.Where(x => x.TenantId == tenantId && x.StoreId == storeId)
.FirstOrDefaultAsync(cancellationToken);
}
/// <inheritdoc />
public Task AddStoreFeeAsync(StoreFee storeFee, CancellationToken cancellationToken = default)
{
return context.StoreFees.AddAsync(storeFee, cancellationToken).AsTask();
}
/// <inheritdoc />
public Task UpdateStoreFeeAsync(StoreFee storeFee, CancellationToken cancellationToken = default)
{
context.StoreFees.Update(storeFee);
return Task.CompletedTask;
}
/// <inheritdoc />
public async Task<IReadOnlyList<StoreQualification>> GetQualificationsAsync(long storeId, long tenantId, CancellationToken cancellationToken = default)
{
var qualifications = await context.StoreQualifications
.AsNoTracking()
.Where(x => x.TenantId == tenantId && x.StoreId == storeId)
.OrderBy(x => x.SortOrder)
.ThenBy(x => x.QualificationType)
.ToListAsync(cancellationToken);
return qualifications;
}
/// <inheritdoc />
public Task<StoreQualification?> FindQualificationByIdAsync(long qualificationId, long tenantId, CancellationToken cancellationToken = default)
{
return context.StoreQualifications
.Where(x => x.TenantId == tenantId && x.Id == qualificationId)
.FirstOrDefaultAsync(cancellationToken);
}
/// <inheritdoc />
public Task AddQualificationAsync(StoreQualification qualification, CancellationToken cancellationToken = default)
{
return context.StoreQualifications.AddAsync(qualification, cancellationToken).AsTask();
}
/// <inheritdoc />
public Task UpdateQualificationAsync(StoreQualification qualification, CancellationToken cancellationToken = default)
{
context.StoreQualifications.Update(qualification);
return Task.CompletedTask;
}
/// <inheritdoc />
public async Task DeleteQualificationAsync(long qualificationId, long tenantId, CancellationToken cancellationToken = default)
{
var existing = await context.StoreQualifications
.Where(x => x.TenantId == tenantId && x.Id == qualificationId)
.FirstOrDefaultAsync(cancellationToken);
if (existing != null)
{
context.StoreQualifications.Remove(existing);
}
}
/// <inheritdoc />
public Task AddAuditRecordAsync(StoreAuditRecord record, CancellationToken cancellationToken = default)
{
return context.StoreAuditRecords.AddAsync(record, cancellationToken).AsTask();
}
/// <inheritdoc />
public async Task<IReadOnlyList<StoreAuditRecord>> GetAuditRecordsAsync(long storeId, long tenantId, CancellationToken cancellationToken = default)
{
var records = await context.StoreAuditRecords
.AsNoTracking()
.Where(x => x.TenantId == tenantId && x.StoreId == storeId)
.OrderByDescending(x => x.CreatedAt)
.ToListAsync(cancellationToken);
return records;
}
/// <inheritdoc />
public Task<StoreBusinessHour?> FindBusinessHourByIdAsync(long businessHourId, long tenantId, CancellationToken cancellationToken = default)
{
@@ -476,4 +632,20 @@ public sealed class EfStoreRepository(TakeoutAppDbContext context) : IStoreRepos
context.Stores.Remove(existing);
}
private static double CalculateDistanceMeters(double latitude1, double longitude1, double latitude2, double longitude2)
{
const double earthRadius = 6371000d;
var latRad1 = DegreesToRadians(latitude1);
var latRad2 = DegreesToRadians(latitude2);
var deltaLat = DegreesToRadians(latitude2 - latitude1);
var deltaLon = DegreesToRadians(longitude2 - longitude1);
var sinLat = Math.Sin(deltaLat / 2);
var sinLon = Math.Sin(deltaLon / 2);
var a = sinLat * sinLat + Math.Cos(latRad1) * Math.Cos(latRad2) * sinLon * sinLon;
var c = 2 * Math.Asin(Math.Min(1, Math.Sqrt(a)));
return earthRadius * c;
}
private static double DegreesToRadians(double degrees) => degrees * (Math.PI / 180d);
}

View File

@@ -0,0 +1,121 @@
using System.Text.Json;
using TakeoutSaaS.Application.App.Stores.Dto;
using TakeoutSaaS.Application.App.Stores.Services;
using TakeoutSaaS.Domain.Stores.Entities;
namespace TakeoutSaaS.Infrastructure.App.Services;
/// <summary>
/// 配送范围检测服务实现。
/// </summary>
public sealed class DeliveryZoneService : IDeliveryZoneService
{
/// <inheritdoc />
public StoreDeliveryCheckResultDto CheckPointInZones(
IReadOnlyList<StoreDeliveryZone> zones,
double longitude,
double latitude)
{
// 1. 无配送区域直接返回
if (zones is null || zones.Count == 0)
{
return new StoreDeliveryCheckResultDto { InRange = false };
}
// 2. (空行后) 逐个检测多边形命中
foreach (var zone in zones)
{
if (!TryReadPolygon(zone.PolygonGeoJson, out var polygon))
{
continue;
}
if (IsPointInPolygon(polygon, longitude, latitude))
{
return new StoreDeliveryCheckResultDto
{
InRange = true,
DeliveryZoneId = zone.Id,
DeliveryZoneName = zone.ZoneName
};
}
}
// 3. (空行后) 未命中任何区域
return new StoreDeliveryCheckResultDto { InRange = false };
}
private static bool TryReadPolygon(string geoJson, out List<Point> polygon)
{
polygon = [];
if (string.IsNullOrWhiteSpace(geoJson))
{
return false;
}
try
{
using var document = JsonDocument.Parse(geoJson);
var root = document.RootElement;
if (root.ValueKind != JsonValueKind.Object)
{
return false;
}
if (!root.TryGetProperty("coordinates", out var coordinatesElement) || coordinatesElement.ValueKind != JsonValueKind.Array)
{
return false;
}
if (coordinatesElement.GetArrayLength() == 0)
{
return false;
}
var ringElement = coordinatesElement[0];
if (ringElement.ValueKind != JsonValueKind.Array)
{
return false;
}
foreach (var pointElement in ringElement.EnumerateArray())
{
if (pointElement.ValueKind != JsonValueKind.Array || pointElement.GetArrayLength() < 2)
{
return false;
}
if (!pointElement[0].TryGetDouble(out var x) || !pointElement[1].TryGetDouble(out var y))
{
return false;
}
polygon.Add(new Point(x, y));
}
if (polygon.Count >= 2 && AreSamePoint(polygon[0], polygon[^1]))
{
polygon.RemoveAt(polygon.Count - 1);
}
return polygon.Count >= 3;
}
catch (JsonException)
{
return false;
}
}
private static bool IsPointInPolygon(IReadOnlyList<Point> polygon, double x, double y)
{
var inside = false;
for (var i = 0; i < polygon.Count; i++)
{
var j = i == 0 ? polygon.Count - 1 : i - 1;
var xi = polygon[i].Longitude;
var yi = polygon[i].Latitude;
var xj = polygon[j].Longitude;
var yj = polygon[j].Latitude;
var intersect = ((yi > y) != (yj > y)) && (x < (xj - xi) * (y - yi) / (yj - yi + double.Epsilon) + xi);
if (intersect)
{
inside = !inside;
}
}
return inside;
}
private static bool AreSamePoint(Point first, Point second)
=> Math.Abs(first.Longitude - second.Longitude) <= 1e-6
&& Math.Abs(first.Latitude - second.Latitude) <= 1e-6;
private readonly record struct Point(double Longitude, double Latitude);
}

View File

@@ -0,0 +1,221 @@
using System.Text.Json;
using TakeoutSaaS.Application.App.Stores.Services;
namespace TakeoutSaaS.Infrastructure.App.Services;
/// <summary>
/// GeoJSON 校验服务实现。
/// </summary>
public sealed class GeoJsonValidationService : IGeoJsonValidationService
{
private const double CoordinateTolerance = 1e-6;
/// <inheritdoc />
public GeoJsonValidationResult ValidatePolygon(string geoJson)
{
// 1. 基础校验
if (string.IsNullOrWhiteSpace(geoJson))
{
return BuildInvalid("GeoJSON 不能为空");
}
// 2. (空行后) 解析与验证结构
try
{
using var document = JsonDocument.Parse(geoJson);
var root = document.RootElement;
if (root.ValueKind != JsonValueKind.Object)
{
return BuildInvalid("GeoJSON 格式错误");
}
if (!root.TryGetProperty("type", out var typeElement) || typeElement.ValueKind != JsonValueKind.String)
{
return BuildInvalid("GeoJSON 缺少 type");
}
var type = typeElement.GetString();
if (!string.Equals(type, "Polygon", StringComparison.OrdinalIgnoreCase))
{
return BuildInvalid("仅支持 Polygon 类型");
}
if (!root.TryGetProperty("coordinates", out var coordinatesElement) || coordinatesElement.ValueKind != JsonValueKind.Array)
{
return BuildInvalid("GeoJSON 缺少 coordinates");
}
if (coordinatesElement.GetArrayLength() == 0)
{
return BuildInvalid("GeoJSON coordinates 为空");
}
var ringElement = coordinatesElement[0];
if (ringElement.ValueKind != JsonValueKind.Array)
{
return BuildInvalid("GeoJSON 坐标格式错误");
}
var points = new List<Point>();
foreach (var pointElement in ringElement.EnumerateArray())
{
if (pointElement.ValueKind != JsonValueKind.Array || pointElement.GetArrayLength() < 2)
{
return BuildInvalid("坐标点格式错误");
}
if (!pointElement[0].TryGetDouble(out var longitude) || !pointElement[1].TryGetDouble(out var latitude))
{
return BuildInvalid("坐标点必须为数值");
}
points.Add(new Point(longitude, latitude));
}
if (points.Count < 3)
{
return BuildInvalid("多边形至少需要 3 个点");
}
var distinctCount = CountDistinct(points);
if (distinctCount < 3)
{
return BuildInvalid("多边形坐标点不足");
}
var normalized = Normalize(points, out var normalizedJson);
if (normalized.Count < 4)
{
return BuildInvalid("多边形至少需要 4 个点(含闭合点)");
}
if (HasSelfIntersection(normalized))
{
return BuildInvalid("多边形存在自相交");
}
return new GeoJsonValidationResult
{
IsValid = true,
NormalizedGeoJson = normalizedJson
};
}
catch (JsonException)
{
return BuildInvalid("GeoJSON 解析失败");
}
}
private static GeoJsonValidationResult BuildInvalid(string message) => new()
{
IsValid = false,
ErrorMessage = message
};
private static int CountDistinct(IReadOnlyList<Point> points)
{
var distinct = new List<Point>();
foreach (var point in points)
{
if (distinct.Any(existing => AreSamePoint(existing, point)))
{
continue;
}
distinct.Add(point);
}
return distinct.Count;
}
private static List<Point> Normalize(IReadOnlyList<Point> points, out string? normalizedJson)
{
var normalized = new List<Point>(points);
if (!AreSamePoint(normalized[0], normalized[^1]))
{
normalized.Add(normalized[0]);
normalizedJson = BuildGeoJson(normalized);
return normalized;
}
normalizedJson = null;
return normalized;
}
private static string BuildGeoJson(IReadOnlyList<Point> points)
{
var coordinates = points
.Select(point => new[] { point.Longitude, point.Latitude })
.ToArray();
var payload = new Dictionary<string, object?>
{
{ "type", "Polygon" },
{ "coordinates", new[] { coordinates } }
};
return JsonSerializer.Serialize(payload);
}
private static bool HasSelfIntersection(IReadOnlyList<Point> points)
{
var segmentCount = points.Count - 1;
for (var i = 0; i < segmentCount; i++)
{
var a1 = points[i];
var a2 = points[i + 1];
for (var j = i + 1; j < segmentCount; j++)
{
if (Math.Abs(i - j) <= 1)
{
continue;
}
if (i == 0 && j == segmentCount - 1)
{
continue;
}
var b1 = points[j];
var b2 = points[j + 1];
if (SegmentsIntersect(a1, a2, b1, b2))
{
return true;
}
}
}
return false;
}
private static bool SegmentsIntersect(Point p1, Point q1, Point p2, Point q2)
{
var o1 = Orientation(p1, q1, p2);
var o2 = Orientation(p1, q1, q2);
var o3 = Orientation(p2, q2, p1);
var o4 = Orientation(p2, q2, q1);
if (o1 != o2 && o3 != o4)
{
return true;
}
if (o1 == 0 && OnSegment(p1, p2, q1))
{
return true;
}
if (o2 == 0 && OnSegment(p1, q2, q1))
{
return true;
}
if (o3 == 0 && OnSegment(p2, p1, q2))
{
return true;
}
if (o4 == 0 && OnSegment(p2, q1, q2))
{
return true;
}
return false;
}
private static int Orientation(Point p, Point q, Point r)
{
var value = (q.Latitude - p.Latitude) * (r.Longitude - q.Longitude)
- (q.Longitude - p.Longitude) * (r.Latitude - q.Latitude);
if (Math.Abs(value) <= CoordinateTolerance)
{
return 0;
}
return value > 0 ? 1 : 2;
}
private static bool OnSegment(Point p, Point q, Point r)
=> q.Longitude <= Math.Max(p.Longitude, r.Longitude) + CoordinateTolerance
&& q.Longitude >= Math.Min(p.Longitude, r.Longitude) - CoordinateTolerance
&& q.Latitude <= Math.Max(p.Latitude, r.Latitude) + CoordinateTolerance
&& q.Latitude >= Math.Min(p.Latitude, r.Latitude) - CoordinateTolerance;
private static bool AreSamePoint(Point first, Point second)
=> Math.Abs(first.Longitude - second.Longitude) <= CoordinateTolerance
&& Math.Abs(first.Latitude - second.Latitude) <= CoordinateTolerance;
private readonly record struct Point(double Longitude, double Latitude);
}

View File

@@ -0,0 +1,92 @@
using System.Globalization;
using TakeoutSaaS.Application.App.Stores.Dto;
using TakeoutSaaS.Application.App.Stores.Services;
using TakeoutSaaS.Domain.Stores.Entities;
using TakeoutSaaS.Domain.Stores.Enums;
using TakeoutSaaS.Shared.Abstractions.Constants;
using TakeoutSaaS.Shared.Abstractions.Exceptions;
namespace TakeoutSaaS.Infrastructure.App.Services;
/// <summary>
/// 门店费用计算服务实现。
/// </summary>
public sealed class StoreFeeCalculationService : IStoreFeeCalculationService
{
/// <inheritdoc />
public StoreFeeCalculationResultDto Calculate(StoreFee fee, StoreFeeCalculationRequestDto request)
{
// 1. 计算起送费满足情况
var minimum = fee.MinimumOrderAmount;
if (request.OrderAmount < minimum)
{
var shortfall = minimum - request.OrderAmount;
var message = $"还差{shortfall.ToString("0.##", CultureInfo.InvariantCulture)}元起送";
return new StoreFeeCalculationResultDto
{
OrderAmount = request.OrderAmount,
MinimumOrderAmount = minimum,
MeetsMinimum = false,
Shortfall = shortfall,
DeliveryFee = 0m,
PackagingFee = 0m,
PackagingFeeMode = fee.PackagingFeeMode,
TotalFee = 0m,
TotalAmount = request.OrderAmount,
Message = message
};
}
// 2. (空行后) 计算配送费
var deliveryFee = fee.BaseDeliveryFee;
if (fee.FreeDeliveryThreshold.HasValue && request.OrderAmount >= fee.FreeDeliveryThreshold.Value)
{
deliveryFee = 0m;
}
// 3. (空行后) 计算打包费
var packagingFee = 0m;
IReadOnlyList<StoreFeeCalculationBreakdownDto>? breakdown = null;
if (fee.PackagingFeeMode == PackagingFeeMode.Fixed)
{
packagingFee = fee.FixedPackagingFee;
}
else
{
if (request.Items.Count == 0)
{
throw new BusinessException(ErrorCodes.ValidationFailed, "商品计费模式必须提供商品列表");
}
var list = new List<StoreFeeCalculationBreakdownDto>(request.Items.Count);
foreach (var item in request.Items)
{
var subtotal = item.PackagingFee * item.Quantity;
packagingFee += subtotal;
list.Add(new StoreFeeCalculationBreakdownDto
{
SkuId = item.SkuId,
Quantity = item.Quantity,
UnitFee = item.PackagingFee,
Subtotal = subtotal
});
}
breakdown = list;
}
// 4. (空行后) 汇总结果
var totalFee = deliveryFee + packagingFee;
var totalAmount = request.OrderAmount + totalFee;
return new StoreFeeCalculationResultDto
{
OrderAmount = request.OrderAmount,
MinimumOrderAmount = minimum,
MeetsMinimum = true,
DeliveryFee = deliveryFee,
PackagingFee = packagingFee,
PackagingFeeMode = fee.PackagingFeeMode,
PackagingFeeBreakdown = breakdown,
TotalFee = totalFee,
TotalAmount = totalAmount
};
}
}

View File

@@ -0,0 +1,198 @@
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using TakeoutSaaS.Application.App.Stores.Services;
using TakeoutSaaS.Domain.Stores.Entities;
using TakeoutSaaS.Domain.Stores.Enums;
using TakeoutSaaS.Infrastructure.App.Persistence;
namespace TakeoutSaaS.Infrastructure.App.Services;
/// <summary>
/// 门店定时任务服务实现。
/// </summary>
public sealed class StoreSchedulerService(
TakeoutAppDbContext context,
ILogger<StoreSchedulerService> logger)
: IStoreSchedulerService
{
/// <inheritdoc />
public async Task<int> AutoSwitchBusinessStatusAsync(DateTime now, CancellationToken cancellationToken)
{
// 1. 读取候选门店
var stores = await context.Stores
.Where(store => store.DeletedAt == null
&& store.AuditStatus == StoreAuditStatus.Activated
&& store.BusinessStatus != StoreBusinessStatus.ForceClosed)
.ToListAsync(cancellationToken);
if (stores.Count == 0)
{
return 0;
}
// 2. (空行后) 读取营业时段与休息日
var storeIds = stores.Select(store => store.Id).ToArray();
var hours = await context.StoreBusinessHours
.AsNoTracking()
.Where(hour => storeIds.Contains(hour.StoreId))
.ToListAsync(cancellationToken);
var today = now.Date;
var holidays = await context.StoreHolidays
.AsNoTracking()
.Where(holiday => storeIds.Contains(holiday.StoreId)
&& holiday.IsClosed
&& holiday.Date.Date == today)
.ToListAsync(cancellationToken);
// 3. (空行后) 构造查找表
var hoursLookup = hours
.GroupBy(hour => hour.StoreId)
.ToDictionary(group => group.Key, group => (IReadOnlyList<StoreBusinessHour>)group.ToList());
var holidaySet = holidays.Select(holiday => holiday.StoreId).ToHashSet();
// 4. (空行后) 判定状态并更新
var updated = 0;
foreach (var store in stores)
{
// 4.1 跳过强制关闭门店
if (store.BusinessStatus == StoreBusinessStatus.ForceClosed)
{
continue;
}
// 4.2 (空行后) 尊重手动歇业原因
if (store.ClosureReason.HasValue && store.ClosureReason != StoreClosureReason.OutOfBusinessHours)
{
continue;
}
// 4.3 (空行后) 计算营业状态
var isHolidayClosed = holidaySet.Contains(store.Id);
var hasHours = hoursLookup.TryGetValue(store.Id, out var storeHours) && storeHours.Count > 0;
var isOpen = !isHolidayClosed && hasHours && IsWithinBusinessHours(storeHours ?? [], now);
if (isOpen)
{
if (store.BusinessStatus != StoreBusinessStatus.Open)
{
store.BusinessStatus = StoreBusinessStatus.Open;
store.ClosureReason = null;
store.ClosureReasonText = null;
updated++;
}
continue;
}
// 4.4 (空行后) 非营业时段切换为休息
if (store.BusinessStatus != StoreBusinessStatus.Resting || store.ClosureReason != StoreClosureReason.OutOfBusinessHours)
{
store.BusinessStatus = StoreBusinessStatus.Resting;
store.ClosureReason = StoreClosureReason.OutOfBusinessHours;
store.ClosureReasonText = "非营业时间自动休息";
updated++;
}
}
// 5. (空行后) 保存变更并记录日志
if (updated > 0)
{
await context.SaveChangesAsync(cancellationToken);
}
logger.LogInformation("定时任务:营业状态自动切换完成,更新 {UpdatedCount} 家门店", updated);
return updated;
}
/// <inheritdoc />
public async Task<int> CheckQualificationExpiryAsync(DateTime now, CancellationToken cancellationToken)
{
// 1. 查询过期门店
var expiredStoreIds = await context.StoreQualifications
.AsNoTracking()
.Where(qualification => qualification.DeletedAt == null
&& qualification.ExpiresAt.HasValue
&& qualification.ExpiresAt.Value < now)
.Select(qualification => qualification.StoreId)
.Distinct()
.ToListAsync(cancellationToken);
if (expiredStoreIds.Count == 0)
{
return 0;
}
// 2. (空行后) 加载门店并更新状态
var stores = await context.Stores
.Where(store => expiredStoreIds.Contains(store.Id)
&& store.DeletedAt == null
&& store.AuditStatus == StoreAuditStatus.Activated
&& store.BusinessStatus != StoreBusinessStatus.ForceClosed)
.ToListAsync(cancellationToken);
var updated = 0;
foreach (var store in stores)
{
// 2.1 跳过已标记过期门店
if (store.BusinessStatus == StoreBusinessStatus.Resting && store.ClosureReason == StoreClosureReason.LicenseExpired)
{
continue;
}
// 2.2 (空行后) 设置资质过期状态
store.BusinessStatus = StoreBusinessStatus.Resting;
store.ClosureReason = StoreClosureReason.LicenseExpired;
store.ClosureReasonText = "证照过期自动休息";
updated++;
}
// 3. (空行后) 保存变更并记录日志
if (updated > 0)
{
await context.SaveChangesAsync(cancellationToken);
}
logger.LogInformation("定时任务:资质过期检查完成,更新 {UpdatedCount} 家门店", updated);
return updated;
}
private static bool IsWithinBusinessHours(IReadOnlyList<StoreBusinessHour> hours, DateTime now)
{
// 1. 提取当前时间
var day = now.DayOfWeek;
var time = now.TimeOfDay;
foreach (var hour in hours)
{
if (hour.HourType == BusinessHourType.Closed)
{
continue;
}
if (hour.StartTime == hour.EndTime)
{
continue;
}
if (hour.StartTime < hour.EndTime)
{
if (hour.DayOfWeek == day && time >= hour.StartTime && time < hour.EndTime)
{
return true;
}
continue;
}
var nextDay = NextDay(hour.DayOfWeek);
if (hour.DayOfWeek == day && time >= hour.StartTime)
{
return true;
}
if (nextDay == day && time < hour.EndTime)
{
return true;
}
}
return false;
}
private static DayOfWeek NextDay(DayOfWeek day)
{
var next = (int)day + 1;
return next > 6 ? DayOfWeek.Sunday : (DayOfWeek)next;
}
}