GET Api/WorkProgressReport/Production/{BusinessUnitId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
BusinessUnitId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of WorkProgressProduction
NameDescriptionTypeAdditional information
BusinessUnitProjectId

integer

None.

ProjectId

integer

None.

ProjectSubName

string

None.

ProjectName

string

None.

OrderQty

decimal number

None.

ProducedQty

decimal number

None.

DispatchQty

decimal number

None.

Remarks

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "BusinessUnitProjectId": 1,
    "ProjectId": 2,
    "ProjectSubName": "sample string 3",
    "ProjectName": "sample string 4",
    "OrderQty": 5.1,
    "ProducedQty": 6.1,
    "DispatchQty": 7.1,
    "Remarks": "sample string 8"
  },
  {
    "BusinessUnitProjectId": 1,
    "ProjectId": 2,
    "ProjectSubName": "sample string 3",
    "ProjectName": "sample string 4",
    "OrderQty": 5.1,
    "ProducedQty": 6.1,
    "DispatchQty": 7.1,
    "Remarks": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfWorkProgressProduction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Morph.Web.Api.ViewModel">
  <WorkProgressProduction>
    <BusinessUnitProjectId>1</BusinessUnitProjectId>
    <DispatchQty>7.1</DispatchQty>
    <OrderQty>5.1</OrderQty>
    <ProducedQty>6.1</ProducedQty>
    <ProjectId>2</ProjectId>
    <ProjectName>sample string 4</ProjectName>
    <ProjectSubName>sample string 3</ProjectSubName>
    <Remarks>sample string 8</Remarks>
  </WorkProgressProduction>
  <WorkProgressProduction>
    <BusinessUnitProjectId>1</BusinessUnitProjectId>
    <DispatchQty>7.1</DispatchQty>
    <OrderQty>5.1</OrderQty>
    <ProducedQty>6.1</ProducedQty>
    <ProjectId>2</ProjectId>
    <ProjectName>sample string 4</ProjectName>
    <ProjectSubName>sample string 3</ProjectSubName>
    <Remarks>sample string 8</Remarks>
  </WorkProgressProduction>
</ArrayOfWorkProgressProduction>