Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

_ItemClassificationConfiguration.cshtml

@model ConfigurationModel

Avalara Item Classification automates the complex process of determining HS codes, taking into consideration country, product attributes, and other factors.

@if (Model.UseItemClassification) {
@T("Plugins.Tax.Avalara.ItemClassification.Sync")

The Avalara Item Classification provides the user with the capability to submit products for Item Classification and retrieve the HS Codes.
To run the sync right away, click on the "Sync now" button.

@await Html.PartialAsync("Table", new DataTablesModel { Name = "item-classification-grid", UrlRead = new DataUrl("List", "ItemClassification", null), UrlUpdate = new DataUrl("Update", "ItemClassification", null), SearchButtonId = "search-item-classification-product", Length = Model.ItemClassificationSearchModel.PageSize, LengthMenu = Model.ItemClassificationSearchModel.AvailablePageSizes, Filters = new List { new FilterParameter(nameof(Model.ItemClassificationSearchModel.SearchCountryId), nameof(Model.ItemClassificationSearchModel)) }, ColumnCollection = new List { new ColumnProperty(nameof(ItemClassificationModel.Id)) { IsMasterCheckBox = true, Render = new RenderCheckBox("checkbox_item"), ClassName = NopColumnClassDefaults.CenterAll, Width = "50", }, new ColumnProperty(nameof(ItemClassificationModel.ProductName)) { Title = T("Plugins.Tax.Avalara.ItemClassification.Product").Text, Render = new RenderLink(new DataUrl("~/Admin/Product/Edit/", nameof(ItemClassificationModel.ProductId))) }, new ColumnProperty(nameof(ItemClassificationModel.CountryName)) { Title = T("Plugins.Tax.Avalara.ItemClassification.Country").Text, Width = "200" }, new ColumnProperty(nameof(ItemClassificationModel.HSClassificationRequestId)) { Title = T("Plugins.Tax.Avalara.ItemClassification.HSClassificationRequestId").Text, Width = "200" }, new ColumnProperty(nameof(ItemClassificationModel.HSCode)) { Title = T("Plugins.Tax.Avalara.ItemClassification.HSCode").Text, Width = "200", Editable = true, EditType = EditType.String }, new ColumnProperty(nameof(ItemClassificationModel.UpdatedDate)) { Title = T("Plugins.Tax.Avalara.ItemClassification.UpdatedDate").Text, Width = "140", Render = new RenderDate() }, new ColumnProperty(nameof(ItemClassificationModel.Id)) { Title = T("Admin.Common.Edit").Text, ClassName = NopColumnClassDefaults.Button + " column-edit", Width = "100", Render = new RenderButtonsInlineEdit() } } })
}