POST api/StockAdjSheet

库存调整单

Request Information

URI Parameters

None.

Body Parameters

单据明细

StockAdjSheet
NameDescriptionTypeAdditional information
SheetNo

string

Required

status

integer

None.

channelcode

string

Required

Sheettype

string

None.

Createdby

string

Required

CreatedDate

string

Required

Remark

string

None.

StockAdjGoods

Collection of StockAdjsheetGoods

Required

moduleid

string

Required

Request Formats

application/json, text/json

示例:
{
  "sheetNo": "sample string 1",
  "status": 2,
  "channelcode": "sample string 3",
  "sheettype": "sample string 4",
  "createdby": "sample string 5",
  "createdDate": "sample string 6",
  "remark": "sample string 7",
  "stockAdjGoods": [
    {
      "barCode": "sample string 1",
      "quantity": 2
    },
    {
      "barCode": "sample string 1",
      "quantity": 2
    }
  ],
  "moduleid": "sample string 8"
}

application/xml, text/xml

示例:
<StockAdjSheet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/F360Service.Models.StockAdjSheet">
  <CreatedDate>sample string 6</CreatedDate>
  <Createdby>sample string 5</Createdby>
  <Remark>sample string 7</Remark>
  <SheetNo>sample string 1</SheetNo>
  <Sheettype>sample string 4</Sheettype>
  <StockAdjGoods>
    <StockAdjsheetGoods>
      <BarCode>sample string 1</BarCode>
      <Quantity>2</Quantity>
    </StockAdjsheetGoods>
    <StockAdjsheetGoods>
      <BarCode>sample string 1</BarCode>
      <Quantity>2</Quantity>
    </StockAdjsheetGoods>
  </StockAdjGoods>
  <channelcode>sample string 3</channelcode>
  <moduleid>sample string 8</moduleid>
  <status>2</status>
</StockAdjSheet>

application/x-www-form-urlencoded

示例:

Sample not available.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional information
Flag

string

None.

MSG

string

None.

Response Formats

application/json, text/json

示例:
{
  "flag": "sample string 1",
  "msg": "sample string 2"
}

application/xml, text/xml

示例:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/F360Service.Models">
  <Flag>sample string 1</Flag>
  <MSG>sample string 2</MSG>
</Response>