POST api/store/stockingsuccesslist

分页获取已收货记录。(IsOrder为多余数据). data:开始时间,otherdata:结束时间

Request Information

URI Parameters

None.

Body Parameters

ApiPageOfNullableOfDateTimeAndNullableOfDateTime
NameDescriptionTypeAdditional information
otherdata

date

None.

data

date

None.

PageIndex

页面起始项的索引,如{PageIndex=0,PageSize=10}:取0~9项(前十项);{PageIndex=10,PageSize=10}:取10~19项

integer

None.

PageSize

获取数量

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "otherdata": "2025-12-26T20:16:28.4311245+08:00",
  "data": "2025-12-26T20:16:28.4311245+08:00",
  "PageIndex": 1,
  "PageSize": 2
}

application/xml, text/xml

Sample:
<ApiPageOfNullableOfdateTimeNullableOfdateTime_ShTDFhl_P xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Request">
  <PageIndex>1</PageIndex>
  <PageSize>2</PageSize>
  <data>2025-12-26T20:16:28.4311245+08:00</data>
  <otherdata>2025-12-26T20:16:28.4311245+08:00</otherdata>
</ApiPageOfNullableOfdateTimeNullableOfdateTime_ShTDFhl_P>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponsePageOfListOfStoreGetStockingSuccessModel
NameDescriptionTypeAdditional information
isLastPage

boolean

None.

totalItem

integer

None.

data

Collection of StoreGetStockingSuccessModel

None.

errcode

错误码,默认为成功:SUCCESS

string

None.

errmsg

错误信息,默认为:成功

string

None.

Response Formats

application/json, text/json

Sample:
{
  "isLastPage": true,
  "totalItem": 2,
  "data": [
    {
      "No": "sample string 1",
      "VenderName": "sample string 2",
      "PickedTime": "2025-12-26T20:16:28.4311245+08:00",
      "Items": [
        {
          "ProductVarietyName": "sample string 1",
          "ProductClassName": "sample string 2",
          "Count": 3
        },
        {
          "ProductVarietyName": "sample string 1",
          "ProductClassName": "sample string 2",
          "Count": 3
        }
      ]
    },
    {
      "No": "sample string 1",
      "VenderName": "sample string 2",
      "PickedTime": "2025-12-26T20:16:28.4311245+08:00",
      "Items": [
        {
          "ProductVarietyName": "sample string 1",
          "ProductClassName": "sample string 2",
          "Count": 3
        },
        {
          "ProductVarietyName": "sample string 1",
          "ProductClassName": "sample string 2",
          "Count": 3
        }
      ]
    }
  ],
  "errcode": "sample string 3",
  "errmsg": "sample string 4"
}

application/xml, text/xml

Sample:
<ResponsePageOfArrayOfStoreGetStockingSuccessModelUJ8Augit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi">
  <errcode>sample string 3</errcode>
  <errmsg>sample string 4</errmsg>
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Response">
    <d2p1:StoreGetStockingSuccessModel>
      <d2p1:Items>
        <d2p1:StoreGetStockingSuccessItemModel>
          <d2p1:Count>3</d2p1:Count>
          <d2p1:ProductClassName>sample string 2</d2p1:ProductClassName>
          <d2p1:ProductVarietyName>sample string 1</d2p1:ProductVarietyName>
        </d2p1:StoreGetStockingSuccessItemModel>
        <d2p1:StoreGetStockingSuccessItemModel>
          <d2p1:Count>3</d2p1:Count>
          <d2p1:ProductClassName>sample string 2</d2p1:ProductClassName>
          <d2p1:ProductVarietyName>sample string 1</d2p1:ProductVarietyName>
        </d2p1:StoreGetStockingSuccessItemModel>
      </d2p1:Items>
      <d2p1:No>sample string 1</d2p1:No>
      <d2p1:PickedTime>2025-12-26T20:16:28.4311245+08:00</d2p1:PickedTime>
      <d2p1:VenderName>sample string 2</d2p1:VenderName>
    </d2p1:StoreGetStockingSuccessModel>
    <d2p1:StoreGetStockingSuccessModel>
      <d2p1:Items>
        <d2p1:StoreGetStockingSuccessItemModel>
          <d2p1:Count>3</d2p1:Count>
          <d2p1:ProductClassName>sample string 2</d2p1:ProductClassName>
          <d2p1:ProductVarietyName>sample string 1</d2p1:ProductVarietyName>
        </d2p1:StoreGetStockingSuccessItemModel>
        <d2p1:StoreGetStockingSuccessItemModel>
          <d2p1:Count>3</d2p1:Count>
          <d2p1:ProductClassName>sample string 2</d2p1:ProductClassName>
          <d2p1:ProductVarietyName>sample string 1</d2p1:ProductVarietyName>
        </d2p1:StoreGetStockingSuccessItemModel>
      </d2p1:Items>
      <d2p1:No>sample string 1</d2p1:No>
      <d2p1:PickedTime>2025-12-26T20:16:28.4311245+08:00</d2p1:PickedTime>
      <d2p1:VenderName>sample string 2</d2p1:VenderName>
    </d2p1:StoreGetStockingSuccessModel>
  </data>
  <isLastPage>true</isLastPage>
  <totalItem>2</totalItem>
</ResponsePageOfArrayOfStoreGetStockingSuccessModelUJ8Augit>