-
Notifications
You must be signed in to change notification settings - Fork 445
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added reports for vendor in their portal #431
- Loading branch information
support
committed
Nov 13, 2023
1 parent
658d63a
commit 8d18b15
Showing
39 changed files
with
1,888 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
src/Web/Grand.Web.Vendor/Areas/Vendor/Views/Home/Statistics.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
@{ | ||
//page title | ||
ViewBag.Title = Loc["Vendor.Dashboard.Statistics"]; | ||
} | ||
|
||
<div class="page-bar" style="height:43px;"> | ||
<div class="page-toolbar"> | ||
<div id="dashboard-report-range" class="pull-right btn btn-sm"> | ||
<i class="icon-calendar"></i> | ||
<span class="thin uppercase">@DateTime.Now.ToLocalTime().ToString(CultureInfo.InvariantCulture)</span> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="content-header"> | ||
<h3 class="page-title"> | ||
<i class="icon-bulb"></i> | ||
@Loc["Vendor.Dashboard"] | ||
<small>@Loc["Vendor.Dashboard.Statistics"]</small> | ||
</h3> | ||
</div> | ||
|
||
<div class="content"> | ||
<vc:vendor-widget widget-zone="vendor_dashboard_statistics_before" /> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<div class="row"> | ||
<div class="col-md-6"> | ||
<div class="x_panel"> | ||
<div class="x_title"> | ||
<div class="caption level-caption"> | ||
<span class="caption-subject font-dark bold uppercase">@Loc["Vendor.Reports.BestSellers.ByQuantity"]</span> | ||
</div> | ||
</div> | ||
<div class="x_content"> | ||
<vc:vendor-bestsellers-brief-report-by-quantity></vc:vendor-bestsellers-brief-report-by-quantity> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-6"> | ||
<div class="x_panel"> | ||
<div class="x_title"> | ||
<div class="caption level-caption"> | ||
<span class="caption-subject font-dark bold uppercase">@Loc["Vendor.Reports.BestSellers.ByAmount"]</span> | ||
</div> | ||
</div> | ||
<div class="x_content"> | ||
<vc:vendor-bestsellers-brief-report-by-amount></vc:vendor-bestsellers-brief-report-by-amount> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<vc:vendor-widget widget-zone="vendor_dashboard_statistics_after" /> | ||
</div> |
Oops, something went wrong.