Businese.InventoryDAL.AddStock

Parameters:

Name Type Description
BillType String
BillId String
Operation String
DealerId String
ProdId String
Qty Decimal
LogTime Nullable<DateTime>

Returns: Void

Sample:

Request:

    {
    "jsonrpc": "2.0",
    "method": "Businese.InventoryDAL.AddStock",
    "params": {
        "BillType" : "" /* [String]*/,
        "BillId" : "" /* [String]*/,
        "Operation" : "" /* [String]*/,
        "DealerId" : "" /* [String]*/,
        "ProdId" : "" /* [String]*/,
        "Qty" : 1.9 /* [Decimal]*/,
        "LogTime" : "2026-03-21T19:02:40.0477991+08:00" /* [Nullable<DateTime>]*/
        
    },
    "id": 1,
    "tags": {
        "usertoken": "",
        "sessionid": ""
    }
  }
Response:
{
  "jsonrpc": "2.0",
  "result": null,
  "error": null,
  "id": 1
}