36 lines
1 KiB
C#
36 lines
1 KiB
C#
// Domain/Entities/CrmSalesOrderItem.cs
|
|
using System;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
namespace Erp.Platform.Entities;
|
|
|
|
public class SalesOrderItem : FullAuditedEntity<Guid>, IMultiTenant
|
|
{
|
|
public Guid? TenantId { get; set; }
|
|
|
|
public Guid SalesOrderId { get; set; }
|
|
public SalesOrder SalesOrder { get; set; }
|
|
|
|
public Guid MaterialId { get; set; }
|
|
public Material Material { get; set; }
|
|
|
|
public decimal Quantity { get; set; }
|
|
public decimal DeliveredQuantity { get; set; } //Sadece listede
|
|
|
|
public decimal UnitPrice { get; set; }
|
|
public decimal TotalAmount { get; set; }
|
|
|
|
public string UomId { get; set; }
|
|
public Uom Uom { get; set; }
|
|
|
|
public decimal DiscountRate { get; set; }
|
|
public decimal DiscountAmount { get; set; }
|
|
|
|
public decimal TaxRate { get; set; }
|
|
public decimal TaxAmount { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
public string Notes { get; set; }
|
|
public string Status { get; set; }
|
|
}
|