31 lines
829 B
C#
31 lines
829 B
C#
|
|
using System;
|
||
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
||
|
|
using Volo.Abp.MultiTenancy;
|
||
|
|
|
||
|
|
namespace Erp.Platform.Entities;
|
||
|
|
|
||
|
|
public class InvoiceItem : FullAuditedEntity<Guid>, IMultiTenant
|
||
|
|
{
|
||
|
|
public Guid? TenantId { get; set; }
|
||
|
|
|
||
|
|
public Guid InvoiceId { get; set; }
|
||
|
|
public Invoice Invoice { get; set; }
|
||
|
|
|
||
|
|
public Guid? MaterialId { get; set; }
|
||
|
|
public Material Material { get; set; }
|
||
|
|
public string Uom { get; set; }
|
||
|
|
|
||
|
|
public string Description { get; set; }
|
||
|
|
|
||
|
|
public decimal Quantity { get; set; }
|
||
|
|
public decimal UnitPrice { get; set; }
|
||
|
|
public decimal LineTotal { get; set; }
|
||
|
|
|
||
|
|
public decimal DiscountRate { get; set; }
|
||
|
|
public decimal DiscountAmount { get; set; }
|
||
|
|
|
||
|
|
public decimal TaxRate { get; set; }
|
||
|
|
public decimal TaxAmount { get; set; }
|
||
|
|
public decimal NetAmount { get; set; }
|
||
|
|
}
|