If you want an order field in your view, representing the total price of the order?
Do the following:
Extract the attachment into the same folder as commerce_order_handler_field_order_type.inc
Complement commerce_order.views.inc with
// Expose the order total price.
$data['commerce_order']['order_total'] = array(
'field' => array(
'title' => t('Order total price'),
'help' => t('The sum of all line items totals.'),
'handler' => 'commerce_order_handler_field_order_total',
),
);
And commerce_order.info with
files[] = includes/views/handlers/commerce_order_handler_field_order_total.inc
Closed: outdated
1.0
Views integration
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.