@model FacilitiesManagement.Models.OrderRequest @{ ViewBag.Title = "PlaceOrder"; } @section head_section{ }

PlaceOrder

@using (Html.BeginForm()) { @Html.AntiForgeryToken()

@Html.ValidationSummary(true)
Request Information
@Html.Partial("~/Areas/Purchasing/Views/PurchaseOrder/_PO_RequestInformation.cshtml", Model)
Reference Information
@Html.Partial("~/Areas/Purchasing/Views/PurchaseOrder/_PO_ReferenceInformation.cshtml", Model)
Vendor Information
@Html.Partial("~/Areas/Purchasing/Views/PurchaseOrder/_PO_VendorInformation.cshtml", Model)
Status Information
@Html.Partial("~/Areas/Purchasing/Views/PurchaseOrder/_PO_StatusInformation.cshtml", Model)
Order Details
@Html.Partial("~/Areas/Purchasing/Views/PurchaseOrder/_PO_Details.cshtml", Model)
}
@Html.ActionLink("Back to List", "Index", "Home", new { area = ""}, null)