orderitems
An order item, often called a line item, is a record that represents a single product or service contained in a customer's order. It sits as a child of the order and links to the catalog entry or product. Order items capture the quantities ordered, pricing, discounts, taxes, and the extended line total for that item, and they support fulfillment and revenue calculations.
In relational data models, an order_items table stores one row per item. Typical fields include item_id (or
Order items are linked to both orders and products. The system aggregates line_totals to form the order
Terminology varies by platform. Some systems use line_items or order_lines instead of order_items. For configurable products,
Common use cases include calculating revenue, analyzing item performance, processing refunds and returns, and auditing orders.