Businese.OrderDAL.GetItemsById
获取订单明细
Parameters:
| Name |
Type |
Description |
| RecordId |
String |
订单Id |
Sample:
Request:
{
"jsonrpc": "2.0",
"method": "Businese.OrderDAL.GetItemsById",
"params": {
"RecordId" : "" /*订单Id [String]*/
},
"id": 1,
"tags": {
"usertoken": "",
"sessionid": ""
}
}
Response:
{
"jsonrpc": "2.0",
"result": [
{
"DtlId": "" /*明细Id*/,
"RecordId": "" /*单据Id*/,
"CartItemId": "" /*对应的购物车项Id*/,
"ProductId": "" /*商品Id*/,
"ProductCode": "" /*商品编号*/,
"ProductName": "" /*商品名称*/,
"Spec": "" /*规格*/,
"UnitName": "" /*计量单位*/,
"Qty": 0.0 /*数量*/,
"Price": 0.0 /*单价*/,
"Amount": 0.0 /*金额*/,
"Remark": "" /*备注*/,
"RetailPrice": 0.0 /*零售单价*/,
"ChangeType": 0,
"CancelAmtOneTime": false /*取消单次最低补货金额限制*/,
"CancelMaxAmtOneDay": false /*取消单日最高订货金额限制*/,
"CancelMaxStock": false /*取消最大库存量限制*/
}
],
"error": null,
"id": 1
}