You are here

function commerce_reports_tax_order_delete_multiple 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_delete_multiple()

Deletes the tax information of multiple orders.

1 call to commerce_reports_tax_order_delete_multiple()
commerce_reports_tax_order_delete in modules/tax/commerce_reports_tax.module
Deletes the tax information of an order.

File

modules/tax/commerce_reports_tax.module, line 222

Code

function commerce_reports_tax_order_delete_multiple($order_ids = array()) {
  db_query("DELETE FROM {commerce_reports_tax} WHERE order_id IN (:order_ids)", array(
    ':order_ids' => $order_ids,
  ));
}