'textfield',
'#title' => t('Paged table size'),
'#description' => t('The maximum number of rows displayed on one page for a report table.'),
'#default_value' => variable_get('uc_reports_table_size', 30),
);
$options = array();
foreach (uc_order_status_list() as $status) {
$options[$status['id']] = $status['title'];
}
$form['uc_reports_reported_statuses'] = array(
'#type' => 'select',
'#title' => t('Reported statuses'),
'#description' => t('Only orders with selected statuses will be included in reports.'),
'#options' => $options,
'#default_value' => variable_get('uc_reports_reported_statuses', array('completed')),
'#multiple' => TRUE,
);
return system_settings_form($form);
}
/**
* Displays the customer report.
*/
function uc_reports_customers() {
$address_preference = variable_get('uc_customer_list_address', 'billing');
$first_name = ($address_preference == 'billing') ? 'billing_first_name' : 'delivery_first_name';
$last_name = ($address_preference == 'billing') ? 'billing_last_name' : 'delivery_last_name';
$page = (isset($_GET['page'])) ? intval($_GET['page']) : 0;
$page_size = (isset($_GET['nopage'])) ? UC_REPORTS_MAX_RECORDS : variable_get('uc_reports_table_size', 30);
$order_statuses = _uc_reports_order_statuses();
$rows = array();
$csv_rows = array();
$header = array(
array('data' => t('#')),
array('data' => t('Customer'), 'field' => "ou.$last_name"),
array('data' => t('Username'), 'field' => "u.name"),
array('data' => t('Orders'), 'field' => 'orders'),
array('data' => t('Products'), 'field' => 'products'),
array('data' => t('Total'), 'field' => 'total', 'sort' => 'desc'),
array('data' => t('Average'), 'field' => 'average'),
);
$csv_rows[] = array(t('#'), t('Customer'), t('Username'), t('Orders'), t('Products'), t('Total'), t('Average'));
$query = db_select('users', 'u', array('fetch' => PDO::FETCH_ASSOC))->extend('PagerDefault')->extend('TableSort');
$query->leftJoin('uc_orders', 'ou', 'u.uid = ou.uid');
$query->fields('u', array(
'uid',
'name',
))
->fields('ou', array(
$first_name,
$last_name,
))
->condition('u.uid', 0, '>')
->groupBy('u.uid');
$query->addExpression("(SELECT COUNT(DISTINCT(order_id)) FROM {uc_orders} as o WHERE o.uid = u.uid AND o.order_status IN (:statuses))", 'orders', array(':statuses' => $order_statuses));
$query->addExpression("(SELECT SUM(qty) FROM {uc_order_products} as ps LEFT JOIN {uc_orders} as os ON ps.order_id = os.order_id WHERE os.order_status IN (:statuses) AND os.uid = u.uid)", 'products', array(':statuses' => $order_statuses));
$query->addExpression("(SELECT SUM(ot.order_total) FROM {uc_orders} as ot WHERE ot.uid = u.uid AND ot.order_status IN (:statuses))", 'total', array(':statuses' => $order_statuses));
$query->addExpression("ROUND((SELECT SUM(ot.order_total) FROM {uc_orders} as ot WHERE ot.uid = u.uid AND ot.order_status IN (:sum_statuses))/(SELECT COUNT(DISTINCT(order_id)) FROM {uc_orders} as o WHERE o.uid = u.uid AND o.order_status IN (:count_statuses)), 2)", 'average', array(':sum_statuses' => $order_statuses, ':count_statuses' => $order_statuses));
$count_query = db_select('users', 'u');
$count_query->leftJoin('uc_orders', 'ou', 'u.uid = ou.uid');
$count_query->addExpression('COUNT(DISTINCT u.uid)');
$count_query->condition('u.uid', 0, '>');
$query->setCountQuery($count_query);
$query->groupBy('u.uid')
->groupBy('u.name')
->groupBy("ou.$first_name")
->groupBy("ou.$last_name")
->orderByHeader($header)
->limit($page_size);
$customers = $query->execute();
foreach ($customers as $customer) {
$name = (!empty($customer[$last_name]) || !empty($customer[$first_name])) ? l($customer[$last_name] . ', ' . $customer[$first_name], 'admin/store/customers/orders/' . $customer['uid']) : l($customer['name'], 'admin/store/customers/orders/' . $customer['uid']);
$customer_number = ($page * variable_get('uc_reports_table_size', 30)) + (count($rows) + 1);
$customer_order_name = (!empty($customer[$last_name]) || !empty($customer[$first_name])) ? $customer[$last_name] . ', ' . $customer[$first_name] : $customer['name'];
$customer_name = $customer['name'];
$orders = (!empty($customer['orders']) ? $customer['orders'] : 0);
$products = (!empty($customer['products']) ? $customer['products'] : 0);
$total_revenue = uc_currency_format($customer['total']);
$average_revenue = uc_currency_format($customer['average']);
$rows[] = array(
array('data' => $customer_number),
array('data' => $name, 'nowrap' => 'nowrap'),
array('data' => l($customer_name, 'user/' . $customer['uid']), 'nowrap' => 'nowrap'),
array('data' => $orders),
array('data' => $products),
array('data' => $total_revenue, 'nowrap' => 'nowrap'),
array('data' => $average_revenue, 'nowrap' => 'nowrap'),
);
$csv_rows[] = array($customer_number, $customer_order_name, $customer_name, $orders, $products, $total_revenue, $average_revenue);
}
if (empty($rows)) {
$rows[] = array(array('data' => t('No customers found'), 'colspan' => count($header)));
}
$csv_data = uc_reports_store_csv('uc_customers', $csv_rows);
$build['report'] = array(
'#theme' => 'table',
'#header' => $header,
'#rows' => $rows,
'#attributes' => array('width' => '100%', 'class' => array('uc-sales-table')),
);
$build['pager'] = array(
'#theme' => 'pager',
);
$build['links'] = array(
'#prefix' => '
',
'#suffix' => '
',
);
$build['links']['export_csv'] = array(
'#markup' => l(t('Export to CSV file.'), 'admin/store/reports/getcsv/' . $csv_data['report'] . '/' . $csv_data['user']),
'#suffix' => ' ',
);
if (isset($_GET['nopage'])) {
$build['links']['toggle_pager'] = array(
'#markup' => l(t('Show paged records'), 'admin/store/reports/customers'),
);
}
else {
$build['links']['toggle_pager'] = array(
'#markup' => l(t('Show all records'), 'admin/store/reports/customers', array('query' => array('nopage' => '1'))),
);
}
return $build;
}
/**
* Displays the product reports.
*/
function uc_reports_products() {
$statistics = db_query("SELECT status FROM {system} WHERE name = :module", array(':module' => 'statistics'))->fetchField();
$count_views = variable_get('statistics_count_content_views', FALSE);
if ($statistics && $count_views) {
$views_column = TRUE;
}
else {
$views_column = FALSE;
}
$page = (isset($_GET['page'])) ? intval($_GET['page']) : 0;
$page_size = (isset($_GET['nopage'])) ? UC_REPORTS_MAX_RECORDS : variable_get('uc_reports_table_size', 30);
$order_statuses = _uc_reports_order_statuses();
$row_cell = $page * variable_get('uc_reports_table_size', 30) + 1;
$csv_rows = array();
// Hard code the ignore of the product kit for this report.
$ignored_types = array('product_kit');
// Build an array of valid product types to include on the report.
$product_types = array();
foreach (uc_product_types() as $type) {
// Pass over any ignored types.
if (!in_array($type, $ignored_types)) {
$product_types[] = $type;
}
}
$header = array(
array('data' => t('#')),
array('data' => t('Product'), 'field' => 'n.title'),
array('data' => t('Sold'), 'field' => 'sold'),
array('data' => t('Revenue'), 'field' => 'revenue', 'sort' => 'desc'),
array('data' => t('Gross'), 'field' => 'gross'),
);
$csv_rows[] = array(t('#'), t('Product'), t('Sold'), t('Revenue'), t('Gross'));
if ($views_column) {
$header[] = array('data' => t('Views'), 'field' => 'nc.totalcount');
$csv_rows[0][] = t('Views');
}
$query = db_select('node', 'n', array('fetch' => PDO::FETCH_ASSOC))->extend('PagerDefault')->extend('TableSort')
->orderByHeader($header)
->limit($page_size);
$query->addField('n', 'nid');
$query->addField('n', 'title');
$query->addExpression("(SELECT SUM(uop.qty) FROM {uc_order_products} AS uop LEFT JOIN {uc_orders} AS uo ON uop.order_id = uo.order_id WHERE uo.order_status IN (:statuses) AND uop.nid = n.nid)", 'sold', array(':statuses' => $order_statuses));
$query->addExpression("(SELECT (SUM(uop.price * uop.qty) - SUM(uop.cost * uop.qty)) FROM {uc_order_products} AS uop LEFT JOIN {uc_orders} AS uo ON uop.order_id = uo.order_id WHERE uo.order_status IN (:statuses) AND uop.nid = n.nid)", 'gross', array(':statuses' => $order_statuses));
$query->addExpression("(SELECT (SUM(uop.price * uop.qty)) FROM {uc_order_products} AS uop LEFT JOIN {uc_orders} AS uo ON uop.order_id = uo.order_id WHERE uo.order_status IN (:statuses) AND uop.nid = n.nid)", 'revenue', array(':statuses' => $order_statuses));
if ($views_column) {
$query->leftJoin('node_counter', 'nc', 'n.nid = nc.nid');
$query->addField('nc', 'totalcount');
}
$query->condition('n.type', $product_types, 'IN')
->groupBy('n.nid')
->groupBy('n.title');
$products = $query->execute();
foreach ($products as $product) {
$product_cell = l($product['title'], 'node/' . ($product['nid']));
$product_csv = $product['title'];
$sold_cell = (empty($product['sold'])) ? 0 : $product['sold'];
$sold_csv = $sold_cell;
$revenue_cell = uc_currency_format((empty($product['revenue'])) ? 0 : $product['revenue']);
$revenue_csv = $revenue_cell;
$gross_cell = uc_currency_format((empty($product['gross'])) ? 0 : $product['gross']);
$gross_csv = $gross_cell;
$row = array(
'data' => array(
$row_cell,
$product_cell,
"$sold_cell",
array('data' => "$revenue_cell", 'nowrap' => 'nowrap'),
array('data' => "$gross_cell", 'nowrap' => 'nowrap'),
),
'primary' => TRUE,
);
$csv_row = array($row_cell, $product_csv, $sold_csv, $revenue_csv, $gross_csv);
if ($views_column) {
$views = isset($product['totalcount']) ? $product['totalcount'] : 0;
$row['data'][] = $views;
$csv_row[] = $views;
}
$rows[] = $row;
$csv_rows[] = $csv_row;
if (module_exists('uc_attribute')) {
// Get the SKUs from this product.
$models = _uc_reports_product_get_skus($product['nid']);
// Add the product breakdown rows
foreach ($models as $model) {
$sold = db_query("SELECT SUM(qty) FROM {uc_order_products} AS p LEFT JOIN {uc_orders} AS o ON p.order_id = o.order_id WHERE o.order_status IN (:statuses) AND p.model = :model AND p.nid = :nid", array(':statuses' => $order_statuses, ':model' => $model, ':nid' => $product['nid']))->fetchField();
$revenue = db_query("SELECT SUM(p.price * p.qty) FROM {uc_order_products} AS p LEFT JOIN {uc_orders} AS o ON p.order_id = o.order_id WHERE o.order_status IN (:statuses) AND p.model = :model AND p.nid = :nid", array(':statuses' => $order_statuses, ':model' => $model, ':nid' => $product['nid']))->fetchField();
$gross = db_query("SELECT (SUM(p.price * p.qty) - SUM(p.cost * p.qty)) FROM {uc_order_products} AS p LEFT JOIN {uc_orders} AS o ON p.order_id = o.order_id WHERE o.order_status IN (:statuses) AND p.model = :model AND p.nid = :nid", array(':statuses' => $order_statuses, ':model' => $model, ':nid' => $product['nid']))->fetchField();
$breakdown_product = " $model";
$product_csv = " $model";
$breakdown_sold = ((!empty($sold)) ? $sold : 0);
$sold_csv = ((!empty($sold)) ? $sold : 0);
$breakdown_revenue = theme('uc_price', array('price' => !empty($revenue) ? $revenue : 0));
$breakdown_gross = theme('uc_price', array('price' => !empty($gross) ? $gross : 0));
$revenue_csv = uc_currency_format(!empty($revenue) ? $revenue : 0);
$gross_csv = uc_currency_format(!empty($gross) ? $gross : 0);
$row = array(
'data' => array(
'',
$breakdown_product,
$breakdown_sold,
array('data' => $breakdown_revenue, 'nowrap' => 'nowrap'),
array('data' => $breakdown_gross, 'nowrap' => 'nowrap'),
),
);
$csv_row = array('', $product_csv, $sold_csv, $revenue_csv, $gross_csv);
if ($views_column) {
$row['data'][] = '';
$csv_row[] = '';
}
$rows[] = $row;
$csv_rows[] = $csv_row;
}
}
$row_cell++;
}
if (empty($rows)) {
$rows[] = array(array('data' => t('No products found'), 'colspan' => count($header)));
}
$csv_data = uc_reports_store_csv('uc_products', $csv_rows);
$build['report'] = array(
'#theme' => 'uc_reports_product_table',
'#header' => $header,
'#rows' => $rows,
'#attributes' => array('width' => '100%', 'class' => array('uc-sales-table')),
);
$build['pager'] = array(
'#theme' => 'pager',
);
$build['links'] = array(
'#prefix' => '',
'#suffix' => '
',
);
$build['links']['export_csv'] = array(
'#markup' => l(t('Export to CSV file.'), 'admin/store/reports/getcsv/' . $csv_data['report'] . '/' . $csv_data['user']),
'#suffix' => ' ',
);
if (isset($_GET['nopage'])) {
$build['links']['toggle_pager'] = array(
'#markup' => l(t('Show paged records'), 'admin/store/reports/products'),
);
}
else {
$build['links']['toggle_pager'] = array(
'#markup' => l(t('Show all records'), 'admin/store/reports/products', array('query' => array('nopage' => '1'))),
);
}
$build['instructions'] = array('#markup' => '*' . t('Make sure %setting_name is set to %state in the access log settings page to enable views column.', array('%setting_name' => 'count content views', '%state' => 'enabled', '!url' => url('admin/config/system/statistics', array('query' => array('destination' => 'admin/store/reports/products'))))) . '');
return $build;
}
/**
* Gets the SKUs on a product, first from the product itself, then from the
* adjustments table, finally pulling any SKUs out of previous orders.
*
* @param $nid
* The product's node ID.
*
* @return
* A unique sorted array of all skus.
*/
function _uc_reports_product_get_skus($nid) {
// Product SKU.
$models = array(db_query("SELECT model FROM {uc_products} WHERE nid = :nid", array(':nid' => $nid))->fetchField());
// Adjustment SKUs.
$models += db_query("SELECT model FROM {uc_product_adjustments} WHERE nid = :nid", array(':nid' => $nid))->fetchCol();
// SKUs from orders.
$models += db_query("SELECT DISTINCT model FROM {uc_order_products} WHERE nid = :nid", array(':nid' => $nid))->fetchCol();
// Unique, sorted.
$models = array_unique($models);
asort($models);
return $models;
}
/**
* Displays the custom product report.
*/
function uc_reports_products_custom() {
$timezone = _uc_reports_timezone_offset();
$timezone_offset = REQUEST_TIME + $timezone;
$statistics = db_query("SELECT status FROM {system} WHERE name = :module", array(':module' => 'statistics'))->fetchField();
$count_views = variable_get('statistics_count_content_views', FALSE);
$page = (!is_null($_GET['page'])) ? intval($_GET['page']) : 0;
$page_size = (!is_null($_GET['nopage'])) ? UC_REPORTS_MAX_RECORDS : variable_get('uc_reports_table_size', 30);
$csv_rows = array();
// Hard code the ignore of the product kit for this report.
$ignored_types = array('product_kit');
// Build an array of valid product types to include on the report.
$product_types = array();
foreach (uc_product_types() as $type) {
// Pass over any ignored types.
if (!in_array($type, $ignored_types)) {
$product_types[] = $type;
}
}
// Use default report parameters if we don't detect values in the URL.
if (arg(5) == '') {
$args = array(
'start_date' => gmmktime(0, 0, 0, gmdate('n', $timezone_offset), 1, gmdate('Y', $timezone_offset) - 1),
'end_date' => REQUEST_TIME,
'status' => FALSE,
);
}
else {
$args = array(
'start_date' => arg(5),
'end_date' => arg(6),
'status' => explode(',', arg(7)),
);
}
// Pull the order statuses into a SQL friendly array.
if ($args['status'] === FALSE) {
$order_statuses = _uc_reports_order_statuses();
}
else {
$order_statuses = $args['status'];
}
$query = db_select('node', 'n', array('fetch' => PDO::FETCH_ASSOC))->extend('PagerDefault')->extend('TableSort')
->limit($page_size)
->fields('n', array(
'nid',
'title',
))
->condition('type', $product_types, 'IN')
->groupBy('n.nid');
$query->addExpression("(SELECT SUM(qty) FROM {uc_order_products} AS p LEFT JOIN {uc_orders} AS o ON p.order_id = o.order_id WHERE o.order_status IN (:statuses) AND p.nid = n.nid AND o.created >= :start AND o.created <= :end)", 'sold', array(':statuses' => $order_statuses, ':start' => $args['start_date'], ':end' => $args['end_date']));
$query->addExpression("(SELECT (SUM(p2.price * p2.qty)) FROM {uc_order_products} AS p2 LEFT JOIN {uc_orders} AS o ON p2.order_id = o.order_id WHERE o.order_status IN (:statuses) AND p2.nid = n.nid AND o.created >= :start AND o.created <= :end)", 'revenue', array(':statuses' => $order_statuses, ':start' => $args['start_date'], ':end' => $args['end_date']));
$query->addExpression("(SELECT (SUM(p3.price * p3.qty) - SUM(p3.cost * p3.qty)) FROM {uc_order_products} AS p3 LEFT JOIN {uc_orders} AS o ON p3.order_id = o.order_id WHERE o.order_status IN (:statuses) AND p3.nid = n.nid AND o.created >= :start AND o.created <= :end)", 'gross', array(':statuses' => $order_statuses, ':start' => $args['start_date'], ':end' => $args['end_date']));
if ($statistics && $count_views) {
$header = array(
array('data' => t('#')),
array('data' => t('Product'), 'field' => 'n.title'),
array('data' => t('Views'), 'field' => 'c.totalcount'),
array('data' => t('Sold'), 'field' => 'sold'),
array('data' => t('Revenue'), 'field' => 'revenue', 'sort' => 'desc'),
array('data' => t('Gross'), 'field' => 'gross'),
);
$csv_rows[] = array(t('#'), t('Product'), t('Views'), t('Sold'), t('Revenue'), t('Gross'));
$query->leftJoin('node_counter', 'c', 'n.nid = c.nid');
$query->addField('c', 'totalcount');
}
else {
$header = array(
array('data' => t('#')),
array('data' => t('Product'), 'field' => 'n.title'),
array('data' => t('Sold'), 'field' => 'sold'),
array('data' => t('Revenue'), 'field' => 'revenue', 'sort' => 'desc'),
array('data' => t('Gross'), 'field' => 'gross'),
);
$csv_rows[] = array(t('#'), t('Product'), t('Sold'), t('Revenue'), t('Gross'));
}
$query->orderByHeader($header);
$products = $query->execute();
foreach ($products as $product) {
$row_cell = ($page * variable_get('uc_reports_table_size', 30)) + count($rows) + 1;
$product_cell = l($product['title'], 'node/' . ($product['nid']));
$product_csv = $product['title'];
$sold_cell = (empty($product['sold'])) ? 0 : $product['sold'];
$sold_csv = $sold_cell;
$revenue_cell = uc_currency_format((empty($product['revenue'])) ? 0 : $product['revenue']);
$revenue_csv = $revenue_cell;
$gross_cell = uc_currency_format((empty($product['gross'])) ? 0 : $product['gross']);
$gross_csv = $gross_cell;
if (module_exists('uc_attribute')) {
$breakdown_product = $breakdown_sold = $breakdown_revenue = $breakdown_gross = '';
foreach (_uc_reports_product_get_skus($product['nid']) as $model) { // was $models
$sold = db_query("SELECT SUM(qty) FROM {uc_order_products} AS p LEFT JOIN {uc_orders} AS o ON p.order_id = o.order_id WHERE o.order_status IN (:statuses) AND p.model = :model AND p.nid = :nid AND o.created >= :start AND o.created <= :end", array(':statuses' => $order_statuses, ':start' => $args['start_date'], ':end' => $args['end_date'], ':model' => $model, ':nid' => $product['nid']))->fetchField();
$revenue = db_query("SELECT SUM(p.price * p.qty) FROM {uc_order_products} AS p LEFT JOIN {uc_orders} AS o ON p.order_id = o.order_id WHERE o.order_status IN (:statuses) AND p.model = :model AND p.nid = :nid AND o.created >= :start AND o.created <= :end", array(':statuses' => $order_statuses, ':start' => $args['start_date'], ':end' => $args['end_date'], ':model' => $model, ':nid' => $product['nid']))->fetchField();
$gross = db_query("SELECT (SUM(p.price * p.qty) - SUM(p.cost * p.qty)) FROM {uc_order_products} AS p LEFT JOIN {uc_orders} AS o ON p.order_id = o.order_id WHERE o.order_status IN (:statuses) AND p.model = :model AND p.nid = :nid AND o.created >= :start AND o.created <= :end", array(':statuses' => $order_statuses, ':start' => $args['start_date'], ':end' => $args['end_date'], ':model' => $model, ':nid' => $product['nid']))->fetchField();
$breakdown_product .= "
$model";
$product_csv .= "\n $model";
$breakdown_sold .= "
" . ((!empty($sold)) ? $sold : 0);
$sold_csv .= "\n " . ((!empty($sold)) ? $sold : 0);
$breakdown_revenue .= "
" . (uc_currency_format((!empty($revenue)) ? $revenue : 0));
$revenue_csv .= "\n " . (uc_currency_format((!empty($revenue)) ? $revenue : 0));
$breakdown_gross .= "
" . (uc_currency_format((!empty($gross)) ? $gross : 0));
$gross_csv .= "\n " . (uc_currency_format((!empty($gross)) ? $gross : 0));
}
$product_cell = $product_cell . $breakdown_product;
$sold_cell = '' . $sold_cell . '' . $breakdown_sold;
$revenue_cell = '' . $revenue_cell . '' . $breakdown_revenue;
$gross_cell = '' . $gross_cell . '' . $breakdown_gross;
}
if ($statistics && $count_views) {
$views = (empty($product['totalcount'])) ? 0 : $product['totalcount'];
$rows[] = array(
array('data' => $row_cell),
array('data' => $product_cell),
array('data' => $views),
array('data' => $sold_cell),
array('data' => $revenue_cell, 'nowrap' => 'nowrap'),
array('data' => $gross_cell, 'nowrap' => 'nowrap'),
);
$csv_rows[] = array($row_cell, $product_csv, $views, $sold_csv, $revenue_csv, $gross_csv);
}
else {
$rows[] = array(
array('data' => $row_cell),
array('data' => $product_cell),
array('data' => $sold_cell),
array('data' => $revenue_cell, 'nowrap' => 'nowrap'),
array('data' => $gross_cell, 'nowrap' => 'nowrap'),
);
$csv_rows[] = array($row_cell, $product_csv, $sold_csv, $revenue_csv, $gross_csv);
}
}
if (empty($rows)) {
$rows[] = array(array('data' => t('No products found'), 'colspan' => count($header)));
}
$csv_data = uc_reports_store_csv('uc_products', $csv_rows);
// Build the page output holding the form, table, and CSV export link.
$build['form'] = drupal_get_form('uc_reports_products_custom_form', $args, $args['status']);
$build['report'] = array(
'#theme' => 'table',
'#header' => $header,
'#rows' => $rows,
'#attributes' => array('width' => '100%', 'class' => array('uc-sales-table')),
);
$build['pager'] = array(
'#theme' => 'pager',
);
$build['links'] = array(
'#prefix' => '',
'#suffix' => '
',
);
$build['links']['export_csv'] = array(
'#markup' => l(t('Export to CSV file.'), 'admin/store/reports/getcsv/' . $csv_data['report'] . '/' . $csv_data['user']),
);
$build['instructions'] = array('#markup' => '*' . t('Make sure %setting_name is set to %state in the access log settings page to enable views column.', array('%setting_name' => 'count content views', '%state' => 'enabled', '!url' => url('admin/config/system/statistics', array('query' => array('destination' => 'admin/store/reports/products/custom'))))) . '');
return $output;
}
/**
* Form builder for the custom product report.
*
* @see uc_reports_products_custom_form_validate()
* @see uc_reports_products_custom_form_submit()
* @ingroup forms
*/
function uc_reports_products_custom_form($form, &$form_state, $values, $statuses) {
$form['search'] = array(
'#type' => 'fieldset',
'#title' => t('Customize product report parameters'),
'#description' => t('Adjust these values and update the report to build your custom product report. Once submitted, the report may be bookmarked for easy reference in the future.'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['search']['start_date'] = array(
'#type' => 'date',
'#title' => t('Start date'),
'#default_value' => array(
'month' => format_date($values['start_date'], 'custom', 'n'),
'day' => format_date($values['start_date'], 'custom', 'j'),
'year' => format_date($values['start_date'], 'custom', 'Y'),
),
);
$form['search']['end_date'] = array(
'#type' => 'date',
'#title' => t('End date'),
'#default_value' => array(
'month' => format_date($values['end_date'], 'custom', 'n'),
'day' => format_date($values['end_date'], 'custom', 'j'),
'year' => format_date($values['end_date'], 'custom', 'Y'),
),
);
$options = array();
foreach (uc_order_status_list() as $status) {
$options[$status['id']] = $status['title'];
}
if ($statuses === FALSE) {
$statuses = variable_get('uc_reports_reported_statuses', array('completed'));
}
$form['search']['status'] = array(
'#type' => 'select',
'#title' => t('Order statuses'),
'#description' => t('Only orders with selected statuses will be included in the report.') . '
' . t('Hold Ctrl + click to select multiple statuses.'),
'#options' => $options,
'#default_value' => $statuses,
'#multiple' => TRUE,
'#size' => 5,
);
$form['search']['actions'] = array('#type' => 'actions');
$form['search']['actions']['submit'] = array(
'#type' => 'submit',
'#value' => t('Update report'),
);
return $form;
}
/**
* Validation handler for the custom product report.
*
* @see uc_reports_products_custom_form()
* @see uc_reports_products_custom_form_submit()
*/
function uc_reports_products_custom_form_validate($form, &$form_state) {
if (empty($form_state['values']['status'])) {
form_set_error('status', t('You must select at least one order status.'));
}
}
/**
* Submission handler for the custom product report.
*
* @see uc_reports_products_custom_form()
* @see uc_reports_products_custom_form_submit()
*/
function uc_reports_products_custom_form_submit($form, &$form_state) {
$timezone_offset = _uc_reports_timezone_offset();
// Build the start and end dates from the form.
$start_date = gmmktime(0, 0, 0, $form_state['values']['start_date']['month'], $form_state['values']['start_date']['day'], $form_state['values']['start_date']['year']);
$end_date = gmmktime(23, 59, 59, $form_state['values']['end_date']['month'], $form_state['values']['end_date']['day'], $form_state['values']['end_date']['year']);
$args = array(
$start_date,
$end_date,
urlencode(implode(',', array_keys($form_state['values']['status']))),
);
$form_state['redirect'] = array('admin/store/reports/products/custom/' . implode('/', $args));
}
/**
* Return a themed table for product reports.
*
* Straight duplication of theme_table, but our row handling is different.
*
* @ingroup themeable
*/
function theme_uc_reports_product_table($variables) {
$header = $variables['header'];
$rows = $variables['rows'];
$attributes = $variables['attributes'];
$caption = $variables['caption'];
// Add sticky headers, if applicable.
if (count($header)) {
drupal_add_js('misc/tableheader.js');
// Add 'sticky-enabled' class to the table to identify it for JS.
// This is needed to target tables constructed by this function.
$attributes['class'][] = 'sticky-enabled';
}
$output = '\n";
if (isset($caption)) {
$output .= '' . $caption . "\n";
}
// Format the table header:
if (count($header)) {
$ts = tablesort_init($header);
// HTML requires that the thead tag has tr tags in it follwed by tbody
// tags. Using ternary operator to check and see if we have any rows.
$output .= (count($rows) ? ' ' : '
');
foreach ($header as $cell) {
$cell = tablesort_header($cell, $header, $ts);
$output .= _theme_table_cell($cell, TRUE);
}
// Using ternary operator to close the tags based on whether or not there are rows
$output .= (count($rows) ? "
\n" : "\n");
}
else {
$ts = array();
}
// Format the table rows:
if (count($rows)) {
$output .= "\n";
$flip = array('even' => 'odd', 'odd' => 'even');
$class = 'even';
foreach ($rows as $number => $row) {
$attributes = array();
// Check if we're dealing with a simple or complex row
if (isset($row['data'])) {
foreach ($row as $key => $value) {
if ($key == 'data') {
$cells = $value;
}
elseif ($key == 'primary') {
$class = $flip[$class];
}
else {
$attributes[$key] = $value;
}
}
}
else {
$cells = $row;
}
if (count($cells)) {
// Add odd/even class
$attributes['class'][] = $class;
// Build row
$output .= ' ';
$i = 0;
foreach ($cells as $cell) {
$cell = tablesort_cell($cell, $header, $ts, $i++);
$output .= _theme_table_cell($cell);
}
$output .= "
\n";
}
}
$output .= "\n";
}
$output .= "
\n";
return $output;
}
/**
* Displays the sales summary report.
*/
function uc_reports_sales_summary() {
$timezone_offset = REQUEST_TIME + _uc_reports_timezone_offset();
$order_statuses = _uc_reports_order_statuses();
$format = variable_get('uc_date_format_default', 'm/d/Y');
$date_month = gmdate('n', $timezone_offset);
$date_year = gmdate('Y', $timezone_offset);
$date_day_of_month = gmdate('j', $timezone_offset);
$date_days_in_month = gmdate('t', $timezone_offset);
$month_start = gmmktime(0, 0, 0, $date_month, 1, $date_year);
$month_end = gmmktime(23, 59, 59, $date_month, $date_days_in_month, $date_year);
$today_start = gmmktime(0, 0, 0, $date_month, $date_day_of_month, $date_year);
$today_end = gmmktime(23, 59, 59, $date_month, $date_day_of_month, $date_year);
// Build the report table header.
$header = array(t('Sales data'), t('Number of orders'), t('Total revenue'), t('Average order'));
// Calculate and add today's sales summary to the report table.
$today = _uc_reports_get_sales($today_start);
$rows[] = array(
l(t('Today, !date', array('!date' => format_date($today_start, 'custom', $format, 0))), 'admin/store/orders/search/results/0/0/0/0/0/0/' . $today_start . '/' . $today_end),
$today['total'],
array('#theme' => 'uc_price', '#price' => $today['income']),
array('#theme' => 'uc_price', '#price' => $today['average']),
);
// Calculate and add yesterday's sales summary to the report table.
$yesterday = _uc_reports_get_sales($today_start - 86400);
$rows[] = array(
l(t('Yesterday, !date', array('!date' => format_date($today_start - 86400, 'custom', $format, 0))), 'admin/store/orders/search/results/0/0/0/0/0/0/' . ($today_start - 86400) . '/' . ($today_end - 86400)),
$yesterday['total'],
array('#theme' => 'uc_price', '#price' => $yesterday['income']),
array('#theme' => 'uc_price', '#price' => $yesterday['average']),
);
// Get the sales report for the month.
$month = _uc_reports_get_sales($month_start, 'month');
$month_title = format_date($month_start, 'custom', 'M Y', 0);
// Add the month-to-date details to the report table.
$rows[] = array(
l(t('Month-to-date, @month', array('@month' => $month_title)), 'admin/store/orders/search/results/0/0/0/0/0/0/' . $month_start . '/' . $month_end),
$month['total'],
array('#theme' => 'uc_price', '#price' => $month['income']),
array('#theme' => 'uc_price', '#price' => $month['average']),
);
// Calculate the daily averages for the month.
$daily_orders = round($month['total'] / $date_day_of_month, 2);
$daily_revenue = round($month['income'] / $date_day_of_month, 2);
if ($daily_orders > 0) {
$daily_average = round($daily_revenue / $daily_orders, 2);
}
else {
$daily_average = 0;
}
// Add the daily averages for the month to the report table.
$rows[] = array(
t('Daily average for @month', array('@month' => $month_title)),
$daily_orders,
array('#theme' => 'uc_price', '#price' => $daily_revenue),
'',
);
// Store the number of days remaining in the month.
$remaining_days = $date_days_in_month - $date_day_of_month;
// Add the projected totals for the month to the report table.
$rows[] = array(
t('Projected totals for @date', array('@date' => $month_title)),
round($month['total'] + ($daily_orders * $remaining_days), 2),
array('#theme' => 'uc_price', '#price' => round($month['income'] + ($daily_revenue * $remaining_days), 2)),
'',
);
// Add the sales data report table to the output.
$build['sales'] = array(
'#theme' => 'table',
'#header' => $header,
'#rows' => $rows,
'#attributes' => array('class' => array('uc-sales-table')),
);
// Build the header statistics table header.
$header = array(array('data' => t('Statistics'), 'width' => '50%'), '');
$rows = array(
array(array('data' => t('Grand total sales')), array('data' => array('#theme' => 'uc_price', '#price' => db_query("SELECT SUM(order_total) FROM {uc_orders} WHERE order_status IN (:statuses)", array(':statuses' => $order_statuses))->fetchField()))),
array(array('data' => t('Customers total')), array('data' => db_query("SELECT COUNT(DISTINCT uid) FROM {uc_orders} WHERE order_status IN (:statuses)", array(':statuses' => $order_statuses))->fetchField())),
array(array('data' => t('New customers today')), array('data' => db_query("SELECT COUNT(DISTINCT uid) FROM {uc_orders} WHERE order_status IN (:statuses) AND :start <= created AND created <= :end", array(':statuses' => $order_statuses, ':start' => $today_start, ':end' => $today_end))->fetchField())),
array(array('data' => t('Online customers')), array('data' => db_query("SELECT COUNT(DISTINCT s.uid) FROM {sessions} as s LEFT JOIN {uc_orders} as o ON s.uid = o.uid WHERE s.uid > 0 AND o.order_status IN (:statuses)", array(':statuses' => $order_statuses))->fetchField())),
);
// Add the statistics table to the output.
$build['statistics'] = array(
'#theme' => 'table',
'#header' => $header,
'#rows' => $rows,
'#attributes' => array('width' => '100%', 'class' => array('uc-sales-table')),
);
// Build the total orders by status table header.
$header = array(array('data' => t('Total orders by status'), 'width' => '50%'), '');
$rows = array();
$unknown = 0;
// Loop through the order statuses with their total number of orders.
$result = db_query("SELECT s.order_status_id, order_status, s.title, s.weight, COUNT(o.order_status) as order_count FROM {uc_orders} as o LEFT JOIN {uc_order_statuses} as s ON s.order_status_id = o.order_status GROUP BY s.order_status_id, order_status, s.title, s.weight ORDER BY s.weight DESC");
while ($status = $result->fetchAssoc()) {
if (!empty($status['title'])) {
// Add the total number of orders with this status to the table.
$rows[] = array(
l($status['title'], 'admin/store/orders/sort/' . $status['order_status_id']),
$status['order_count'],
);
}
else {
// Keep track of the count of orders with an unknown status.
$unknown += $status['order_count'];
}
}
// Add the unknown status count to the table.
if ($unknown > 0) {
$rows[] = array(
t('Unknown status'),
$unknown,
);
}
// Add the total orders by status table to the output.
$build['orders'] = array(
'#theme' => 'table',
'#header' => $header,
'#rows' => $rows,
'#attributes' => array('class' => array('uc-sales-table')),
);
return $build;
}
/**
* Displays the yearly sales report form and table.
*/
function uc_reports_sales_year() {
$timezone_offset = REQUEST_TIME + _uc_reports_timezone_offset();
$order_statuses = _uc_reports_order_statuses();
// Get the year for the report from the URL.
if (intval(arg(5)) == 0) {
$year = format_date($timezone_offset, 'custom', 'Y', 0);
}
else {
$year = arg(5);
}
// Build the header for the report table.
$header = array(t('Month'), t('Number of orders'), t('Total revenue'), t('Average order'));
// Build the header to the CSV export.
$csv_rows = array(array(t('Month'), t('Number of orders'), t('Total revenue'), t('Average order')));
// For each month of the year...
for ($i = 1; $i <= 12; $i++) {
// Calculate the start and end timestamps for the month in local time.
$month_start = gmmktime(0, 0, 0, $i, 1, $year);
$month_end = gmmktime(23, 59, 59, $i + 1, 0, $year);
// Get the sales report for the month.
$month_sales = _uc_reports_get_sales($month_start, 'month');
// Calculate the average order total for the month.
if ($month_sales['total'] != 0) {
$month_average = round($month_sales['income'] / $month_sales['total'], 2);
}
else {
$month_average = 0;
}
// Add the month's row to the report table.
$rows[] = array(
l(gmdate('M Y', $month_start), 'admin/store/orders/search/results/0/0/0/0/0/0/' . $month_start . '/' . $month_end),
$month_sales['total'],
uc_currency_format($month_sales['income']),
uc_currency_format($month_average),
);
// Add the data to the CSV export.
$csv_rows[] = array(
gmdate('M Y', $month_start),
$month_sales['total'],
uc_currency_format($month_sales['income']),
uc_currency_format($month_average),
);
}
// Calculate the start and end timestamps for the year in local time.
$year_start = gmmktime(0, 0, 0, 1, 1, $year);
$year_end = gmmktime(23, 59, 59, 1, 0, $year + 1);
// Get the sales report for the year.
$year_sales = _uc_reports_get_sales($year_start, 'year');
// Calculate the average order total for the year.
if ($year_sales['total'] != 0) {
$year_average = round($year_sales['income'] / $year_sales['total'], 2);
}
else {
$year_average = 0;
}
// Add the total row to the report table.
$rows[] = array(
l(t('Total @year', array('@year' => $year)), 'admin/store/orders/search/results/0/0/0/0/0/0/' . $year_start . '/' . $year_end),
$year_sales['total'],
uc_currency_format($year_sales['income']),
uc_currency_format($year_average),
);
// Add the total data to the CSV export.
$csv_rows[] = array(
t('Total @year', array('@year' => $year)),
$year_sales['total'],
uc_currency_format($year_sales['income']),
uc_currency_format($year_average),
);
// Cache the CSV export.
$csv_data = uc_reports_store_csv('uc_sales_yearly', $csv_rows);
// Build the page output holding the form, table, and CSV export link.
$build['form'] = drupal_get_form('uc_reports_sales_year_form', $year);
$build['report'] = array(
'#theme' => 'table',
'#header' => $header,
'#rows' => $rows,
'#attributes' => array('width' => '100%', 'class' => array('uc-sales-table')),
);
$build['links'] = array(
'#prefix' => '',
'#suffix' => '
',
);
$build['links']['export_csv'] = array(
'#markup' => l(t('Export to CSV file.'), 'admin/store/reports/getcsv/' . $csv_data['report'] . '/' . $csv_data['user']),
);
return $build;
}
/**
* Form to specify a year for the yearly sales report.
*
* @see uc_reports_sales_year_form_submit()
* @ingroup forms
*/
function uc_reports_sales_year_form($form, &$form_state, $year) {
$form['year'] = array(
'#type' => 'textfield',
'#title' => t('Sales year'),
'#default_value' => $year,
'#maxlength' => 4,
'#size' => 4,
'#prefix' => '',
'#suffix' => '
',
);
$form['actions'] = array('#type' => 'actions');
$form['actions']['submit'] = array(
'#type' => 'submit',
'#value' => t('View'),
'#prefix' => '',
'#suffix' => '
',
);
return $form;
}
/**
* Submit handler for uc_reports_sales_year_form().
*
* @see uc_reports_sales_year_form()
*/
function uc_reports_sales_year_form_submit($form, &$form_state) {
$form_state['redirect'] = 'admin/store/reports/sales/year/' . $form_state['values']['year'];
}
/**
* Displays the custom sales report form and table.
*/
function uc_reports_sales_custom() {
$timezone = _uc_reports_timezone_offset();
$timezone_offset = REQUEST_TIME + $timezone;
$format = variable_get('uc_date_format_default', 'm/d/Y');
// Use default report parameters if we don't detect values in the URL.
if (arg(5) == '') {
$args = array(
'start_date' => gmmktime(0, 0, 0, gmdate('n', $timezone_offset), 1, gmdate('Y', $timezone_offset) - 1),
'end_date' => REQUEST_TIME,
'length' => 'month',
'status' => FALSE,
'detail' => FALSE,
);
}
else {
$args = array(
'start_date' => arg(5),
'end_date' => arg(6),
'length' => arg(7),
'status' => explode(',', arg(8)),
'detail' => arg(9),
);
}
// Pull the order statuses into a SQL friendly array.
if ($args['status'] === FALSE) {
$order_statuses = _uc_reports_order_statuses();
}
else {
$order_statuses = "('" . implode("', '", $args['status']) . "')";
}
// Build the header for the report table.
$header = array(t('Date'), t('Number of orders'), t('Products sold'), t('Total revenue'));
// Build the header to the CSV export.
$csv_rows = array(array(t('Date'), t('Number of orders'), t('Products sold'), t('Total revenue')));
// Grab the subreports based on the date range and the report breakdown.
$subreports = _uc_reports_subreport_intervals($args['start_date'], $args['end_date'], $args['length']);
// Loop through the subreports and build the report table.
foreach ($subreports as $subreport) {
$product_data = '';
$product_csv = '';
$order_data = '';
$order_csv = '';
// Create the date title for the subreport.
if ($args['length'] == 'day') {
$date = format_date($subreport['start'], 'custom', $format . ' - D', 0);
}
else {
$date = format_date($subreport['start'], 'custom', $format, 0) . ' - ' . format_date($subreport['end'], 'custom', $format, 0);
}
// Build the order data for the subreport.
$result = db_query("SELECT COUNT(*) as count, title FROM {uc_orders} LEFT JOIN {uc_order_statuses} ON order_status_id = order_status WHERE :start <= created AND created <= :end AND order_status IN (:statuses) GROUP BY order_status, {uc_order_statuses}.title, {uc_order_statuses}.weight ORDER BY weight ASC", array(':statuses' => $order_statuses, ':start' => $subreport['start'], ':end' => $subreport['end']));
$statuses = array();
// Put the order counts into an array by status.
foreach ($result as $status) {
$statuses[] = t('!count - @title', array('!count' => $status->count, '@title' => $status->title));
}
$order_data = implode('
', $statuses);
$order_csv = implode("\n", $statuses);
// Build the product data for the subreport.
if ($args['detail']) {
// Grab the detailed product breakdown if selected.
$result = db_query("SELECT SUM(op.qty) as count, n.title, n.nid FROM {uc_order_products} as op LEFT JOIN {uc_orders} as o ON o.order_id = op.order_id LEFT JOIN {node} as n ON n.nid = op.nid WHERE :start <= o.created AND o.created <= :end AND o.order_status IN (:statuses) GROUP BY n.nid, n.title ORDER BY count DESC, n.title ASC", array(':statuses' => $order_statuses, ':start' => $subreport['start'], ':end' => $subreport['end']));
foreach ($result as $product_breakdown) {
$product_data .= $product_breakdown->count . ' x ' . l($product_breakdown->title, 'node/' . $product_breakdown->nid) . "
\n";
$product_csv .= $product_breakdown->count . ' x ' . $product_breakdown->title . "\n";
}
}
else {
// Otherwise just display the total number of products sold.
$product_data = db_query("SELECT SUM(qty) FROM {uc_orders} as o LEFT JOIN {uc_order_products} as op ON o.order_id = op.order_id WHERE :start <= created AND created <= :end AND order_status IN (:statuses)", array(':statuses' => $order_statuses, ':start' => $subreport['start'], ':end' => $subreport['end']))->fetchField();
$product_csv = $product_data;
}
// Tally up the revenue from the orders.
$revenue_count = db_query("SELECT SUM(order_total) FROM {uc_orders} WHERE :start <= created AND created <= :end AND order_status IN (:statuses)", array(':statuses' => $order_statuses, ':start' => $subreport['start'], ':end' => $subreport['end']))->fetchField();
// Add the subreport's row to the report table.
$rows[] = array(
array('data' => $date, 'nowrap' => 'nowrap'),
empty($order_data) ? '0' : $order_data,
empty($product_data) ? '0' : $product_data,
uc_currency_format($revenue_count),
);
// Add the data to the CSV export.
$csv_rows[] = array(
$date,
empty($order_csv) ? '0' : $order_csv,
empty($product_csv) ? '0' : $product_csv,
uc_currency_format($revenue_count),
);
}
// Calculate the totals for the report.
$order_total = db_query("SELECT COUNT(*) FROM {uc_orders} WHERE :start <= created AND created <= :end AND order_status IN (:statuses)", array(':statuses' => $order_statuses, ':start' => $subreport['start'], ':end' => $subreport['end']))->fetchField();
$product_total = db_query("SELECT SUM(qty) FROM {uc_orders} AS o LEFT JOIN {uc_order_products} AS op ON o.order_id = op.order_id WHERE :start <= created AND created <= :end AND order_status IN (:statuses)", array(':statuses' => $order_statuses, ':start' => $subreport['start'], ':end' => $subreport['end']))->fetchField();
$revenue_total = db_query("SELECT SUM(order_total) FROM {uc_orders} WHERE :start <= created AND created <= :end AND order_status IN (:statuses)", array(':statuses' => $order_statuses, ':start' => $subreport['start'], ':end' => $subreport['end']))->fetchField();
// Add the total row to the report table.
$rows[] = array(
t('Total'),
$order_total,
$product_total,
uc_currency_format($revenue_total),
);
// Add the total data to the CSV export.
$csv_rows[] = array(
t('Total'),
$order_total,
$product_total,
uc_currency_format($revenue_total),
);
// Cache the CSV export.
$csv_data = uc_reports_store_csv('uc_sales_custom', $csv_rows);
// Build the page output holding the form, table, and CSV export link.
$build['form'] = drupal_get_form('uc_reports_sales_custom_form', $args, $args['status']);
$build['report'] = array(
'#theme' => 'table',
'#header' => $header,
'#rows' => $rows,
'#attributes' => array('width' => '100%', 'class' => array('uc-sales-table')),
);
$build['links'] = array(
'#prefix' => '',
'#suffix' => '
',
);
$build['links']['export_csv'] = array(
'#markup' => l(t('Export to CSV file.'), 'admin/store/reports/getcsv/' . $csv_data['report'] . '/' . $csv_data['user']),
);
return $build;
}
/**
* Form builder for the custom sales report.
*
* @see uc_reports_sales_custom_form_validate()
* @see uc_reports_sales_custom_form_submit()
* @ingroup forms
*/
function uc_reports_sales_custom_form($form, &$form_state, $values, $statuses) {
$form['search'] = array(
'#type' => 'fieldset',
'#title' => t('Customize sales report parameters'),
'#description' => t('Adjust these values and update the report to build your custom sales summary. Once submitted, the report may be bookmarked for easy reference in the future.'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['search']['start_date'] = array(
'#type' => 'date',
'#title' => t('Start date'),
'#default_value' => array(
'month' => format_date($values['start_date'], 'custom', 'n', 0),
'day' => format_date($values['start_date'], 'custom', 'j', 0),
'year' => format_date($values['start_date'], 'custom', 'Y', 0),
),
);
$form['search']['end_date'] = array(
'#type' => 'date',
'#title' => t('End date'),
'#default_value' => array(
'month' => format_date($values['end_date'], 'custom', 'n', 0),
'day' => format_date($values['end_date'], 'custom', 'j', 0),
'year' => format_date($values['end_date'], 'custom', 'Y', 0),
),
);
$form['search']['length'] = array(
'#type' => 'select',
'#title' => t('Results breakdown'),
'#description' => t('Large daily reports may take a long time to display.'),
'#options' => array(
'day' => t('daily'),
'week' => t('weekly'),
'month' => t('monthly'),
'year' => t('yearly'),
),
'#default_value' => $values['length'],
);
$options = array();
foreach (uc_order_status_list() as $status) {
$options[$status['id']] = $status['title'];
}
if ($statuses === FALSE) {
$statuses = variable_get('uc_reports_reported_statuses', array('completed'));
}
$form['search']['status'] = array(
'#type' => 'select',
'#title' => t('Order statuses'),
'#description' => t('Only orders with selected statuses will be included in the report.') . '
' . t('Hold Ctrl + click to select multiple statuses.'),
'#options' => $options,
'#default_value' => $statuses,
'#multiple' => TRUE,
'#size' => 5,
);
$form['search']['detail'] = array(
'#type' => 'checkbox',
'#title' => t('Show a detailed list of products ordered.'),
'#default_value' => $values['detail'],
);
$form['search']['actions'] = array('#type' => 'actions');
$form['search']['actions']['submit'] = array(
'#type' => 'submit',
'#value' => t('Update report'),
);
return $form;
}
/**
* Ensure an order status was selected.
*
* @see uc_reports_sales_custom_form()
* @see uc_reports_sales_custom_form_submit()
*/
function uc_reports_sales_custom_form_validate($form, &$form_state) {
if (empty($form_state['values']['status'])) {
form_set_error('status', t('You must select at least one order status.'));
}
}
/**
* Submission handler for uc_reports_sales_custom_form().
*
* @see uc_reports_sales_custom_form()
* @see uc_reports_sales_custom_form_validate()
*/
function uc_reports_sales_custom_form_submit($form, &$form_state) {
$timezone_offset = _uc_reports_timezone_offset();
// Build the start and end dates from the form.
$start_date = gmmktime(0, 0, 0, $form_state['values']['start_date']['month'], $form_state['values']['start_date']['day'], $form_state['values']['start_date']['year']);
$end_date = gmmktime(23, 59, 59, $form_state['values']['end_date']['month'], $form_state['values']['end_date']['day'], $form_state['values']['end_date']['year']);
$args = array(
$start_date,
$end_date,
$form_state['values']['length'],
implode(',', array_keys($form_state['values']['status'])),
$form_state['values']['detail'],
);
$form_state['redirect'] = 'admin/store/reports/sales/custom/' . implode('/', $args);
}