This commit is contained in:
2026-05-19 16:45:53 +02:00
parent e80c8894ea
commit ae32eef32a
735 changed files with 15154 additions and 147132 deletions

View File

@@ -1,54 +1,57 @@
namespace Blink.Backoffice.Services.PcmDb.Entities;
using System;
using System.Collections.Generic;
public partial class PcpReceipt
{
public decimal PcpReceiptId { get; set; }
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class PcpReceipt
{
public decimal PcpReceiptId { get; set; }
public decimal? KontrId { get; set; }
public decimal? KontrId { get; set; }
public string? CustomerCode { get; set; }
public string? CustomerCode { get; set; }
public string? CustomerNip { get; set; }
public string? CustomerNip { get; set; }
public int PcpPosId { get; set; }
public int PcpPosId { get; set; }
public string? PosCode { get; set; }
public string? PosCode { get; set; }
public short? ShopNo { get; set; }
public short? ShopNo { get; set; }
public short? PosNo { get; set; }
public short? PosNo { get; set; }
public string? TransUUID { get; set; }
public string? TransUUID { get; set; }
public string? FiscalUniqueNo { get; set; }
public string? FiscalUniqueNo { get; set; }
public string ReceiptSysNo { get; set; } = null!;
public string ReceiptSysNo { get; set; } = null!;
public int? PrinterNumber { get; set; }
public int? PrinterNumber { get; set; }
public string? DocNo { get; set; }
public string? DocNo { get; set; }
public string? Cashier { get; set; }
public string? Cashier { get; set; }
public DateTime OperationDateTime { get; set; }
public DateTime OperationDateTime { get; set; }
public decimal TotalBrutto { get; set; }
public decimal TotalBrutto { get; set; }
public decimal? TotalNetto { get; set; }
public decimal? TotalNetto { get; set; }
public decimal? TotalDiscount { get; set; }
public decimal? TotalDiscount { get; set; }
public DateTime Created { get; set; }
public DateTime Created { get; set; }
public DateTime Updated { get; set; }
public DateTime Updated { get; set; }
public virtual Kontrahent? Kontr { get; set; }
public virtual Kontrahent? Kontr { get; set; }
public virtual PcpPos PcpPos { get; set; } = null!;
public virtual PcpPos PcpPos { get; set; } = null!;
public virtual ICollection<PcpReceiptItem> PcpReceiptItem { get; set; } = new List<PcpReceiptItem>();
public virtual ICollection<PcpReceiptItem> PcpReceiptItem { get; set; } = new List<PcpReceiptItem>();
public virtual ICollection<PcpReceiptPayment> PcpReceiptPayment { get; set; } = new List<PcpReceiptPayment>();
public virtual ICollection<PcpReceiptPayment> PcpReceiptPayment { get; set; } = new List<PcpReceiptPayment>();
public virtual ICollection<PcpReceiptVat> PcpReceiptVat { get; set; } = new List<PcpReceiptVat>();
}
public virtual ICollection<PcpReceiptVat> PcpReceiptVat { get; set; } = new List<PcpReceiptVat>();
}