I need to generate reports for sales to all my suppliers who are in the database as taxonomy terms. I've then created a views that shows all line items sold within a given time period, filtered by the taxonomy term, and it works just like i intended.

I cannot make the view display a summary with taxes, however. This is important as my supplier need the report with tax added in the summary.
The line item summary does not display this, and i've had no luck including the order total as footer. It just doesn't show.

Is this possible somehow?

Thanks

Comments

rszrama’s picture

Status: Active » Fixed

Hmm, yeah, the "Order Total" area handler is specifically for a View showing one order, not a View showing line items across multiple orders. Additionally, the price displayed in the line item summary area handler does not support price components at all. What you'd need is a custom area handler, really. You can base it on the line item summary area handler but change the output to show the breakdown by components like the order total area handler does. No way to get around it without custom code, though it's an interesting use case.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

b_otho’s picture

I did manage to make it work with a little workaround, though. By using an attachment with aggregation and a few math fields it was actually quite simple to create my own homemade summary. It works beautifully!

rszrama’s picture

Excellent, glad to hear it. : )