31 lines
1000 B
Plaintext
31 lines
1000 B
Plaintext
|
@using CanteenContracts.BindingModels;
|
||
|
@model ReportBindingModel
|
||
|
|
||
|
@{
|
||
|
ViewBag.Title = "Report";
|
||
|
}
|
||
|
|
||
|
<h2>Generate Report</h2>
|
||
|
|
||
|
@using (Html.BeginForm("Report", "Home", FormMethod.Post))
|
||
|
{
|
||
|
<div>
|
||
|
@Html.LabelFor(m => m.FileName)
|
||
|
@Html.TextBoxFor(m => m.FileName)
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
@Html.LabelFor(m => m.DateAfter)
|
||
|
@Html.TextBoxFor(m => m.DateAfter, new { type = "date" })
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
@Html.LabelFor(m => m.DateBefore)
|
||
|
@Html.TextBoxFor(m => m.DateBefore, new { type = "date" })
|
||
|
</div>
|
||
|
|
||
|
<button type="submit" formaction="@Url.Action("ReportPdf", "Home")">Сохранить в pfd</button>
|
||
|
<button type="submit" formaction="@Url.Action("ReportEmail", "Home")">Отправить по почте</button>
|
||
|
<button type="submit" formaction="@Url.Action("ReportXsl", "Home")">Сохранить в excel</button>
|
||
|
<button type="submit" formaction="@Url.Action("ReportWord", "Home")">Сохранить в word</button>
|
||
|
}
|