Relative request path: | api/orgs/{organisationId}/stockentry/{stockEntryId} |
Property | Description |
---|---|
organisationId | organisation id |
stockEntryId | stock entry id |
Request parameters:
Request parameters:
Request parameters:
Property | Description |
---|---|
StockEntryId | Stock entry id. Optional. |
StockEntryType | Stock entry type. Mandatory. Max length: 1. |
StockEntrySubtype | Stock entry subtype. Mandatory. Max length: 1. |
Date | Stock entry date. Mandatory. |
Number | Stock entry number. Mandatory. Readonly. |
Customer | class Customer. Customer. |
Analytic | class Analytic. Analytic. |
Rabate | Rabate percent. Optional. |
Description | Description. Optional. Max length: 250. |
ValueOfReceipt | Value of receipt. Optional. |
PercentOfDirectCostsOfPurchase | Percent of direct costs of purchase. Optional. |
Currency | class Currency. Currency. |
ExchangeRate | Exchange rate. Optional. |
DeliveryNoteReportTemplate | class ReportTemplate. Report settings for delivery note:
|
DeliveryNoteDescriptionAbove | The description that appears on delivery note above. Optional. Max length: 8000. |
DeliveryNoteDescriptionBelow | The description that appears on delivery note below. Optional. Max length: 8000. |
AddresseeName | Addressee name. Optional. Max length: 250. |
AddresseeAddress | Addressee address. Optional. Max length: 250. |
AddresseePostalCode | Addressee postal code. Optional. Max length: 250. |
AddresseeCity | Addressee city. Optional. Max length: 250. |
AddresseeCountryName | Addressee country name. Prohibited use when AddresseeCountry is set as home country. Optional. Max length: 250. |
AddresseeCountry | class Country. Addressee country. |
RecipientName | Recipient name. Optional. Max length: 250. |
RecipientAddress | Recipient address. Optional. Max length: 250. |
RecipientPostalCode | Recipient postal code. Optional. Max length: 250. |
RecipientCity | Recipient city. Optional. Max length: 250. |
RecipientCountryName | Recipient country name. Prohibited use when RecipientCountry is set as home country. Optional. Max length: 250. |
RecipientCountry | class Country. Recipient country. |
Status | Stock entry status:
|
StockEntryRows | Stock entry rows. List of StockEntryRow. |
RecordDtModified | Optional. |
RowVersion | Row version is used for concurrency check. |
This method returns result of type 'SAOP.API.Models.Stock.StockEntry'.
/// Stock entry details.
public class StockEntry
{
// Stock entry id.
public long? StockEntryId { get; set; }
// Stock entry type.
// Mandatory field. Max length: 1
public string StockEntryType { get; set; }
// Stock entry subtype.
// Mandatory field. Max length: 1
public string StockEntrySubtype { get; set; }
// Stock entry date.
// Mandatory field.
public DateTime? Date { get; set; }
// Stock entry number.
// Mandatory field.
public long? Number { get; set; }
// Customer.
public mMApiFkField Customer { get; set; }
// Analytic.
public mMApiFkField Analytic { get; set; }
// Rabate percent.
public Decimal Rabate { get; set; }
// Description.
// Max length: 250
public string Description { get; set; }
// Value of receipt.
public Decimal ValueOfReceipt { get; set; }
// Percent of direct costs of purchase.
public Decimal PercentOfDirectCostsOfPurchase { get; set; }
// Currency.
public mMApiFkField Currency { get; set; }
// Exchange rate.
public Decimal ExchangeRate { get; set; }
// Report settings for delivery note:
// <ul>
//     <li>DO – for delivery note</li>
// </ul>
public mMApiFkField DeliveryNoteReportTemplate { get; set; }
// The description that appears on delivery note above.
// Max length: 8000
public string DeliveryNoteDescriptionAbove { get; set; }
// The description that appears on delivery note below.
// Max length: 8000
public string DeliveryNoteDescriptionBelow { get; set; }
// Addressee name.
// Max length: 250
public string AddresseeName { get; set; }
// Addressee address.
// Max length: 250
public string AddresseeAddress { get; set; }
// Addressee postal code.
// Max length: 250
public string AddresseePostalCode { get; set; }
// Addressee city.
// Max length: 250
public string AddresseeCity { get; set; }
// Addressee country name. Prohibited use when AddresseeCountry is set as home country.
// Max length: 250
public string AddresseeCountryName { get; set; }
// Addressee country.
public mMApiFkField AddresseeCountry { get; set; }
// Recipient name.
// Max length: 250
public string RecipientName { get; set; }
// Recipient address.
// Max length: 250
public string RecipientAddress { get; set; }
// Recipient postal code.
// Max length: 250
public string RecipientPostalCode { get; set; }
// Recipient city.
// Max length: 250
public string RecipientCity { get; set; }
// Recipient country name. Prohibited use when RecipientCountry is set as home country.
// Max length: 250
public string RecipientCountryName { get; set; }
// Recipient country.
public mMApiFkField RecipientCountry { get; set; }
// Stock entry status:
// <ul>
//     <li>P – Confirmed,</li>
//     <li>O – Draft</li>
// </ul>
// Mandatory field. Max length: 1
public string Status { get; set; }
// Stock entry rows.
public List<StockEntryRow> StockEntryRows { get; set; }
public DateTime RecordDtModified { get; set; }
// Row version is used for concurrency check.
// Mandatory field. Ignored on create request.
public string RowVersion { get; set; }
}
/// Link with id, name and url to related data.
public class mMApiFkField
{
// Record id.
public long? ID { get; set; }
// Record name.
public string Name { get; private set; }
// Url to full record details.
public string ResourceUrl { get; private set; }
}
/// Stock entry details.
public class StockEntryRow
{
// Stock entry row id.
public long? StockEntryRowId { get; set; }
// Stock entry.
public mMApiFkField StockEntry { get; set; }
// Stock entry row number.
// Mandatory field.
public int? RowNumber { get; set; }
// Item.
public mMApiFkField Item { get; set; }
// Warehouse from.
public mMApiFkField WarehouseFrom { get; set; }
// Warehouse to.
public mMApiFkField WarehouseTo { get; set; }
// Item quantity.
public Decimal Quantity { get; set; }
// Item price.
// Mandatory field.
public Decimal Price { get; set; }
// Discount value in percent.
// Mandatory field.
public Decimal DiscountPercent { get; set; }
// Linked stock row for returning goods.
public mMApiFkField LinkedStockEntryRow { get; set; }
// Margin value in percent.
public Decimal MarginPercent { get; set; }
// Item selling price.
public Decimal SellingPrice { get; set; }
// Value.
public Decimal Value { get; set; }
// Serial number.
// Max length: 30
public string SerialNumber { get; set; }
// Mass of item in kilogram.
public Decimal Mass { get; set; }
// Item average purchase price.
public Decimal AveragePrice { get; set; }
public DateTime RecordDtModified { get; set; }
// Row version is used for concurrency check.
// Mandatory field. Ignored on create request.
public string RowVersion { get; set; }
}
/// Link with id, name and url to related data.
public class mMApiFkField
{
// Record id.
public long? ID { get; set; }
// Record name.
public string Name { get; private set; }
// Url to full record details.
public string ResourceUrl { get; private set; }
}
This method returns result of type 'SAOP.API.Models.Stock.StockEntry'.
/// Stock entry details.
class StockEntry
{
// Stock entry id.
public $StockEntryId;
// Stock entry type.
// Mandatory field. Max length: 1
public $StockEntryType;
// Stock entry subtype.
// Mandatory field. Max length: 1
public $StockEntrySubtype;
// Stock entry date.
// Mandatory field.
public $Date;
// Stock entry number.
// Mandatory field.
public $Number;
// Customer.
public $Customer;
// Analytic.
public $Analytic;
// Rabate percent.
public $Rabate;
// Description.
// Max length: 250
public $Description;
// Value of receipt.
public $ValueOfReceipt;
// Percent of direct costs of purchase.
public $PercentOfDirectCostsOfPurchase;
// Currency.
public $Currency;
// Exchange rate.
public $ExchangeRate;
// Report settings for delivery note:
// <ul>
//     <li>DO – for delivery note</li>
// </ul>
public $DeliveryNoteReportTemplate;
// The description that appears on delivery note above.
// Max length: 8000
public $DeliveryNoteDescriptionAbove;
// The description that appears on delivery note below.
// Max length: 8000
public $DeliveryNoteDescriptionBelow;
// Addressee name.
// Max length: 250
public $AddresseeName;
// Addressee address.
// Max length: 250
public $AddresseeAddress;
// Addressee postal code.
// Max length: 250
public $AddresseePostalCode;
// Addressee city.
// Max length: 250
public $AddresseeCity;
// Addressee country name. Prohibited use when AddresseeCountry is set as home country.
// Max length: 250
public $AddresseeCountryName;
// Addressee country.
public $AddresseeCountry;
// Recipient name.
// Max length: 250
public $RecipientName;
// Recipient address.
// Max length: 250
public $RecipientAddress;
// Recipient postal code.
// Max length: 250
public $RecipientPostalCode;
// Recipient city.
// Max length: 250
public $RecipientCity;
// Recipient country name. Prohibited use when RecipientCountry is set as home country.
// Max length: 250
public $RecipientCountryName;
// Recipient country.
public $RecipientCountry;
// Stock entry status:
// <ul>
//     <li>P – Confirmed,</li>
//     <li>O – Draft</li>
// </ul>
// Mandatory field. Max length: 1
public $Status;
// Stock entry rows.
public $StockEntryRows;
public $RecordDtModified;
// Row version is used for concurrency check.
// Mandatory field. Ignored on create request.
public $RowVersion;
}
/// Link with id, name and url to related data.
class mMApiFkField
{
// Record id.
public $ID;
// Record name.
public $Name;
// Url to full record details.
public $ResourceUrl;
}
/// Stock entry details.
class StockEntryRow
{
// Stock entry row id.
public $StockEntryRowId;
// Stock entry.
public $StockEntry;
// Stock entry row number.
// Mandatory field.
public $RowNumber;
// Item.
public $Item;
// Warehouse from.
public $WarehouseFrom;
// Warehouse to.
public $WarehouseTo;
// Item quantity.
public $Quantity;
// Item price.
// Mandatory field.
public $Price;
// Discount value in percent.
// Mandatory field.
public $DiscountPercent;
// Linked stock row for returning goods.
public $LinkedStockEntryRow;
// Margin value in percent.
public $MarginPercent;
// Item selling price.
public $SellingPrice;
// Value.
public $Value;
// Serial number.
// Max length: 30
public $SerialNumber;
// Mass of item in kilogram.
public $Mass;
// Item average purchase price.
public $AveragePrice;
public $RecordDtModified;
// Row version is used for concurrency check.
// Mandatory field. Ignored on create request.
public $RowVersion;
}
/// Link with id, name and url to related data.
class mMApiFkField
{
// Record id.
public $ID;
// Record name.
public $Name;
// Url to full record details.
public $ResourceUrl;
}
This method returns result of type 'SAOP.API.Models.Stock.StockEntry'.
/// Stock entry details.
public class StockEntry
{
// Stock entry id.
public Long StockEntryId;
// Stock entry type.
// Mandatory field. Max length: 1
public String StockEntryType;
// Stock entry subtype.
// Mandatory field. Max length: 1
public String StockEntrySubtype;
// Stock entry date.
// Mandatory field.
public Date Date;
// Stock entry number.
// Mandatory field.
public Long Number;
// Customer.
public mMApiFkField Customer;
// Analytic.
public mMApiFkField Analytic;
// Rabate percent.
public Double Rabate;
// Description.
// Max length: 250
public String Description;
// Value of receipt.
public Double ValueOfReceipt;
// Percent of direct costs of purchase.
public Double PercentOfDirectCostsOfPurchase;
// Currency.
public mMApiFkField Currency;
// Exchange rate.
public Double ExchangeRate;
// Report settings for delivery note:
// <ul>
//     <li>DO – for delivery note</li>
// </ul>
public mMApiFkField DeliveryNoteReportTemplate;
// The description that appears on delivery note above.
// Max length: 8000
public String DeliveryNoteDescriptionAbove;
// The description that appears on delivery note below.
// Max length: 8000
public String DeliveryNoteDescriptionBelow;
// Addressee name.
// Max length: 250
public String AddresseeName;
// Addressee address.
// Max length: 250
public String AddresseeAddress;
// Addressee postal code.
// Max length: 250
public String AddresseePostalCode;
// Addressee city.
// Max length: 250
public String AddresseeCity;
// Addressee country name. Prohibited use when AddresseeCountry is set as home country.
// Max length: 250
public String AddresseeCountryName;
// Addressee country.
public mMApiFkField AddresseeCountry;
// Recipient name.
// Max length: 250
public String RecipientName;
// Recipient address.
// Max length: 250
public String RecipientAddress;
// Recipient postal code.
// Max length: 250
public String RecipientPostalCode;
// Recipient city.
// Max length: 250
public String RecipientCity;
// Recipient country name. Prohibited use when RecipientCountry is set as home country.
// Max length: 250
public String RecipientCountryName;
// Recipient country.
public mMApiFkField RecipientCountry;
// Stock entry status:
// <ul>
//     <li>P – Confirmed,</li>
//     <li>O – Draft</li>
// </ul>
// Mandatory field. Max length: 1
public String Status;
// Stock entry rows.
public List<StockEntryRow> StockEntryRows;
public Date RecordDtModified;
// Row version is used for concurrency check.
// Mandatory field. Ignored on create request.
public String RowVersion;
}
/// Link with id, name and url to related data.
public class mMApiFkField
{
// Record id.
public Long ID;
// Record name.
public String Name;
// Url to full record details.
public String ResourceUrl;
}
/// Stock entry details.
public class StockEntryRow
{
// Stock entry row id.
public Long StockEntryRowId;
// Stock entry.
public mMApiFkField StockEntry;
// Stock entry row number.
// Mandatory field.
public Integer RowNumber;
// Item.
public mMApiFkField Item;
// Warehouse from.
public mMApiFkField WarehouseFrom;
// Warehouse to.
public mMApiFkField WarehouseTo;
// Item quantity.
public Double Quantity;
// Item price.
// Mandatory field.
public Double Price;
// Discount value in percent.
// Mandatory field.
public Double DiscountPercent;
// Linked stock row for returning goods.
public mMApiFkField LinkedStockEntryRow;
// Margin value in percent.
public Double MarginPercent;
// Item selling price.
public Double SellingPrice;
// Value.
public Double Value;
// Serial number.
// Max length: 30
public String SerialNumber;
// Mass of item in kilogram.
public Double Mass;
// Item average purchase price.
public Double AveragePrice;
public Date RecordDtModified;
// Row version is used for concurrency check.
// Mandatory field. Ignored on create request.
public String RowVersion;
}
/// Link with id, name and url to related data.
public class mMApiFkField
{
// Record id.
public Long ID;
// Record name.
public String Name;
// Url to full record details.
public String ResourceUrl;
}
{
"StockEntryId": 1,
"StockEntryType": "sample string 1",
"StockEntrySubtype": "sample string 2",
"ReceiptFromFarmer": "sample string 3",
"Date": "2019-12-10T04:07:52.5471438+01:00",
"Number": 1,
"Customer": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"Analytic": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"Rabate": 4.0,
"Description": "sample string 5",
"ValueOfReceipt": 6.0,
"PercentOfDirectCostsOfPurchase": 7.0,
"Currency": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"ExchangeRate": 8.0,
"DeliveryNoteReportTemplate": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"DeliveryNoteDescriptionAbove": "sample string 9",
"DeliveryNoteDescriptionBelow": "sample string 10",
"AddresseeName": "sample string 11",
"AddresseeAddress": "sample string 12",
"AddresseePostalCode": "sample string 13",
"AddresseeCity": "sample string 14",
"AddresseeCountryName": "sample string 15",
"AddresseeCountry": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"RecipientName": "sample string 16",
"RecipientAddress": "sample string 17",
"RecipientPostalCode": "sample string 18",
"RecipientCity": "sample string 19",
"RecipientCountryName": "sample string 20",
"RecipientCountry": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"Status": "sample string 21",
"StockEntryRows": [
{
"StockEntryRowId": 1,
"StockEntry": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"RowNumber": 1,
"Item": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"WarehouseFrom": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"WarehouseTo": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"Quantity": 1.0,
"Price": 2.0,
"DiscountPercent": 3.0,
"LinkedStockEntryRow": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"MarginPercent": 4.0,
"SellingPrice": 5.0,
"Value": 6.0,
"SerialNumber": "sample string 7",
"Mass": 8.0,
"AveragePrice": 9.0,
"RecordDtModified": "2019-12-10T04:07:52.5471438+01:00",
"RowVersion": "sample string 11"
},
{
"StockEntryRowId": 1,
"StockEntry": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"RowNumber": 1,
"Item": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"WarehouseFrom": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"WarehouseTo": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"Quantity": 1.0,
"Price": 2.0,
"DiscountPercent": 3.0,
"LinkedStockEntryRow": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"MarginPercent": 4.0,
"SellingPrice": 5.0,
"Value": 6.0,
"SerialNumber": "sample string 7",
"Mass": 8.0,
"AveragePrice": 9.0,
"RecordDtModified": "2019-12-10T04:07:52.5471438+01:00",
"RowVersion": "sample string 11"
},
{
"StockEntryRowId": 1,
"StockEntry": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"RowNumber": 1,
"Item": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"WarehouseFrom": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"WarehouseTo": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"Quantity": 1.0,
"Price": 2.0,
"DiscountPercent": 3.0,
"LinkedStockEntryRow": {
"ID": 1,
"Name": "sample string 1",
"ResourceUrl": "sample string 2"
},
"MarginPercent": 4.0,
"SellingPrice": 5.0,
"Value": 6.0,
"SerialNumber": "sample string 7",
"Mass": 8.0,
"AveragePrice": 9.0,
"RecordDtModified": "2019-12-10T04:07:52.5471438+01:00",
"RowVersion": "sample string 11"
}
],
"RecordDtModified": "2019-12-10T04:07:52.5471438+01:00",
"RowVersion": "sample string 23"
}
<StockEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAOP.API.Models.Stock">
<RecordDtModified xmlns="http://schemas.datacontract.org/2004/07/SAOP.API.Models">2019-12-10T04:07:52.5471438+01:00</RecordDtModified>
<RowVersion xmlns="http://schemas.datacontract.org/2004/07/SAOP.API.Models">sample string 23</RowVersion>
<AddresseeAddress>sample string 12</AddresseeAddress>
<AddresseeCity>sample string 14</AddresseeCity>
<AddresseeCountry xmlns:d2p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d2p1:ID>1</d2p1:ID>
</AddresseeCountry>
<AddresseeCountryName>sample string 15</AddresseeCountryName>
<AddresseeName>sample string 11</AddresseeName>
<AddresseePostalCode>sample string 13</AddresseePostalCode>
<Analytic xmlns:d2p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d2p1:ID>1</d2p1:ID>
</Analytic>
<Currency xmlns:d2p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d2p1:ID>1</d2p1:ID>
</Currency>
<Customer xmlns:d2p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d2p1:ID>1</d2p1:ID>
</Customer>
<Date>2019-12-10T04:07:52.5471438+01:00</Date>
<DeliveryNoteDescriptionAbove>sample string 9</DeliveryNoteDescriptionAbove>
<DeliveryNoteDescriptionBelow>sample string 10</DeliveryNoteDescriptionBelow>
<DeliveryNoteReportTemplate xmlns:d2p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d2p1:ID>1</d2p1:ID>
</DeliveryNoteReportTemplate>
<Description>sample string 5</Description>
<ExchangeRate>8</ExchangeRate>
<Number>1</Number>
<PercentOfDirectCostsOfPurchase>7</PercentOfDirectCostsOfPurchase>
<Rabate>4</Rabate>
<ReceiptFromFarmer>sample string 3</ReceiptFromFarmer>
<RecipientAddress>sample string 17</RecipientAddress>
<RecipientCity>sample string 19</RecipientCity>
<RecipientCountry xmlns:d2p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d2p1:ID>1</d2p1:ID>
</RecipientCountry>
<RecipientCountryName>sample string 20</RecipientCountryName>
<RecipientName>sample string 16</RecipientName>
<RecipientPostalCode>sample string 18</RecipientPostalCode>
<Status>sample string 21</Status>
<StockEntryId>1</StockEntryId>
<StockEntryRows>
<StockEntryRow>
<RecordDtModified xmlns="http://schemas.datacontract.org/2004/07/SAOP.API.Models">2019-12-10T04:07:52.5471438+01:00</RecordDtModified>
<RowVersion xmlns="http://schemas.datacontract.org/2004/07/SAOP.API.Models">sample string 11</RowVersion>
<AveragePrice>9</AveragePrice>
<DiscountPercent>3</DiscountPercent>
<Item xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</Item>
<LinkedStockEntryRow xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</LinkedStockEntryRow>
<MarginPercent>4</MarginPercent>
<Mass>8</Mass>
<Price>2</Price>
<Quantity>1</Quantity>
<RowNumber>1</RowNumber>
<SellingPrice>5</SellingPrice>
<SerialNumber>sample string 7</SerialNumber>
<StockEntry xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</StockEntry>
<StockEntryRowId>1</StockEntryRowId>
<Value>6</Value>
<WarehouseFrom xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</WarehouseFrom>
<WarehouseTo xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</WarehouseTo>
</StockEntryRow>
<StockEntryRow>
<RecordDtModified xmlns="http://schemas.datacontract.org/2004/07/SAOP.API.Models">2019-12-10T04:07:52.5471438+01:00</RecordDtModified>
<RowVersion xmlns="http://schemas.datacontract.org/2004/07/SAOP.API.Models">sample string 11</RowVersion>
<AveragePrice>9</AveragePrice>
<DiscountPercent>3</DiscountPercent>
<Item xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</Item>
<LinkedStockEntryRow xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</LinkedStockEntryRow>
<MarginPercent>4</MarginPercent>
<Mass>8</Mass>
<Price>2</Price>
<Quantity>1</Quantity>
<RowNumber>1</RowNumber>
<SellingPrice>5</SellingPrice>
<SerialNumber>sample string 7</SerialNumber>
<StockEntry xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</StockEntry>
<StockEntryRowId>1</StockEntryRowId>
<Value>6</Value>
<WarehouseFrom xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</WarehouseFrom>
<WarehouseTo xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</WarehouseTo>
</StockEntryRow>
<StockEntryRow>
<RecordDtModified xmlns="http://schemas.datacontract.org/2004/07/SAOP.API.Models">2019-12-10T04:07:52.5471438+01:00</RecordDtModified>
<RowVersion xmlns="http://schemas.datacontract.org/2004/07/SAOP.API.Models">sample string 11</RowVersion>
<AveragePrice>9</AveragePrice>
<DiscountPercent>3</DiscountPercent>
<Item xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</Item>
<LinkedStockEntryRow xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</LinkedStockEntryRow>
<MarginPercent>4</MarginPercent>
<Mass>8</Mass>
<Price>2</Price>
<Quantity>1</Quantity>
<RowNumber>1</RowNumber>
<SellingPrice>5</SellingPrice>
<SerialNumber>sample string 7</SerialNumber>
<StockEntry xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</StockEntry>
<StockEntryRowId>1</StockEntryRowId>
<Value>6</Value>
<WarehouseFrom xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</WarehouseFrom>
<WarehouseTo xmlns:d4p1="http://schemas.datacontract.org/2004/07/SAOP.API.Common">
<d4p1:ID>1</d4p1:ID>
</WarehouseTo>
</StockEntryRow>
</StockEntryRows>
<StockEntrySubtype>sample string 2</StockEntrySubtype>
<StockEntryType>sample string 1</StockEntryType>
<ValueOfReceipt>6</ValueOfReceipt>
</StockEntry>