You are here

function commerce_reports_tax_order_delete 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_delete()

Deletes the tax information of an order.

2 calls to commerce_reports_tax_order_delete()
commerce_reports_tax_entity_delete in modules/tax/commerce_reports_tax.module
Implements hook_entity_delete().
commerce_reports_tax_entity_update in modules/tax/commerce_reports_tax.module
Implements hook_entity_update().

File

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

Code

function commerce_reports_tax_order_delete($order_id) {
  return commerce_reports_tax_order_delete_multiple(array(
    $order_id,
  ));
}