GET api/PlanningDepartment/release-upper/pl-order/{plan_id}
View Production Line Orders
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| plan_id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
v_Release_Upper_PL| Name | Description | Type | Additional information |
|---|---|---|---|
| cutting | Collection of v_Release_Upper_Cutting |
None. |
|
| screen | Collection of v_Release_Upper_Screen |
None. |
|
| seal | Collection of v_Release_Upper_Seal |
None. |
Response Formats
application/json, text/json
Sample:
{
"cutting": [
{
"model_color": "sample string 1",
"part_name": "sample string 2",
"cutter_code": "sample string 3",
"mat_name": "sample string 4",
"amount": 5
},
{
"model_color": "sample string 1",
"part_name": "sample string 2",
"cutter_code": "sample string 3",
"mat_name": "sample string 4",
"amount": 5
}
],
"screen": [
{
"model_color": "sample string 1",
"part_name": "sample string 2",
"blockscreen_code": "sample string 3",
"amount": 4
},
{
"model_color": "sample string 1",
"part_name": "sample string 2",
"blockscreen_code": "sample string 3",
"amount": 4
}
],
"seal": [
{
"model_color": "sample string 1",
"part_name": "sample string 2",
"dieshot_code": "sample string 3",
"amount": 4
},
{
"model_color": "sample string 1",
"part_name": "sample string 2",
"dieshot_code": "sample string 3",
"amount": 4
}
]
}
application/xml, text/xml
Sample:
<v_Release_Upper_PL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MRP.Domain.Models.ProductionLine.Planning_Department.Release_Upper_Plan.View">
<cutting>
<v_Release_Upper_Cutting>
<amount>5</amount>
<cutter_code>sample string 3</cutter_code>
<mat_name>sample string 4</mat_name>
<model_color>sample string 1</model_color>
<part_name>sample string 2</part_name>
</v_Release_Upper_Cutting>
<v_Release_Upper_Cutting>
<amount>5</amount>
<cutter_code>sample string 3</cutter_code>
<mat_name>sample string 4</mat_name>
<model_color>sample string 1</model_color>
<part_name>sample string 2</part_name>
</v_Release_Upper_Cutting>
</cutting>
<screen>
<v_Release_Upper_Screen>
<amount>4</amount>
<blockscreen_code>sample string 3</blockscreen_code>
<model_color>sample string 1</model_color>
<part_name>sample string 2</part_name>
</v_Release_Upper_Screen>
<v_Release_Upper_Screen>
<amount>4</amount>
<blockscreen_code>sample string 3</blockscreen_code>
<model_color>sample string 1</model_color>
<part_name>sample string 2</part_name>
</v_Release_Upper_Screen>
</screen>
<seal>
<v_Release_Upper_Seal>
<amount>4</amount>
<dieshot_code>sample string 3</dieshot_code>
<model_color>sample string 1</model_color>
<part_name>sample string 2</part_name>
</v_Release_Upper_Seal>
<v_Release_Upper_Seal>
<amount>4</amount>
<dieshot_code>sample string 3</dieshot_code>
<model_color>sample string 1</model_color>
<part_name>sample string 2</part_name>
</v_Release_Upper_Seal>
</seal>
</v_Release_Upper_PL>