GET api/WorkProgressReport?BusinessUnitId={BusinessUnitId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| BusinessUnitId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of WorkProgressReportData| Name | Description | Type | Additional information |
|---|---|---|---|
| BusinessUnitProjectId | integer |
None. |
|
| ProjectId | integer |
None. |
|
| ProjectSubName | string |
None. |
|
| ProjectName | string |
None. |
|
| ItemId | integer |
None. |
|
| ItemName | string |
None. |
|
| OrderQty | decimal number |
None. |
|
| CurrentDeliveredQty | decimal number |
None. |
|
| DeliveredQty | decimal number |
None. |
|
| InstalledQty | decimal number |
None. |
|
| CurrentInstalledQty | decimal number |
None. |
|
| BalanceSupplyQty | decimal number |
None. |
|
| BalanceInstlledQty | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BusinessUnitProjectId": 1,
"ProjectId": 2,
"ProjectSubName": "sample string 3",
"ProjectName": "sample string 4",
"ItemId": 5,
"ItemName": "sample string 6",
"OrderQty": 7.1,
"CurrentDeliveredQty": 8.1,
"DeliveredQty": 9.1,
"InstalledQty": 10.1,
"CurrentInstalledQty": 11.1,
"BalanceSupplyQty": 12.1,
"BalanceInstlledQty": 13.1
},
{
"BusinessUnitProjectId": 1,
"ProjectId": 2,
"ProjectSubName": "sample string 3",
"ProjectName": "sample string 4",
"ItemId": 5,
"ItemName": "sample string 6",
"OrderQty": 7.1,
"CurrentDeliveredQty": 8.1,
"DeliveredQty": 9.1,
"InstalledQty": 10.1,
"CurrentInstalledQty": 11.1,
"BalanceSupplyQty": 12.1,
"BalanceInstlledQty": 13.1
}
]
application/xml, text/xml
Sample:
<ArrayOfWorkProgressReportData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Morph.Web.Api.ViewModel">
<WorkProgressReportData>
<BalanceInstlledQty>13.1</BalanceInstlledQty>
<BalanceSupplyQty>12.1</BalanceSupplyQty>
<BusinessUnitProjectId>1</BusinessUnitProjectId>
<CurrentDeliveredQty>8.1</CurrentDeliveredQty>
<CurrentInstalledQty>11.1</CurrentInstalledQty>
<DeliveredQty>9.1</DeliveredQty>
<InstalledQty>10.1</InstalledQty>
<ItemId>5</ItemId>
<ItemName>sample string 6</ItemName>
<OrderQty>7.1</OrderQty>
<ProjectId>2</ProjectId>
<ProjectName>sample string 4</ProjectName>
<ProjectSubName>sample string 3</ProjectSubName>
</WorkProgressReportData>
<WorkProgressReportData>
<BalanceInstlledQty>13.1</BalanceInstlledQty>
<BalanceSupplyQty>12.1</BalanceSupplyQty>
<BusinessUnitProjectId>1</BusinessUnitProjectId>
<CurrentDeliveredQty>8.1</CurrentDeliveredQty>
<CurrentInstalledQty>11.1</CurrentInstalledQty>
<DeliveredQty>9.1</DeliveredQty>
<InstalledQty>10.1</InstalledQty>
<ItemId>5</ItemId>
<ItemName>sample string 6</ItemName>
<OrderQty>7.1</OrderQty>
<ProjectId>2</ProjectId>
<ProjectName>sample string 4</ProjectName>
<ProjectSubName>sample string 3</ProjectSubName>
</WorkProgressReportData>
</ArrayOfWorkProgressReportData>