POST api/StoreLC/PostDoneReceiveOrder

Request Information

URI Parameters

None.

Body Parameters

PostReceiveOrder
NameDescriptionTypeAdditional information
orderModelPackingId

integer

None.

orderId

integer

None.

model_no

string

None.

locationOrderId

integer

None.

op_id

integer

None.

amount

integer

None.

amount_A

integer

None.

amount_B

integer

None.

waste

integer

None.

lost

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "orderModelPackingId": 1,
  "orderId": 2,
  "model_no": "sample string 3",
  "locationOrderId": 4,
  "op_id": 5,
  "amount": 6,
  "amount_A": 1,
  "amount_B": 1,
  "waste": 1,
  "lost": 1
}

application/xml, text/xml

Sample:
<PostReceiveOrder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MRP.Domain.Models.ProductionLine.StoreLC">
  <amount>6</amount>
  <amount_A>1</amount_A>
  <amount_B>1</amount_B>
  <locationOrderId>4</locationOrderId>
  <lost>1</lost>
  <model_no>sample string 3</model_no>
  <op_id>5</op_id>
  <orderId>2</orderId>
  <orderModelPackingId>1</orderModelPackingId>
  <waste>1</waste>
</PostReceiveOrder>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PostReceiveOrder'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.