change response type in order item

This commit is contained in:
dibakor 2026-07-19 09:54:04 +06:00
parent 38e557fbfd
commit 794086917b

View File

@ -52,12 +52,12 @@ public class GetSalesOrderItemResponse
public string MaterialName { get; set; } public string MaterialName { get; set; }
public decimal UnitPrice { get; set; } public decimal UnitPrice { get; set; }
public string SalesUnit { get; set; } public string SalesUnit { get; set; }
public decimal PromoQuantity { get; set; } public decimal? PromoQuantity { get; set; }
public decimal OrderQuantity { get; set; } public decimal? OrderQuantity { get; set; }
public decimal ValidatedQuantity { get; set; } public decimal? ValidatedQuantity { get; set; }
public decimal ApprovedQuantity { get; set; } public decimal? ApprovedQuantity { get; set; }
public decimal DiscountPercentage { get; set; } public decimal? DiscountPercentage { get; set; }
public decimal DiscountAmount { get; set; } public decimal? DiscountAmount { get; set; }
public bool IsFocItem { get; set; } public bool IsFocItem { get; set; }
public decimal LineTotalValue { get; set; } public decimal LineTotalValue { get; set; }
} }