2026-05-08 00:15:11 -03:00
|
|
|
using Domain.Constants;
|
|
|
|
|
|
2026-05-07 00:33:34 -03:00
|
|
|
namespace Domain.Dtos.Sales
|
|
|
|
|
{
|
|
|
|
|
public class SalesDocumentCreateDetailRequest
|
|
|
|
|
{
|
|
|
|
|
public int LineNumber { get; set; }
|
2026-05-08 00:15:11 -03:00
|
|
|
public SalesDocumentOriginType OriginType { get; set; }
|
2026-05-07 00:33:34 -03:00
|
|
|
public int? OriginId { get; set; }
|
|
|
|
|
public int? QuoteDetailId { get; set; }
|
|
|
|
|
public int? ProductId { get; set; }
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
|
public decimal Quantity { get; set; }
|
|
|
|
|
public decimal? AuthorizedUnitPrice { get; set; }
|
|
|
|
|
public decimal? AuthorizedAmount { get; set; }
|
|
|
|
|
public decimal? BilledPercentage { get; set; }
|
|
|
|
|
public decimal UnitPrice { get; set; }
|
|
|
|
|
public decimal NetAmount { get; set; }
|
|
|
|
|
public decimal TaxAmount { get; set; }
|
|
|
|
|
public decimal TotalAmount { get; set; }
|
|
|
|
|
public string? OriginSnapshotJson { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|