commerce_reports_tax.views.inc in Commerce Reporting 7.3
Same filename and directory in other branches
Integrates Views with Commerce Tax Reports.
File
modules/tax/includes/views/commerce_reports_tax.views.incView source
<?php
/**
* @file
* Integrates Views with Commerce Tax Reports.
*/
function commerce_reports_tax_views_data() {
$data = array();
// Base information.
$data['commerce_reports_tax']['table']['group'] = t('Commerce Tax Reports');
$data['commerce_reports_tax']['table']['base'] = array(
'field' => 'order_id',
'title' => t('Commerce Tax Information'),
'help' => t('The tax information gathered by Commerce Tax Reports.'),
'access query tag' => 'commerce_reports_access',
);
$data['commerce_reports_tax']['tax_rate'] = array(
'title' => t('Tax rate'),
'help' => t('The applied tax rate.'),
'field' => array(
'handler' => 'views_handler_field',
'click sortable' => TRUE,
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
// Expose the Order ID.
$data['commerce_reports_tax']['order_id'] = array(
'title' => t('Order ID', array(), array(
'context' => 'a drupal commerce order',
)),
'help' => t('The unique internal identifier of the order.'),
'field' => array(
'handler' => 'commerce_order_handler_field_order',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'views_handler_filter_numeric',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
'argument' => array(
'handler' => 'commerce_order_handler_argument_order_order_id',
'name field' => 'order_number',
'numeric' => TRUE,
'validate type' => 'order_id',
),
'relationship' => array(
'handler' => 'views_handler_relationship',
'base' => 'commerce_order',
'field' => 'order_id',
'label' => t('Order', array(), array(
'context' => 'a drupal commerce order',
)),
),
);
// Expose the transaction currency.
$data['commerce_reports_tax']['currency_code'] = array(
'title' => t('Currency'),
'help' => t('The currency of the transaction.'),
'field' => array(
'handler' => 'commerce_payment_handler_field_currency_code',
'click sortable' => TRUE,
),
'filter' => array(
'handler' => 'commerce_payment_handler_filter_currency_code',
),
'sort' => array(
'handler' => 'views_handler_sort',
),
'argument' => array(
'handler' => 'views_handler_argument_string',
),
);
$data['commerce_reports_tax']['taxable'] = array(
'title' => t('Taxable'),
'help' => t('The taxable amount on the order.'),
'field' => array(
'handler' => 'commerce_payment_handler_field_amount',
'click sortable' => TRUE,
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
$data['commerce_reports_tax']['taxed'] = array(
'title' => t('Taxed'),
'help' => t('The taxed amount on the order.'),
'field' => array(
'handler' => 'commerce_payment_handler_field_amount',
'click sortable' => TRUE,
),
'sort' => array(
'handler' => 'views_handler_sort',
),
);
return $data;
}
Functions
Name | Description |
---|---|
commerce_reports_tax_views_data | @file Integrates Views with Commerce Tax Reports. |