ASP.NET Core Reports
Home
Product Line Sales
Company Sales
Mail Merge
Sales Report
Territory Sales
Conditional Row Formatting
Barcode
Customer Support Analysis
Tickets Sales Analysis
Website Visitor Analysis
Patient Experience Analysis
Personal Expense Analysis
Northwind Products and Suppliers Report
Sales Order Detail
Invoice
Product Catalog
Sales By Year
Grouping Aggregate
Product Details
Load Large Data
Consolidated Balance Sheet
Paystub
Dynamic Chart Series
Data Bar
Spark Line
Dynamic Columns
External Parameter Report
Parameter Customization
Sub Report
PowerPoint Report
Transcript Report
CMR Report
Infographics Report
Report Writer

Sales Order Detail

This report template shows the sales order details based on order number using the RDL report parameters, rectangle, line and table in ASP.NET Core Bold Report Viewer.

Report Processing...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; namespace ReportsCoreSamples.Controllers { [Route("report-viewer/sales-order-detail")] public class SalesOrderDetailController : PreviewController { [HttpGet("")] public IActionResult Index() { this.updateMetaData(); return View(); } } }
@inject Globals globals; @section control { <bold-report-viewer id="reportviewer" report-service-url="@Globals.SERVICE_URL" report-path="sales-order-detail.rdl" toolbar-rendering="onToolbarRendering" tool-bar-item-click="onToolBarItemClick" export-item-click="onExportItemClick" /> }

Sales Order Details shows the sales invoice details using the report parameters, line report item, and table formatting in Bold Report Viewer.

  • The Sales Order details are displayed dynamically using expression with the text box report item.
  • The sales order details for each sales order number can be generated based on Report Parameters at run time.

More information about handling the report items can be found in this documentation section.