2026-06-23 17:34:45 +06:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Integrations;
|
|
|
|
|
|
|
|
|
|
|
|
public class IntegrationMaterialPriceResponse : ResponseBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public int MaterialPriceId { get; set; }
|
|
|
|
|
|
public string SalesOrg { get; set; }
|
|
|
|
|
|
public string DistributionChannel { get; set; }
|
2026-06-25 19:08:21 +06:00
|
|
|
|
public string? CustomerNumber { get; set; }
|
|
|
|
|
|
public string? CustomerGroupCode { get; set; }
|
2026-06-23 17:34:45 +06:00
|
|
|
|
public string MaterialCode { get; set; }
|
|
|
|
|
|
public string ConditionType { get; set; }
|
|
|
|
|
|
public string CalculationType { get; set; }
|
|
|
|
|
|
public string PricingUnit { get; set; }
|
|
|
|
|
|
public string UnitOfMeasure { get; set; }
|
|
|
|
|
|
public DateTime ValidFrom { get; set; }
|
|
|
|
|
|
public DateTime ValidTo { get; set; }
|
|
|
|
|
|
public string Status { get; set; }
|
|
|
|
|
|
public decimal ConditionValue { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class MaterialIntegrationPriceReqResponse : ResponseBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public string MaterialCode { get; set; }
|
|
|
|
|
|
public string ConditionType { get; set; }
|
2026-06-25 19:08:21 +06:00
|
|
|
|
public string? CustomerNumber { get; set; }
|
|
|
|
|
|
public string? CustomerGroupCode { get; set; }
|
2026-06-23 17:34:45 +06:00
|
|
|
|
public bool IsUpdated { get; set; }
|
|
|
|
|
|
}
|