@model servisdestek.Models.Action.ReportModel @{ ViewBag.Title = "Raporlar"; } @section scripts { }

@ViewBag.Title


@using (Html.BeginForm("index", "reports", FormMethod.Post, new { @id = "form_list" })) { @*
@Html.TextBox("date_start", Model.date_start, new { @class = "input_mini" }) @Html.TextBox("date_end", Model.date_end, new { @class = "input_mini" }) @Html.DropDownList("siparis_durumu", new SelectList(Model.orderStatus, "ID", "Name"))
@Html.DropDownList("firma", new SelectList(Model.companies, "ID", "Name"), new { @class = "selectbig" })
*@ @Html.Partial("ListFilter", Model) @Html.Hidden("exporttoexcel", Model.exporttoexcel) } @if (Model.ShowStatus == 1) {
@{ int irowcolor = 1; string sclass = ""; } @foreach (var order in Model.view_order) { irowcolor++; }
Sipariş no Sip.Türü İş Emri İş Tanımı İş Yönlendirme Kayıt Tarihi Kayıt Açan Firma Şube Durum
@order.ID.ToString().PadLeft(6, '0') @order.OrderTypeName @order.OrderClassName @*@if (order.OrderFileCount > 0) { }*@ @servisdestek.core.check_length(order.OrderProcessDescription, 30) @servisdestek.core.check_length(order.OrderRouteNames,30) @order.CreateTime.Value.ToString("dd.MM.yyyy") @order.CustomerNameFull @order.CompanyName @order.CompanySectionName @order.OrderStatusName Detay
Toplam @Model.view_order.Count Kayıt
}