POST api/vender/VenderSupplierSettlementList/ListMonth

【已过时】售出统计,填写年月日,如果日为0,则是全月,不为0则为那天的数据。返回的totalPrice为均值

Request Information

URI Parameters

None.

Body Parameters

ApiPageOfYearMonthDay
NameDescriptionTypeAdditional information
data

YearMonthDay

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:
{
  "data": {
    "Year": 1,
    "Month": 2,
    "Day": 3
  },
  "PageIndex": 1,
  "PageSize": 2
}

application/xml, text/xml

Sample:
<ApiPageOfYearMonthDayIoo5uFlX 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>
    <Day>3</Day>
    <Month>2</Month>
    <Year>1</Year>
  </data>
</ApiPageOfYearMonthDayIoo5uFlX>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseCountPageOfListOfVenderSupplierSettlementMonthModel
NameDescriptionTypeAdditional information
totalCount

integer

None.

totalPrice

decimal number

None.

isLastPage

boolean

None.

totalItem

integer

None.

data

Collection of VenderSupplierSettlementMonthModel

None.

errcode

错误码,默认为成功:SUCCESS

string

None.

errmsg

错误信息,默认为:成功

string

None.

Response Formats

application/json, text/json

Sample:
{
  "totalCount": 1,
  "totalPrice": 2.0,
  "isLastPage": true,
  "totalItem": 4,
  "data": [
    {
      "ProductVarietyName": "sample string 1",
      "ProductClassName": "sample string 2",
      "Count": 3,
      "Price": 4.0,
      "CreateTime": "sample string 5",
      "GroupTime": "2025-12-26T20:18:54.7909262+08:00"
    },
    {
      "ProductVarietyName": "sample string 1",
      "ProductClassName": "sample string 2",
      "Count": 3,
      "Price": 4.0,
      "CreateTime": "sample string 5",
      "GroupTime": "2025-12-26T20:18:54.7909262+08:00"
    }
  ],
  "errcode": "sample string 5",
  "errmsg": "sample string 6"
}

application/xml, text/xml

Sample:
<ResponseCountPageOfArrayOfVenderSupplierSettlementMonthModelUJ8Augit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi">
  <errcode>sample string 5</errcode>
  <errmsg>sample string 6</errmsg>
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/DataModel.Exchange.Response">
    <d2p1:VenderSupplierSettlementMonthModel>
      <d2p1:Count>3</d2p1:Count>
      <d2p1:CreateTime>sample string 5</d2p1:CreateTime>
      <d2p1:GroupTime>2025-12-26T20:18:54.7909262+08:00</d2p1:GroupTime>
      <d2p1:Price>4</d2p1:Price>
      <d2p1:ProductClassName>sample string 2</d2p1:ProductClassName>
      <d2p1:ProductVarietyName>sample string 1</d2p1:ProductVarietyName>
    </d2p1:VenderSupplierSettlementMonthModel>
    <d2p1:VenderSupplierSettlementMonthModel>
      <d2p1:Count>3</d2p1:Count>
      <d2p1:CreateTime>sample string 5</d2p1:CreateTime>
      <d2p1:GroupTime>2025-12-26T20:18:54.7909262+08:00</d2p1:GroupTime>
      <d2p1:Price>4</d2p1:Price>
      <d2p1:ProductClassName>sample string 2</d2p1:ProductClassName>
      <d2p1:ProductVarietyName>sample string 1</d2p1:ProductVarietyName>
    </d2p1:VenderSupplierSettlementMonthModel>
  </data>
  <isLastPage>true</isLastPage>
  <totalItem>4</totalItem>
  <totalCount>1</totalCount>
  <totalPrice>2</totalPrice>
</ResponseCountPageOfArrayOfVenderSupplierSettlementMonthModelUJ8Augit>