Hello Community,
I create a salesorder using API. Here is the JSON that I send to API:
{
"customerId": "a4df5dc2-*******-******-002248ad8355",
"currencyCode": "USD",
"orderDate": "2022-01-01",
"salesOrderLines": [
{
"description": "SDChargeFee",
"quantity": 1,
"lineType": "Item"
}
]
}
But, when I open business central sales order page, the OrderDate is set to today's date. This is not what I expect. Because the items that I defined in business central have various pricings based on the date. Because the salesOrder date is not set correctly, the price that business central picks for the item is not as expected. So, the question is why the salesOrder date is not what I put in API? is this a bug?
Thanks in advance,