|
|
|
|
using System.Collections.Immutable;
|
|
|
|
|
using Connected.Caching;
|
|
|
|
|
using Connected.Entities;
|
|
|
|
|
using Connected.Entities.Storage;
|
|
|
|
|
using Connected.Notifications.Events;
|
|
|
|
|
using Connected.ServiceModel;
|
|
|
|
|
using Connected.Services;
|
|
|
|
|
|
|
|
|
|
namespace Logistics.Types.WarehouseLocations;
|
|
|
|
|
internal sealed class WarehouseLocationOps
|
|
|
|
|
{
|
|
|
|
|
public sealed class Delete : ServiceAction<PrimaryKeyArgs<int>>
|
|
|
|
|
{
|
|
|
|
|
public Delete(IStorageProvider storage, IWarehouseLocationService locations, IEventService events, ICachingService cache)
|
|
|
|
|
{
|
|
|
|
|
Storage = storage;
|
|
|
|
|
Locations = locations;
|
|
|
|
|
Events = events;
|
|
|
|
|
Cache = cache;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IStorageProvider Storage { get; }
|
|
|
|
|
private IWarehouseLocationService Locations { get; }
|
|
|
|
|
private IEventService Events { get; }
|
|
|
|
|
private ICachingService Cache { get; }
|
|
|
|
|
|
|
|
|
|
protected override async Task OnInvoke()
|
|
|
|
|
{
|
|
|
|
|
if (await Locations.Select(Arguments.Id) is not IWarehouseLocation entity)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
SetState(entity);
|
|
|
|
|
|
|
|
|
|
await Storage.Open<WarehouseLocation>().Update(Arguments.AsEntity<WarehouseLocation>(State.Deleted));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async Task OnCommitted()
|
|
|
|
|
{
|
|
|
|
|
await Cache.Remove(WarehouseLocation.EntityKey, Arguments.Id);
|
|
|
|
|
await Events.Enqueue(this, Events, nameof(IWarehouseLocationService.Deleted), Arguments);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public sealed class Insert : ServiceFunction<InsertWarehouseLocationArgs, int>
|
|
|
|
|
{
|
|
|
|
|
public Insert(IStorageProvider storage, IEventService events)
|
|
|
|
|
{
|
|
|
|
|
Storage = storage;
|
|
|
|
|
Events = events;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IStorageProvider Storage { get; }
|
|
|
|
|
private IEventService Events { get; }
|
|
|
|
|
|
|
|
|
|
protected override async Task<int> OnInvoke()
|
|
|
|
|
{
|
|
|
|
|
return (await Storage.Open<WarehouseLocation>().Update(Arguments.AsEntity<WarehouseLocation>(State.New))).Id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async Task OnCommitted()
|
|
|
|
|
{
|
|
|
|
|
await Events.Enqueue(this, Events, nameof(IWarehouseLocationService.Inserted), Arguments);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public sealed class Query : ServiceFunction<QueryArgs, ImmutableList<IWarehouseLocation>>
|
|
|
|
|
{
|
|
|
|
|
public Query(IWarehouseLocationCache locations)
|
|
|
|
|
{
|
|
|
|
|
Locations = locations;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IWarehouseLocationCache Locations { get; }
|
|
|
|
|
|
|
|
|
|
protected override async Task<ImmutableList<IWarehouseLocation>> OnInvoke()
|
|
|
|
|
{
|
|
|
|
|
return await (from e in Locations
|
|
|
|
|
select e).WithArguments(Arguments).AsEntities<IWarehouseLocation>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public sealed class QueryByWarehouse : ServiceFunction<QueryWarehouseLocationArgs, ImmutableList<IWarehouseLocation>>
|
|
|
|
|
{
|
|
|
|
|
public QueryByWarehouse(IWarehouseLocationCache locations)
|
|
|
|
|
{
|
|
|
|
|
Locations = locations;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IWarehouseLocationCache Locations { get; }
|
|
|
|
|
|
|
|
|
|
protected override async Task<ImmutableList<IWarehouseLocation>> OnInvoke()
|
|
|
|
|
{
|
|
|
|
|
return await (from e in Locations
|
|
|
|
|
where e.Warehouse == Arguments.Warehouse
|
|
|
|
|
select e).WithArguments(Arguments).AsEntities<IWarehouseLocation>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public sealed class QueryChildren : ServiceFunction<QueryWarehouseLocationChildrenArgs, ImmutableList<IWarehouseLocation>>
|
|
|
|
|
{
|
|
|
|
|
public QueryChildren(IWarehouseLocationCache locations)
|
|
|
|
|
{
|
|
|
|
|
Locations = locations;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IWarehouseLocationCache Locations { get; }
|
|
|
|
|
|
|
|
|
|
protected override async Task<ImmutableList<IWarehouseLocation>> OnInvoke()
|
|
|
|
|
{
|
|
|
|
|
return await (from e in Locations
|
|
|
|
|
where e.Warehouse == Arguments.Warehouse
|
|
|
|
|
&& (Arguments.Parent is null || e.Parent == Arguments.Parent)
|
|
|
|
|
select e).WithArguments(Arguments).AsEntities<IWarehouseLocation>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public sealed class Lookup : ServiceFunction<PrimaryKeyListArgs<int>, ImmutableList<IWarehouseLocation>>
|
|
|
|
|
{
|
|
|
|
|
public Lookup(IWarehouseLocationCache locations)
|
|
|
|
|
{
|
|
|
|
|
Locations = locations;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IWarehouseLocationCache Locations { get; }
|
|
|
|
|
|
|
|
|
|
protected override async Task<ImmutableList<IWarehouseLocation>> OnInvoke()
|
|
|
|
|
{
|
|
|
|
|
return await (from e in Locations
|
|
|
|
|
where Arguments.IdList.Any(f => f == e.Id)
|
|
|
|
|
select e).AsEntities<IWarehouseLocation>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public sealed class Select : NullableServiceFunction<PrimaryKeyArgs<int>, IWarehouseLocation>
|
|
|
|
|
{
|
|
|
|
|
public Select(IWarehouseLocationCache locations)
|
|
|
|
|
{
|
|
|
|
|
Locations = locations;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IWarehouseLocationCache Locations { get; }
|
|
|
|
|
|
|
|
|
|
protected override async Task<IWarehouseLocation?> OnInvoke()
|
|
|
|
|
{
|
|
|
|
|
return await (from e in Locations
|
|
|
|
|
where e.Id == Arguments.Id
|
|
|
|
|
select e).AsEntity();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public sealed class SelectByCode : NullableServiceFunction<SelectWarehouseLocationArgs, IWarehouseLocation>
|
|
|
|
|
{
|
|
|
|
|
public SelectByCode(IWarehouseLocationCache locations)
|
|
|
|
|
{
|
|
|
|
|
Locations = locations;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IWarehouseLocationCache Locations { get; }
|
|
|
|
|
|
|
|
|
|
protected override async Task<IWarehouseLocation?> OnInvoke()
|
|
|
|
|
{
|
|
|
|
|
return await (from e in Locations
|
|
|
|
|
where string.Equals(e.Code, Arguments.Code, StringComparison.OrdinalIgnoreCase)
|
|
|
|
|
select e).AsEntity();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public sealed class Update : ServiceAction<UpdateWarehouseLocationArgs>
|
|
|
|
|
{
|
|
|
|
|
public Update(IStorageProvider storage, IWarehouseLocationCache cache, IWarehouseLocationService locations, IEventService events)
|
|
|
|
|
{
|
|
|
|
|
Storage = storage;
|
|
|
|
|
Cache = cache;
|
|
|
|
|
Locations = locations;
|
|
|
|
|
Events = events;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IStorageProvider Storage { get; }
|
|
|
|
|
private IWarehouseLocationCache Cache { get; }
|
|
|
|
|
private IWarehouseLocationService Locations { get; }
|
|
|
|
|
private IEventService Events { get; }
|
|
|
|
|
|
|
|
|
|
protected override async Task OnInvoke()
|
|
|
|
|
{
|
|
|
|
|
if (SetState(await Locations.Select(Arguments.Id)) is not WarehouseLocation entity)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
await Storage.Open<WarehouseLocation>().Update(entity.Merge(Arguments, State.Default), Arguments, async () =>
|
|
|
|
|
{
|
|
|
|
|
await Cache.Refresh(Arguments.Id);
|
|
|
|
|
|
|
|
|
|
return SetState(await Locations.Select(Arguments.Id)) as WarehouseLocation;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async Task OnCommitted()
|
|
|
|
|
{
|
|
|
|
|
await Cache.Refresh(Arguments.Id);
|
|
|
|
|
await Events.Enqueue(this, Locations, nameof(Locations.Updated), Arguments);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|