This commit is contained in:
2024-05-16 10:37:44 +02:00
commit 64b26d6823
678 changed files with 154503 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
using System;
using System.Collections.Generic;
namespace Blink.Backoffice.Services.PcmDb.Entities;
public partial class PcpReceiptItem
{
public decimal PcpReceiptItemId { get; set; }
public decimal PcpReceiptId { get; set; }
public string? Barcode { get; set; }
public string ProductName { get; set; } = null!;
public short ProductType { get; set; }
public short IsReturn { get; set; }
public decimal Price { get; set; }
public decimal Quantity { get; set; }
public decimal TotalBrutto { get; set; }
public decimal? TotalNetto { get; set; }
public decimal? VatRate { get; set; }
public string? VatChar { get; set; }
public short DiscountType { get; set; }
public decimal DiscountValue { get; set; }
public decimal TotalDiscount { get; set; }
public virtual PcpReceipt PcpReceipt { get; set; } = null!;
}