2020-10-12 14:39:23 +09:00
|
|
|
@model NP.Model.VMMM
|
|
|
|
|
@{
|
|
|
|
|
var seq = 0;
|
|
|
|
|
}
|
|
|
|
|
<br />
|
|
|
|
|
<form id="mform" method="post">
|
|
|
|
|
<section class="panel panel-default clearfix devsearch" data-cleartbody="tbody1">
|
|
|
|
|
@Html.Partial("./Partial/SearchCaption")
|
|
|
|
|
<div class="step-content">
|
|
|
|
|
<div class="step-pane active form-inline">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
@Html.Partial("./Partial/Select", null, new ViewDataDictionary { { "special", "fromtodesc" }, { "textadd", "년도" }, { "start", 2019 }, { "end", DateTime.Now.Year }, { "name", "stringval" }, { "selected", Model.stringval } })
|
|
|
|
|
@Html.Partial("./Partial/Button", new NP.Model.Button() { Special = "search", OnClick = "" })
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
<div class="tar buttonbox">
|
|
|
|
|
<a href="#" onclick="javascript:exceldown('mform', '/data/sales', 'tbody1', 'ProductSales');" class="btn btn-s-xs btn-success" style="margin-left: 5px;">엑셀다운로드</a>
|
|
|
|
|
</div>
|
|
|
|
|
<section class="panel panel-default">
|
|
|
|
|
<div class="table-responsive" id="excel1">
|
|
|
|
|
<table class="table table-striped b-t b-light no-odd">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th colspan="2">구분</th>
|
|
|
|
|
<th>1월</th>
|
|
|
|
|
<th>2월</th>
|
|
|
|
|
<th>3월</th>
|
|
|
|
|
<th>4월</th>
|
|
|
|
|
<th>5월</th>
|
|
|
|
|
<th>6월</th>
|
|
|
|
|
<th>7월</th>
|
|
|
|
|
<th>8월</th>
|
|
|
|
|
<th>9월</th>
|
|
|
|
|
<th>10월</th>
|
|
|
|
|
<th>11월</th>
|
|
|
|
|
<th>12월</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody class="data" id="tbody1">
|
2020-12-17 14:00:02 +09:00
|
|
|
@foreach (var item in Model.Datas2)
|
2020-10-12 14:39:23 +09:00
|
|
|
{
|
|
|
|
|
<tr>
|
|
|
|
|
@if (item.intval == 0)
|
|
|
|
|
{
|
2020-12-17 14:00:02 +09:00
|
|
|
<td rowspan="3">@item.strval</td>
|
2020-10-12 14:39:23 +09:00
|
|
|
}
|
2020-12-17 14:00:02 +09:00
|
|
|
<td>@item.strval2</td>
|
2020-10-12 14:39:23 +09:00
|
|
|
<td class="text-right">@item.longval.ToString("#,0")</td>
|
|
|
|
|
<td class="text-right">@item.longval2.ToString("#,0")</td>
|
|
|
|
|
<td class="text-right">@item.longval3.ToString("#,0")</td>
|
|
|
|
|
<td class="text-right">@item.longval4.ToString("#,0")</td>
|
|
|
|
|
<td class="text-right">@item.longval5.ToString("#,0")</td>
|
|
|
|
|
<td class="text-right">@item.longval6.ToString("#,0")</td>
|
|
|
|
|
<td class="text-right">@item.longval7.ToString("#,0")</td>
|
|
|
|
|
<td class="text-right">@item.longval8.ToString("#,0")</td>
|
|
|
|
|
<td class="text-right">@item.longval9.ToString("#,0")</td>
|
|
|
|
|
<td class="text-right">@item.longval10.ToString("#,0")</td>
|
|
|
|
|
<td class="text-right">@item.longval11.ToString("#,0")</td>
|
|
|
|
|
<td class="text-right">@item.longval12.ToString("#,0")</td>
|
|
|
|
|
</tr>
|
|
|
|
|
}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
</form>
|
|
|
|
|
@section scripts{
|
|
|
|
|
<script>
|
|
|
|
|
</script>
|
|
|
|
|
}
|