This is probably simple but instead of this:
current_cart.line_items.sum(:line_item_total)
I prefer to implement it like this:
current_cart.line_items.sum(:line_item_unit_price * :quantity)
What is the best syntax to build a calculated field based on two fields?