33 lines
2.1 KiB
Plaintext
33 lines
2.1 KiB
Plaintext
@model AffiliateModel
|
|
|
|
@{
|
|
const string hideInfoBlockAttributeName = "AffiliatePage.HideInfoBlock";
|
|
var customer = await workContext.GetCurrentCustomerAsync();
|
|
var hideInfoBlock = await genericAttributeService.GetAttributeAsync<bool>(customer, hideInfoBlockAttributeName);
|
|
|
|
const string hideCustomersBlockAttributeName = "AffiliatePage.HideCustomersBlock";
|
|
var hideCustomersBlock = await genericAttributeService.GetAttributeAsync<bool>(customer, hideCustomersBlockAttributeName, defaultValue: true);
|
|
|
|
const string hideOrdersBlockAttributeName = "AffiliatePage.HideOrdersBlock";
|
|
var hideOrdersBlock = await genericAttributeService.GetAttributeAsync<bool>(customer, hideOrdersBlockAttributeName, defaultValue: true);
|
|
}
|
|
|
|
<div asp-validation-summary="All"></div>
|
|
<input asp-for="Id" type="hidden" />
|
|
|
|
<section class="content">
|
|
<div class="container-fluid">
|
|
<div class="form-horizontal">
|
|
<nop-cards id="affiliate-cards">
|
|
<nop-card asp-name="affiliate-info" asp-icon="fas fa-info" asp-title="@T("Admin.Affiliates.Info")" asp-hide-block-attribute-name="@hideInfoBlockAttributeName" asp-hide="@hideInfoBlock">@await Html.PartialAsync("_CreateOrUpdate.Info", Model)</nop-card>
|
|
@if (Model.Id > 0)
|
|
{
|
|
<nop-card asp-name="affiliate-customers" asp-icon="fas fa-user" asp-title="@T("Admin.Affiliates.Customers")" asp-hide-block-attribute-name="@hideCustomersBlockAttributeName" asp-hide="@hideCustomersBlock">@await Html.PartialAsync("_CreateOrUpdate.Customers", Model)</nop-card>
|
|
<nop-card asp-name="affiliate-orders" asp-icon="fas fa-cart-plus" asp-title="@T("Admin.Affiliates.Orders")" asp-hide-block-attribute-name="@hideOrdersBlockAttributeName" asp-hide="@hideOrdersBlock">@await Html.PartialAsync("_CreateOrUpdate.Orders", Model)</nop-card>
|
|
}
|
|
|
|
@await Component.InvokeAsync(typeof(AdminWidgetViewComponent), new { widgetZone = AdminWidgetZones.AffiliateDetailsBlock, additionalData = Model })
|
|
</nop-cards>
|
|
</div>
|
|
</div>
|
|
</section> |