Home > Software design >  On which table Subtotal of Item ordered values stored in magento 2 admin?
On which table Subtotal of Item ordered values stored in magento 2 admin?

Time:11-30

On which table Subtotal of Item ordered values stored in magento 2 admin?

CodePudding user response:

Take a look at sales_order_item database table and one of row_total, base_row_total, row_total_incl_tax, base_row_total_incl_tax fields.

I guess the subtotal is in row_total_incl_tax field.

CodePudding user response:

In Magento Database sales_order_grid table subtotal values are save. See Screenshot

  • Related