You are here

function commerce_reports_tax_order_statuses in Commerce Reporting 7.3

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

Returns the order statuses that should be taken into account.

1 call to commerce_reports_tax_order_statuses()
commerce_reports_tax_entity_update in modules/tax/commerce_reports_tax.module
Implements hook_entity_update().

File

modules/tax/commerce_reports_tax.module, line 199

Code

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