You are here

function commerce_reports_tax_order_statuses in Commerce Reporting 7.4

Same name and namespace in other branches
  1. 7.3 modules/tax/commerce_reports_tax.module \commerce_reports_tax_order_statuses()

Returns the order statuses that should be taken into account.

4 string references to 'commerce_reports_tax_order_statuses'
commerce_reports_tax_entity_insert in modules/tax/commerce_reports_tax.module
Implements hook_entity_insert().
commerce_reports_tax_entity_update in modules/tax/commerce_reports_tax.module
Implements hook_entity_update().
commerce_reports_tax_form in modules/tax/commerce_reports_tax.admin.inc
Configuration form.
commerce_reports_tax_uninstall in modules/tax/commerce_reports_tax.install
Implements hook_uninstall().

File

modules/tax/commerce_reports_tax.module, line 209
Module file for Commerce Reports Tax.

Code

function commerce_reports_tax_order_statuses() {
  return variable_get('commerce_reports_tax_order_generate_statuses', array(
    'pending',
    'completed',
  ));
}