@Html.TextBoxFor(model => model.TotalQty, new { id = "txtTotalQty", @class = "k-textbox", Readonly = "Readonly" })
@Html.TextBoxFor(model => model.ChargeDepartment, new { id = "txtChargeDepartment", @class = "k-textbox" })
@(Html.Kendo().DropDownList()
.Name("AllocationToUse")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List()
{
new SelectListItem()
{
Text = "Select",
Value = "Select"
},
new SelectListItem()
{
Text = "ATV",
Value = "ATV"
},
new SelectListItem()
{
Text = "HiRel",
Value = "HiRel"
},
new SelectListItem()
{
Text = "IPC",
Value = "IPC"
},
new SelectListItem()
{
Text = "PMD",
Value = "PMD"
},
new SelectListItem()
{
Text = "Fab",
Value = "Fab"
},
new SelectListItem()
{
Text = "Silicon",
Value = "Silicon"
}
}
)
.Value((Model.AllocationToUse == null ? "Select" : Model.AllocationToUse.ToString()))
)
@Html.TextBoxFor(model => model.PredictedCyleTime, new { id = "txtPredictedCyleTime", @class = "k-textbox" })
Process Change Details
@Html.EditorFor(model => model.ProcessChangeDetailsOnHand)
@Html.TextAreaFor(model => model.LotStartCheckListComments, 14, 100, new { id = "txtLotStartCheckListComments", @class = "k-textbox", style = "font-size: 11px; width: 100%" })
Lot Start in SPN
SIGNON
SURP
WIP AREA
@Model.WIPArea
VERB
START
Start Date
@Model.PlannedLotStartDate
WIP Lot#
@Model.LotNumber
WIP PN#
@Model.WIPPartNumber - @Model.PartDescription
Type
@Model.LotType
Process Flow
@Model.ProcessFlow
Start Qty
@Model.StartQty
Qual Lot
@(Model.QualLot == 1 ? "Y" : "")
VERB
COMMENT
@Html.TextAreaFor(model => model.VerbComment, 3, 100, new { id = "txtVerbComment", @class = "k-textbox", style = "font-size: 11px; width: 100%" })
Record Silicon Lot #s in SPN and tape tags to Traveler
@(Html.Kendo().DropDownList()
.Name("RecordSiliconLotInSPNTapeTagTotrav")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List()
{
new SelectListItem()
{
Text = "Select",
Value = "-1"
},
new SelectListItem()
{
Text = "Yes",
Value = "1"
},
new SelectListItem()
{
Text = "No",
Value = "0"
}
}
)
.Value(Model.RecordSiliconLotInSPNTapeTagTotrav.ToString())
)
Silicon Lot#s: Cassette 1
@Html.TextAreaFor(model => model.SiliconLotNoCassette1, 3, 100, new { id = "txtSiliconLotNoCassette1", @class = "k-textbox", style = "font-size: 11px; width: 100%" })
/**/
Section2: OLHOLD and Engineering Deviation Specified by Originator
You will be automatically be redirected to Special Request List page in 1 minute.
To remain on this page please close this window or press the ESC key.
You have trigerred a Revision of this document, Please enter the revision comments
Enter Revision Comments:
You have trigerred a Revision of this document, Please enter the revision comments
Enter Revision Comments:
You have trigerred a Revision of this document, Please enter the revision comments
EPI Attributes:
Add New Approvers:
Enter Revision Comments:
You have trigerred a Revision of this document, Please enter the revision comments
Enter Revision Comments:
You have trigerred a Revision of this document, Please enter the revision comments
Select File:
@(Html.Kendo().DropDownList()
.Name("WRAttachDocType")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List() {
new SelectListItem() {
Text = "Select",
Value = "Select"
},
new SelectListItem() {
Text = "Instructions",
Value = "Instructions"
},
new SelectListItem() {
Text = "Traveler",
Value = "Traveler"
},
new SelectListItem() {
Text = "Other",
Value = "Other"
}
})
.Value("1")
.HtmlAttributes(new { style = "width:100px;" })
)