Domain (foodmarket.Domain.Purchases):
- Supply: Number (auto "П-{yyyy}-{000001}" per tenant), Date, Status
(Draft/Posted), Supplier (Counterparty), Store, Currency, invoice refs,
Notes, Total, PostedAt/PostedByUserId, Lines.
- SupplyLine: ProductId, Quantity, UnitPrice, LineTotal, SortOrder.
EF: supplies + supply_lines tables, unique index (tenant,Number), indexes
by date/status/supplier/product. Migration Phase2b_Supply applied.
API (/api/purchases/supplies, roles Admin/Manager/Storekeeper for mutations):
- GET list with filters (status, storeId, supplierId, search by number/name),
projected columns.
- GET {id} with full line list joined to products + units.
- POST create draft (lines optional at creation, grand total computed).
- PUT update — replaces all lines; rejected if already Posted.
- DELETE — drafts only.
- POST {id}/post — creates +qty StockMovements via IStockService.ApplyMovementAsync
for each line, flips to Posted, stamps PostedAt. Atomic (one SaveChanges).
- POST {id}/unpost — reverses with -qty movements tagged "supply-reversal",
returns to Draft so edits can resume.
- Auto-numbering scans existing numbers matching prefix per year+tenant.
Web:
- types: SupplyStatus, SupplyListRow, SupplyLineDto, SupplyDto.
- /purchases/supplies list (number, date, status badge, supplier, store,
line count, total in currency).
- /purchases/supplies/new + /:id edit page (sticky top bar with
Back / Save / Post / Unpost / Delete; reqisites grid; lines table with
inline qty/price and running total + grand total in bottom row).
- ProductPicker modal: full-text search over products (name/article/barcode),
shows purchase price for quick reference, click to add line.
- Sidebar new group "Закупки" → "Приёмки" (TruckIcon).
Flow: create draft → add lines via picker → edit qty/price → Save → Post.
Posting writes StockMovement rows (visible on Движения) and updates Stock
aggregate (visible on Остатки). Unpost reverses in place.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1711 lines
61 KiB
C#
1711 lines
61 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
using foodmarket.Infrastructure.Persistence;
|
|
|
|
#nullable disable
|
|
|
|
namespace foodmarket.Infrastructure.Persistence.Migrations
|
|
{
|
|
[DbContext(typeof(AppDbContext))]
|
|
partial class AppDbContextModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasDefaultSchema("public")
|
|
.HasAnnotation("ProductVersion", "8.0.11")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
|
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<System.Guid>", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer");
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<string>("ClaimType")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ClaimValue")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("RoleId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
b.ToTable("AspNetRoleClaims", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<System.Guid>", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer");
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<string>("ClaimType")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ClaimValue")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("AspNetUserClaims", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<System.Guid>", b =>
|
|
{
|
|
b.Property<string>("LoginProvider")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ProviderKey")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ProviderDisplayName")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("LoginProvider", "ProviderKey");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("AspNetUserLogins", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<System.Guid>", b =>
|
|
{
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("RoleId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("UserId", "RoleId");
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
b.ToTable("AspNetUserRoles", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<System.Guid>", b =>
|
|
{
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("LoginProvider")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Name")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Value")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("UserId", "LoginProvider", "Name");
|
|
|
|
b.ToTable("AspNetUserTokens", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreApplication", b =>
|
|
{
|
|
b.Property<string>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ApplicationType")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("ClientId")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.Property<string>("ClientSecret")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ClientType")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("ConcurrencyToken")
|
|
.IsConcurrencyToken()
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("ConsentType")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("DisplayNames")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("JsonWebKeySet")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Permissions")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("PostLogoutRedirectUris")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Properties")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("RedirectUris")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Requirements")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Settings")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("OpenIddictApplications", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreAuthorization", b =>
|
|
{
|
|
b.Property<string>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ApplicationId")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ConcurrencyToken")
|
|
.IsConcurrencyToken()
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<DateTime?>("CreationDate")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Properties")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Scopes")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Status")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("Subject")
|
|
.HasMaxLength(400)
|
|
.HasColumnType("character varying(400)");
|
|
|
|
b.Property<string>("Type")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApplicationId", "Status", "Subject", "Type");
|
|
|
|
b.ToTable("OpenIddictAuthorizations", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreScope", b =>
|
|
{
|
|
b.Property<string>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ConcurrencyToken")
|
|
.IsConcurrencyToken()
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("Description")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Descriptions")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("DisplayNames")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Name")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<string>("Properties")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Resources")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("OpenIddictScopes", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreToken", b =>
|
|
{
|
|
b.Property<string>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ApplicationId")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("AuthorizationId")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ConcurrencyToken")
|
|
.IsConcurrencyToken()
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<DateTime?>("CreationDate")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<DateTime?>("ExpirationDate")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Payload")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Properties")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime?>("RedemptionDate")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("ReferenceId")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.Property<string>("Status")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("Subject")
|
|
.HasMaxLength(400)
|
|
.HasColumnType("character varying(400)");
|
|
|
|
b.Property<string>("Type")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("AuthorizationId");
|
|
|
|
b.HasIndex("ReferenceId")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("ApplicationId", "Status", "Subject", "Type");
|
|
|
|
b.ToTable("OpenIddictTokens", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.Counterparty", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Address")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("BankAccount")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("BankName")
|
|
.HasMaxLength(255)
|
|
.HasColumnType("character varying(255)");
|
|
|
|
b.Property<string>("Bik")
|
|
.HasMaxLength(20)
|
|
.HasColumnType("character varying(20)");
|
|
|
|
b.Property<string>("Bin")
|
|
.HasMaxLength(20)
|
|
.HasColumnType("character varying(20)");
|
|
|
|
b.Property<string>("ContactPerson")
|
|
.HasMaxLength(255)
|
|
.HasColumnType("character varying(255)");
|
|
|
|
b.Property<Guid?>("CountryId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Email")
|
|
.HasMaxLength(255)
|
|
.HasColumnType("character varying(255)");
|
|
|
|
b.Property<string>("Iin")
|
|
.HasMaxLength(20)
|
|
.HasColumnType("character varying(20)");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<int>("Kind")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("LegalName")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("character varying(500)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(255)
|
|
.HasColumnType("character varying(255)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Phone")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("TaxNumber")
|
|
.HasMaxLength(20)
|
|
.HasColumnType("character varying(20)");
|
|
|
|
b.Property<int>("Type")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CountryId");
|
|
|
|
b.HasIndex("OrganizationId", "Bin");
|
|
|
|
b.HasIndex("OrganizationId", "Kind");
|
|
|
|
b.HasIndex("OrganizationId", "Name");
|
|
|
|
b.ToTable("counterparties", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.Country", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(2)
|
|
.HasColumnType("character varying(2)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Code")
|
|
.IsUnique();
|
|
|
|
b.ToTable("countries", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.Currency", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(3)
|
|
.HasColumnType("character varying(3)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<int>("MinorUnit")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.Property<string>("Symbol")
|
|
.IsRequired()
|
|
.HasMaxLength(5)
|
|
.HasColumnType("character varying(5)");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Code")
|
|
.IsUnique();
|
|
|
|
b.ToTable("currencies", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.PriceType", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsDefault")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsRetail")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("OrganizationId", "Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("price_types", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.Product", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Article")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("character varying(500)");
|
|
|
|
b.Property<Guid?>("CountryOfOriginId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<Guid?>("DefaultSupplierId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Description")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ImageUrl")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("character varying(1000)");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsAlcohol")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsMarked")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsService")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsWeighed")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<decimal?>("MaxStock")
|
|
.HasPrecision(18, 4)
|
|
.HasColumnType("numeric(18,4)");
|
|
|
|
b.Property<decimal?>("MinStock")
|
|
.HasPrecision(18, 4)
|
|
.HasColumnType("numeric(18,4)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(500)
|
|
.HasColumnType("character varying(500)");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("ProductGroupId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("PurchaseCurrencyId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<decimal?>("PurchasePrice")
|
|
.HasPrecision(18, 4)
|
|
.HasColumnType("numeric(18,4)");
|
|
|
|
b.Property<Guid>("UnitOfMeasureId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<Guid>("VatRateId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CountryOfOriginId");
|
|
|
|
b.HasIndex("DefaultSupplierId");
|
|
|
|
b.HasIndex("ProductGroupId");
|
|
|
|
b.HasIndex("PurchaseCurrencyId");
|
|
|
|
b.HasIndex("UnitOfMeasureId");
|
|
|
|
b.HasIndex("VatRateId");
|
|
|
|
b.HasIndex("OrganizationId", "Article");
|
|
|
|
b.HasIndex("OrganizationId", "IsActive");
|
|
|
|
b.HasIndex("OrganizationId", "Name");
|
|
|
|
b.HasIndex("OrganizationId", "ProductGroupId");
|
|
|
|
b.ToTable("products", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.ProductBarcode", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(500)
|
|
.HasColumnType("character varying(500)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<bool>("IsPrimary")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("ProductId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("Type")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ProductId");
|
|
|
|
b.HasIndex("OrganizationId", "Code")
|
|
.IsUnique();
|
|
|
|
b.ToTable("product_barcodes", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.ProductGroup", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("ParentId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Path")
|
|
.IsRequired()
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("character varying(1000)");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ParentId");
|
|
|
|
b.HasIndex("OrganizationId", "ParentId");
|
|
|
|
b.HasIndex("OrganizationId", "Path");
|
|
|
|
b.ToTable("product_groups", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.ProductImage", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<bool>("IsMain")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("ProductId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Url")
|
|
.IsRequired()
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("character varying(1000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ProductId");
|
|
|
|
b.ToTable("product_images", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.ProductPrice", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<decimal>("Amount")
|
|
.HasPrecision(18, 4)
|
|
.HasColumnType("numeric(18,4)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<Guid>("CurrencyId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("PriceTypeId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("ProductId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CurrencyId");
|
|
|
|
b.HasIndex("PriceTypeId");
|
|
|
|
b.HasIndex("ProductId", "PriceTypeId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("product_prices", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.RetailPoint", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Address")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Code")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("FiscalRegNumber")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("FiscalSerial")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Phone")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<Guid>("StoreId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("StoreId");
|
|
|
|
b.HasIndex("OrganizationId", "Name");
|
|
|
|
b.ToTable("retail_points", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.Store", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Address")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Code")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsMain")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<int>("Kind")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("ManagerName")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Phone")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("OrganizationId", "Name");
|
|
|
|
b.ToTable("stores", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.UnitOfMeasure", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(10)
|
|
.HasColumnType("character varying(10)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<int>("DecimalPlaces")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsBase")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Symbol")
|
|
.IsRequired()
|
|
.HasMaxLength(20)
|
|
.HasColumnType("character varying(20)");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("OrganizationId", "Code")
|
|
.IsUnique();
|
|
|
|
b.ToTable("units_of_measure", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.VatRate", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsDefault")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsIncludedInPrice")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<decimal>("Percent")
|
|
.HasPrecision(5, 2)
|
|
.HasColumnType("numeric(5,2)");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("OrganizationId", "Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("vat_rates", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Inventory.Stock", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("ProductId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<decimal>("Quantity")
|
|
.HasPrecision(18, 4)
|
|
.HasColumnType("numeric(18,4)");
|
|
|
|
b.Property<decimal>("ReservedQuantity")
|
|
.HasPrecision(18, 4)
|
|
.HasColumnType("numeric(18,4)");
|
|
|
|
b.Property<Guid>("StoreId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ProductId");
|
|
|
|
b.HasIndex("StoreId");
|
|
|
|
b.HasIndex("OrganizationId", "StoreId");
|
|
|
|
b.HasIndex("OrganizationId", "ProductId", "StoreId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("stocks", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Inventory.StockMovement", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<Guid?>("CreatedByUserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("DocumentId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("DocumentNumber")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("DocumentType")
|
|
.IsRequired()
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("character varying(500)");
|
|
|
|
b.Property<DateTime>("OccurredAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("ProductId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<decimal>("Quantity")
|
|
.HasPrecision(18, 4)
|
|
.HasColumnType("numeric(18,4)");
|
|
|
|
b.Property<Guid>("StoreId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("Type")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<decimal?>("UnitCost")
|
|
.HasPrecision(18, 4)
|
|
.HasColumnType("numeric(18,4)");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ProductId");
|
|
|
|
b.HasIndex("StoreId");
|
|
|
|
b.HasIndex("DocumentType", "DocumentId");
|
|
|
|
b.HasIndex("OrganizationId", "ProductId", "OccurredAt");
|
|
|
|
b.HasIndex("OrganizationId", "StoreId", "OccurredAt");
|
|
|
|
b.ToTable("stock_movements", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Organizations.Organization", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Address")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Bin")
|
|
.HasMaxLength(20)
|
|
.HasColumnType("character varying(20)");
|
|
|
|
b.Property<string>("CountryCode")
|
|
.IsRequired()
|
|
.HasMaxLength(2)
|
|
.HasColumnType("character varying(2)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Email")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<string>("Phone")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name");
|
|
|
|
b.ToTable("organizations", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Purchases.Supply", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<Guid>("CurrencyId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("Date")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("character varying(1000)");
|
|
|
|
b.Property<string>("Number")
|
|
.IsRequired()
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime?>("PostedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<Guid?>("PostedByUserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<Guid>("StoreId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("SupplierId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime?>("SupplierInvoiceDate")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("SupplierInvoiceNumber")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.Property<decimal>("Total")
|
|
.HasPrecision(18, 4)
|
|
.HasColumnType("numeric(18,4)");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CurrencyId");
|
|
|
|
b.HasIndex("StoreId");
|
|
|
|
b.HasIndex("SupplierId");
|
|
|
|
b.HasIndex("OrganizationId", "Date");
|
|
|
|
b.HasIndex("OrganizationId", "Number")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("OrganizationId", "Status");
|
|
|
|
b.HasIndex("OrganizationId", "SupplierId");
|
|
|
|
b.ToTable("supplies", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Purchases.SupplyLine", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<decimal>("LineTotal")
|
|
.HasPrecision(18, 4)
|
|
.HasColumnType("numeric(18,4)");
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("ProductId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<decimal>("Quantity")
|
|
.HasPrecision(18, 4)
|
|
.HasColumnType("numeric(18,4)");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<Guid>("SupplyId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<decimal>("UnitPrice")
|
|
.HasPrecision(18, 4)
|
|
.HasColumnType("numeric(18,4)");
|
|
|
|
b.Property<DateTime?>("UpdatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ProductId");
|
|
|
|
b.HasIndex("SupplyId");
|
|
|
|
b.HasIndex("OrganizationId", "ProductId");
|
|
|
|
b.ToTable("supply_lines", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Infrastructure.Identity.Role", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Description")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Name")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("NormalizedName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<Guid?>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("NormalizedName")
|
|
.IsUnique()
|
|
.HasDatabaseName("RoleNameIndex");
|
|
|
|
b.ToTable("roles", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Infrastructure.Identity.User", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("AccessFailedCount")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Email")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<bool>("EmailConfirmed")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("FullName")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime?>("LastLoginAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<bool>("LockoutEnabled")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTimeOffset?>("LockoutEnd")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("NormalizedEmail")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("NormalizedUserName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<Guid?>("OrganizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("PasswordHash")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("PhoneNumber")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("PhoneNumberConfirmed")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("SecurityStamp")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("TwoFactorEnabled")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("UserName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("NormalizedEmail")
|
|
.HasDatabaseName("EmailIndex");
|
|
|
|
b.HasIndex("NormalizedUserName")
|
|
.IsUnique()
|
|
.HasDatabaseName("UserNameIndex");
|
|
|
|
b.ToTable("users", "public");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<System.Guid>", b =>
|
|
{
|
|
b.HasOne("foodmarket.Infrastructure.Identity.Role", null)
|
|
.WithMany()
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<System.Guid>", b =>
|
|
{
|
|
b.HasOne("foodmarket.Infrastructure.Identity.User", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<System.Guid>", b =>
|
|
{
|
|
b.HasOne("foodmarket.Infrastructure.Identity.User", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<System.Guid>", b =>
|
|
{
|
|
b.HasOne("foodmarket.Infrastructure.Identity.Role", null)
|
|
.WithMany()
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("foodmarket.Infrastructure.Identity.User", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<System.Guid>", b =>
|
|
{
|
|
b.HasOne("foodmarket.Infrastructure.Identity.User", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreAuthorization", b =>
|
|
{
|
|
b.HasOne("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreApplication", "Application")
|
|
.WithMany("Authorizations")
|
|
.HasForeignKey("ApplicationId");
|
|
|
|
b.Navigation("Application");
|
|
});
|
|
|
|
modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreToken", b =>
|
|
{
|
|
b.HasOne("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreApplication", "Application")
|
|
.WithMany("Tokens")
|
|
.HasForeignKey("ApplicationId");
|
|
|
|
b.HasOne("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreAuthorization", "Authorization")
|
|
.WithMany("Tokens")
|
|
.HasForeignKey("AuthorizationId");
|
|
|
|
b.Navigation("Application");
|
|
|
|
b.Navigation("Authorization");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.Counterparty", b =>
|
|
{
|
|
b.HasOne("foodmarket.Domain.Catalog.Country", "Country")
|
|
.WithMany()
|
|
.HasForeignKey("CountryId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Country");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.Product", b =>
|
|
{
|
|
b.HasOne("foodmarket.Domain.Catalog.Country", "CountryOfOrigin")
|
|
.WithMany()
|
|
.HasForeignKey("CountryOfOriginId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.HasOne("foodmarket.Domain.Catalog.Counterparty", "DefaultSupplier")
|
|
.WithMany()
|
|
.HasForeignKey("DefaultSupplierId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.HasOne("foodmarket.Domain.Catalog.ProductGroup", "ProductGroup")
|
|
.WithMany()
|
|
.HasForeignKey("ProductGroupId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.HasOne("foodmarket.Domain.Catalog.Currency", "PurchaseCurrency")
|
|
.WithMany()
|
|
.HasForeignKey("PurchaseCurrencyId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.HasOne("foodmarket.Domain.Catalog.UnitOfMeasure", "UnitOfMeasure")
|
|
.WithMany()
|
|
.HasForeignKey("UnitOfMeasureId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("foodmarket.Domain.Catalog.VatRate", "VatRate")
|
|
.WithMany()
|
|
.HasForeignKey("VatRateId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("CountryOfOrigin");
|
|
|
|
b.Navigation("DefaultSupplier");
|
|
|
|
b.Navigation("ProductGroup");
|
|
|
|
b.Navigation("PurchaseCurrency");
|
|
|
|
b.Navigation("UnitOfMeasure");
|
|
|
|
b.Navigation("VatRate");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.ProductBarcode", b =>
|
|
{
|
|
b.HasOne("foodmarket.Domain.Catalog.Product", "Product")
|
|
.WithMany("Barcodes")
|
|
.HasForeignKey("ProductId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Product");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.ProductGroup", b =>
|
|
{
|
|
b.HasOne("foodmarket.Domain.Catalog.ProductGroup", "Parent")
|
|
.WithMany("Children")
|
|
.HasForeignKey("ParentId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Parent");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.ProductImage", b =>
|
|
{
|
|
b.HasOne("foodmarket.Domain.Catalog.Product", "Product")
|
|
.WithMany("Images")
|
|
.HasForeignKey("ProductId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Product");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.ProductPrice", b =>
|
|
{
|
|
b.HasOne("foodmarket.Domain.Catalog.Currency", "Currency")
|
|
.WithMany()
|
|
.HasForeignKey("CurrencyId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("foodmarket.Domain.Catalog.PriceType", "PriceType")
|
|
.WithMany()
|
|
.HasForeignKey("PriceTypeId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("foodmarket.Domain.Catalog.Product", "Product")
|
|
.WithMany("Prices")
|
|
.HasForeignKey("ProductId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Currency");
|
|
|
|
b.Navigation("PriceType");
|
|
|
|
b.Navigation("Product");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.RetailPoint", b =>
|
|
{
|
|
b.HasOne("foodmarket.Domain.Catalog.Store", "Store")
|
|
.WithMany()
|
|
.HasForeignKey("StoreId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Store");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Inventory.Stock", b =>
|
|
{
|
|
b.HasOne("foodmarket.Domain.Catalog.Product", "Product")
|
|
.WithMany()
|
|
.HasForeignKey("ProductId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("foodmarket.Domain.Catalog.Store", "Store")
|
|
.WithMany()
|
|
.HasForeignKey("StoreId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Product");
|
|
|
|
b.Navigation("Store");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Inventory.StockMovement", b =>
|
|
{
|
|
b.HasOne("foodmarket.Domain.Catalog.Product", "Product")
|
|
.WithMany()
|
|
.HasForeignKey("ProductId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("foodmarket.Domain.Catalog.Store", "Store")
|
|
.WithMany()
|
|
.HasForeignKey("StoreId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Product");
|
|
|
|
b.Navigation("Store");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Purchases.Supply", b =>
|
|
{
|
|
b.HasOne("foodmarket.Domain.Catalog.Currency", "Currency")
|
|
.WithMany()
|
|
.HasForeignKey("CurrencyId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("foodmarket.Domain.Catalog.Store", "Store")
|
|
.WithMany()
|
|
.HasForeignKey("StoreId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("foodmarket.Domain.Catalog.Counterparty", "Supplier")
|
|
.WithMany()
|
|
.HasForeignKey("SupplierId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Currency");
|
|
|
|
b.Navigation("Store");
|
|
|
|
b.Navigation("Supplier");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Purchases.SupplyLine", b =>
|
|
{
|
|
b.HasOne("foodmarket.Domain.Catalog.Product", "Product")
|
|
.WithMany()
|
|
.HasForeignKey("ProductId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("foodmarket.Domain.Purchases.Supply", "Supply")
|
|
.WithMany("Lines")
|
|
.HasForeignKey("SupplyId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Product");
|
|
|
|
b.Navigation("Supply");
|
|
});
|
|
|
|
modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreApplication", b =>
|
|
{
|
|
b.Navigation("Authorizations");
|
|
|
|
b.Navigation("Tokens");
|
|
});
|
|
|
|
modelBuilder.Entity("OpenIddict.EntityFrameworkCore.Models.OpenIddictEntityFrameworkCoreAuthorization", b =>
|
|
{
|
|
b.Navigation("Tokens");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.Product", b =>
|
|
{
|
|
b.Navigation("Barcodes");
|
|
|
|
b.Navigation("Images");
|
|
|
|
b.Navigation("Prices");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Catalog.ProductGroup", b =>
|
|
{
|
|
b.Navigation("Children");
|
|
});
|
|
|
|
modelBuilder.Entity("foodmarket.Domain.Purchases.Supply", b =>
|
|
{
|
|
b.Navigation("Lines");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|