POST api/sale/quoteorder/AuditQuoteOrder

审核报价单

请求信息

URI 参数

None.

Body 参数

审核信息

QuoteOrderAuditModel
名称说明类型其他信息
QuoteOrderId

报价单

string

None.

EmployeeId

审核人Id

string

None.

EmployeeName

审核人姓名

string

None.

AuditRole

审核人角色

QuoteOrderAuditRole

None.

Audited

是否通过

boolean

Required

Note

备注

string

None.

请求格式

application/json, text/json

Sample:
{
  "QuoteOrderId": "sample string 1",
  "EmployeeId": "sample string 2",
  "EmployeeName": "sample string 3",
  "AuditRole": 0,
  "Audited": true,
  "Note": "sample string 5"
}

application/xml, text/xml

Sample:
<QuoteOrderAuditModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZJ.GX.Application.IBLL">
  <AuditRole>Colleague</AuditRole>
  <Audited>true</Audited>
  <EmployeeId>sample string 2</EmployeeId>
  <EmployeeName>sample string 3</EmployeeName>
  <Note>sample string 5</Note>
  <QuoteOrderId>sample string 1</QuoteOrderId>
</QuoteOrderAuditModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

响应信息

响应说明

ResponseEx
名称说明类型其他信息
StatusCode

状态码

ResponseStatusCode

None.

Message

信息

string

None.

Data

数据

Object

None.

响应格式

application/json, text/json

Sample:
{
  "StatusCode": 0,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<ResponseEx xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZJ.GX.Application.WebApi.Models">
  <Data />
  <Message>sample string 1</Message>
  <StatusCode>OK</StatusCode>
</ResponseEx>