DespatchLines
This is the field where all details of the items (Goods / Services) in the waybill will be entered.
public class DespatchLineDto
{
public string DeliveredUnitType { get; set; }
public string DeliveredUnitName { get; set; }
public string Name { get; set; }
public string SellerCode { get; set; }
public string BuyerCode { get; set; }
public string Description { get; set; }
public decimal DeliveredQuantity { get; set; }
public decimal QuantityPrice { get; set; }
public decimal LineTotal { get; set; }
public string AdditionalItemIdentification { get; set; }
public decimal OutstandingQuantity { get; set; }
public string OutstandingUnitType { get; set; }
public string OutstandingUnitName { get; set; }
public string OutstandingReason { get; set; }
public string ManufacturerCode { get; set; }
public string BrandName { get; set; }
public string ModelName { get; set; }
}
DeliveredUnitType
string
Optional
This is the field where the unit type of the product to be sent later will be entered.
DeliveredUnitName
string
Optional
This is the field where the name of the product to be sent later will be entered.
Name
string
Optional
This is the field where the name of the product will be entered.
SellerCode
string
Compulsory
This is the field where the seller code of the product will be entered.
BuyerCode
string
Optional
This is the field where the recipient code of the product will be entered.
Description
decimal
Optional
This is the field where the description of the product will be entered.
DeliveredQuantity
string
Optional
This is the field where the quantity of the product to be sent later will be entered.
QuantityPrice
string
Compulsory
This is the field where the unit price will be entered.
LineTotal
decimal
Compulsory
This is the field where the line total will be entered.
AditionalItemIdentification
decimal
Optional
This is the field where additional product description will be entered.
OutstandingQuantity
decimal
Optional
This is the field where the quantity of the product to be sent later will be entered.
OutstandingUnitType
List
Optional
This is the field where the unit of the product to be sent later will be entered.
OutstandingUnitName
string
Optional
This is the field where the name of the product to be sent later will be entered.
OutstandingReason
string
Optional
This is the field where the reason for Posting will be entered.
ManufacturerCode
string
Optional
This is the field where the manufacturer code will be entered.r.
BrandName
string
Optional
This is the field where the brand name will be entered.
ModelName
string
Optional
This is the field where the model name will be entered.
Last updated