Businese.InventoryDAL.GetCompanyStock

Parameters:

Name Type Description
Date Nullable<DateTime>

Returns: List<ProductStock>

Sample:

Request:

    {
    "jsonrpc": "2.0",
    "method": "Businese.InventoryDAL.GetCompanyStock",
    "params": {
        "Date" : "2026-03-21T19:06:38.5052168+08:00" /* [Nullable<DateTime>]*/
        
    },
    "id": 1,
    "tags": {
        "usertoken": "",
        "sessionid": ""
    }
  }
Response:
{
  "jsonrpc": "2.0",
  "result": [
    {
      "ProductId": "",
      "ProductCode": "",
      "ProductName": "",
      "Spec": "",
      "Unit": "",
      "Qty": 0.0,
      "IdValues": [
        ""
      ]
    }
  ],
  "error": null,
  "id": 1
}