t('Actions'), 'colspan' => 4));
$rows = array();
$result = db_query("SELECT * FROM {uc_packages} WHERE order_id = %d", $order->order_id);
while ($package = db_fetch_object($result)) {
$row = array();
$row[] = $package->package_id;
$product_list = array();
$result2 = db_query("SELECT op.order_product_id, pp.qty, op.title, op.model FROM {uc_packaged_products} AS pp LEFT JOIN {uc_order_products} AS op ON op.order_product_id = pp.order_product_id WHERE pp.package_id = %d", $package->package_id);
while ($product = db_fetch_object($result2)) {
$product_list[] = $product->qty .' x '. check_plain($product->model);
}
$row[] = '
- '. implode('
- ', $product_list) .'
';
$row[] = strtr($package->shipping_type, '_', ' ');
$row[] = check_plain($package->pkg_type);
$row[] = isset($package->sid) ? l($package->sid, 'admin/store/orders/'. $order->order_id .'/shipments/'. $package->sid .'/view') : '';
$row[] = isset($package->tracking_number) ? check_plain($package->tracking_number) : '';
if ($package->sid && $package->label_image) {
$method = db_result(db_query("SELECT shipping_method FROM {uc_shipments} WHERE sid = %d", $package->sid));
}
$row[] = isset($package->label_image) ? l(theme('imagecache', 'uc_thumbnail', $package->label_image, t('Shipping Label'), t('Shipping Label')), 'admin/store/orders/'. $order->order_id .'/shipments/labels/'. $method .'/'. $package->label_image, array('html' => TRUE)) : '';
$row[] = l(t('edit'), 'admin/store/orders/'. $order->order_id .'/packages/'. $package->package_id .'/edit');
$row[] = l(t('ship'), 'admin/store/orders/'. $order->order_id .'/shipments/new', array('query' => 'pkgs[]='. $package->package_id));
$row[] = l(t('delete'), 'admin/store/orders/'. $order->order_id .'/packages/'. $package->package_id .'/delete');
if ($package->sid) {
$row[] = l(t('cancel shipment'), 'admin/store/orders/'. $order->order_id .'/packages/'. $package->package_id .'/cancel');
}
else {
$row[] = '';
}
$rows[] = $row;
}
if (empty($rows)) {
$rows[][] = array('data' => t("This order's products have not been organized into packages."), 'colspan' => 11);
}
$output = theme('table', $header, $rows);
$result = db_query("SELECT op.order_product_id, CASE WHEN COUNT(pp.qty) = 0 THEN 0 ELSE SUM(op.qty) / COUNT(pp.qty) END AS total, SUM(pp.qty) AS packaged FROM {uc_order_products} AS op LEFT JOIN {uc_packaged_products} AS pp ON op.order_product_id = pp.order_product_id WHERE op.order_id = %d AND op.data LIKE '%%%s%%' GROUP BY op.order_product_id HAVING SUM(pp.qty) IS NULL OR CASE WHEN COUNT(pp.qty) = 0 THEN 0 ELSE SUM(op.qty) / COUNT(pp.qty) END > SUM(pp.qty)", $order->order_id, 's:9:"shippable";s:1:"1";');
if (db_fetch_object($result)) {
$output .= l(t('Create packages.'), 'admin/store/orders/'. $order->order_id .'/packages/new');
}
return $output;
}
/**
* Put ordered products into a package.
*
* @ingroup forms
* @see
* theme_uc_shipping_new_package_fieldset()
* uc_shipping_new_package_validate()
* uc_shipping_new_package_submit()
*/
function uc_shipping_new_package($form_state, $order) {
$breadcrumb = drupal_get_breadcrumb();
$breadcrumb[] = l(t('Administer'), 'admin');
$breadcrumb[] = l(t('Store administration'), 'admin/store');
$breadcrumb[] = l(t('Orders'), 'admin/store/orders');
$breadcrumb[] = l(t('Order @id', array('@id' => $order->order_id)), 'admin/store/orders/'. $order->order_id);
$breadcrumb[] = l(t('Packages'), 'admin/store/orders/'. $order->order_id .'/packages');
drupal_set_breadcrumb($breadcrumb);
$form = array('#tree' => TRUE);
$form['instructions'] = array('#value' => t('Organize products into packages.
Package numbers in multiple shipping types are of the first shipping type they appear in. All
packages are given a unique ID when they are saved. Choose the default package "Sep." to
automatically create a package for each of the selected quantity of products in that row.'));
$shipping_types_products = array();
foreach ($order->products as $product) {
if ($product->data['shippable']) {
$product->shipping_type = uc_product_get_shipping_type($product);
$shipping_types_products[$product->shipping_type][] = $product;
}
}
$shipping_type_weights = variable_get('uc_quote_type_weight', array());
$packaged_products = array();
$result = db_query("SELECT op.order_product_id, SUM(pp.qty) AS quantity FROM {uc_packaged_products} AS pp LEFT JOIN {uc_packages} AS p ON pp.package_id = p.package_id LEFT JOIN {uc_order_products} AS op ON op.order_product_id = pp.order_product_id WHERE p.order_id = %d GROUP BY op.order_product_id", $order->order_id);
while ($boxed_product = db_fetch_object($result)) {
$packaged_products[$boxed_product->order_product_id] = $boxed_product->quantity;
}
$form['shipping_types'] = array();
foreach ($shipping_types_products as $shipping_type => $products) {
$form['shipping_types'][$shipping_type] = array('#type' => 'fieldset',
'#title' => ucwords(str_replace('_', ' ', $shipping_type)),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
'#weight' => $shipping_type_weights[$shipping_type],
);
foreach ($products as $product) {
$unboxed_qty = $product->qty - $packaged_products[$product->order_product_id];
if ($unboxed_qty > 0) {
$product_row = array();
$product_row['checked'] = array('#type' => 'checkbox', '#default_value' => 0);
$product_row['model'] = array('#type' => 'markup', '#value' => check_plain($product->model));
$product_row['name'] = array('#type' => 'markup', '#value' => filter_xss_admin($product->title));
$product_row['qty'] = array('#type' => 'select',
'#options' => drupal_map_assoc(uc_range(1, $unboxed_qty)),
'#default_value' => $unboxed_qty,
);
$options = drupal_map_assoc(uc_range(0, count($order->products)));
$options[0] = t('Sep.');
$product_row['package'] = array('#type' => 'select',
'#options' => $options,
'#default_value' => 0,
);
$form['shipping_types'][$shipping_type][$product->order_product_id] = $product_row;
}
}
$form['shipping_types'][$shipping_type]['#theme'] = 'uc_shipping_new_package_fieldset';
}
$form['order_id'] = array('#type' => 'hidden', '#value' => $order->order_id);
$form['create'] = array('#type' => 'submit', '#value' => t('Make packages'));
$form['combine'] = array('#type' => 'submit', '#value' => t('Create one package'));
$form['cancel'] = array('#type' => 'submit', '#value' => t('Cancel'));
return $form;
}
/**
* Format and display the products in a shipping type fieldset.
*
* @ingroup themeable
*/
function theme_uc_shipping_new_package_fieldset($fieldset) {
$output = '';
$header = array(theme('table_select_header_cell'), t('SKU'), t('Title'), t('Qty'), t('Package'));
$rows = array();
foreach (element_children($fieldset) as $op_id) {
$row = array();
$row[] = drupal_render($fieldset[$op_id]['checked']);
$row[] = drupal_render($fieldset[$op_id]['model']);
$row[] = drupal_render($fieldset[$op_id]['name']);
$row[] = drupal_render($fieldset[$op_id]['qty']);
$row[] = drupal_render($fieldset[$op_id]['package']);
$rows[] = $row;
}
$output .= theme('table', $header, $rows);
$output .= drupal_render($fieldset);
return $output;
}
/**
* Validation handler for uc_shipping_new_package().
*
* Do not allow empty packages.
*/
function uc_shipping_new_package_validate($form, &$form_state) {
if ($form_state['values']['op'] != t('Cancel')) {
$empty = TRUE;
foreach ($form_state['values']['shipping_types'] as $shipping_type => $products) {
foreach ($products as $product) {
if ($product['checked'] != 0) {
$empty = FALSE;
break 2;
}
}
}
if ($empty) {
form_set_error($shipping_type, t('Packages should have at least one product in them.'));
}
}
}
/**
* Submit handler for uc_shipping_new_package().
*/
function uc_shipping_new_package_submit($form, &$form_state) {
if ($form_state['values']['op'] != t('Cancel')) {
$packages = array(0 => array());
foreach ($form_state['values']['shipping_types'] as $shipping_type => $products) {
foreach ($products as $id => $product) {
if ($product['checked']) {
if ($form_state['values']['op'] == t('Create one package')) {
$product['package'] = 1;
}
if ($product['package'] != 0) {
$packages[$product['package']]['products'][$id] = (object)$product;
if (!isset($packages[$product['package']]['shipping_type'])) {
$packages[$product['package']]['shipping_type'] = $shipping_type;
}
}
else {
$packages[0][$shipping_type][$id] = (object)$product;
}
}
}
if (is_array($packages[0][$shipping_type])) {
foreach ($packages[0][$shipping_type] as $id => $product) {
$qty = $product->qty;
$product->qty = 1;
for ($i = 0; $i < $qty; $i++) {
$packages[] = array('products' => array($id => $product), 'shipping_type' => $shipping_type);
}
}
}
unset($packages[0][$shipping_type]);
}
if (empty($packages[0])) {
unset($packages[0]);
}
foreach ($packages as $package) {
$package['order_id'] = $form_state['values']['order_id'];
uc_shipping_package_save($package);
}
}
$form_state['redirect'] = 'admin/store/orders/'. $form_state['values']['order_id'] .'/packages';
}
/**
* Rearrange the products in or out of a package.
*
* @ingroup forms
* @see theme_uc_shipping_edit_package_fieldset()
* @see uc_shipping_package_edit_submit()
*/
function uc_shipping_package_edit($form_state, $order, $package) {
$breadcrumb = drupal_get_breadcrumb();
$breadcrumb[] = l(t('Administer'), 'admin');
$breadcrumb[] = l(t('Store administration'), 'admin/store');
$breadcrumb[] = l(t('Orders'), 'admin/store/orders');
$breadcrumb[] = l(t('Order @id', array('@id' => $order->order_id)), 'admin/store/orders/'. $order->order_id);
$breadcrumb[] = l(t('Packages'), 'admin/store/orders/'. $order->order_id .'/packages');
drupal_set_breadcrumb($breadcrumb);
$products = array();
$shipping_types_products = array();
foreach ($order->products as $product) {
if ($product->data['shippable']) {
$product->shipping_type = uc_product_get_shipping_type($product);
$shipping_types_products[$product->shipping_type][$product->order_product_id] = $product;
$products[$product->order_product_id] = $product;
}
}
$result = db_query("SELECT order_product_id, SUM(qty) AS quantity FROM {uc_packaged_products} AS pp LEFT JOIN {uc_packages} AS p ON pp.package_id = p.package_id WHERE p.order_id = %d GROUP BY order_product_id", $order->order_id);
while ($packaged_product = db_fetch_object($result)) {
//Make already packaged products unavailable, except those in this package.
$products[$packaged_product->order_product_id]->qty = $products[$packaged_product->order_product_id]->qty - $packaged_product->quantity + $package->products[$packaged_product->order_product_id]->qty;
}
$form = array();
$form['#tree'] = TRUE;
$form['package_id'] = array('#type' => 'hidden', '#value' => $package->package_id);
$form['products'] = array();
foreach ($products as $product) {
if ($product->qty > 0) {
$product_row = array();
$product_row['checked'] = array('#type' => 'checkbox', '#default_value' => isset($package->products[$product->order_product_id]));
$product_row['model'] = array('#type' => 'markup', '#value' => check_plain($product->model));
$product_row['name'] = array('#type' => 'markup', '#value' => filter_xss_admin($product->title));
$product_row['qty'] = array('#type' => 'select',
'#options' => drupal_map_assoc(uc_range(1, $product->qty)),
'#default_value' => $package->products[$product->order_product_id]->qty,
);
$form['products'][$product->order_product_id] = $product_row;
}
}
$form['products']['#theme'] = 'uc_shipping_edit_package_fieldset';
$options = array();
foreach (array_keys($shipping_types_products) as $type) {
$options[$type] = ucwords(str_replace('_', ' ', $type));
}
$form['shipping_type'] = array('#type' => 'select',
'#title' => t('Shipping type'),
'#options' => $options,
'#default_value' => $package->shipping_type,
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Save'),
);
return $form;
}
/**
* Display a formatted shipping type fieldset.
*
* @ingroup themeable
*/
function theme_uc_shipping_edit_package_fieldset($fieldset) {
$output = '';
$header = array(theme('table_select_header_cell'), t('SKU'), t('Title'), t('Qty'));
$rows = array();
foreach (element_children($fieldset) as $op_id) {
$row = array();
$row[] = drupal_render($fieldset[$op_id]['checked']);
$row[] = drupal_render($fieldset[$op_id]['model']);
$row[] = drupal_render($fieldset[$op_id]['name']);
$row[] = drupal_render($fieldset[$op_id]['qty']);
$rows[] = $row;
}
$output .= theme('table', $header, $rows);
$output .= drupal_render($fieldset);
return $output;
}
/**
* Submit handler for uc_shipping_package_edit().
*/
function uc_shipping_package_edit_submit($form, &$form_state) {
$package = uc_shipping_package_load($form_state['values']['package_id']);
foreach ($form_state['values']['products'] as $id => $product) {
if ($product['checked']) {
$package->products[$id] = (object)$product;
}
else {
unset($package->products[$id]);
}
}
$package->shipping_type = $form_state['values']['shipping_type'];
uc_shipping_package_save($package);
$form_state['redirect'] = 'admin/store/orders/'. $package->order_id .'/packages';
}
/**
* Confirm cancellation of a package's shipment.
*
* @see uc_shipping_package_cancel_confirm_submit()
*/
function uc_shipping_package_cancel_confirm($form_state, $order, $package) {
$form = array();
$form['order_id'] = array('#type' => 'value', '#value' => $order->order_id);
$form['package_id'] = array('#type' => 'value', '#value' => $package->package_id);
$output = confirm_form($form, t('Are you sure you want to cancel the shipment of this package?'), 'admin/store/orders/'. $order->order_id .'/packages',
t('It will be available for reshipment.'), t('Cancel shipment'), t('Nevermind'));
return $output;
}
/**
* @see uc_shipping_package_cancel_confirm()
*/
function uc_shipping_package_cancel_confirm_submit($form, &$form_state) {
$package = uc_shipping_package_load($form_state['values']['package_id']);
$shipment = uc_shipping_shipment_load($package->sid);
$methods = module_invoke_all('shipping_method');
if (function_exists($methods[$shipment->shipping_method]['cancel'])) {
$result = call_user_func($methods[$shipment->shipping_method]['cancel'], $shipment->tracking_number, array($package->tracking_number));
if ($result) {
db_query("UPDATE {uc_packages} SET sid = NULL, label_image = NULL, tracking_number = NULL WHERE package_id = %d", $package->package_id);
unset($shipment->packages[$package->package_id]);
if (!count($shipment->packages)) {
uc_shipping_shipment_delete($shipment->sid);
}
}
}
$form_state['redirect'] = 'admin/store/orders/'. $form_state['values']['order_id'] .'/packages';
}
/**
* Decide to unpackage products.
*
* @ingroup forms
* @see uc_shipping_package_delete_confirm_submit()
*/
function uc_shipping_package_delete_confirm($form_state, $order, $package) {
$form = array();
$form['order_id'] = array('#type' => 'value', '#value' => $order->order_id);
$form['package_id'] = array('#type' => 'value', '#value' => $package->package_id);
$output = confirm_form($form, t('Are you sure you want to delete this package?'), 'admin/store/orders/'. $order->order_id .'/packages',
t('The products it contains will be available for repackaging.'), t('Delete'), t('Cancel'));
return $output;
}
/**
* Submit handler for uc_shipping_package_delete_confirm().
*/
function uc_shipping_package_delete_confirm_submit($form, &$form_state) {
uc_shipping_package_delete($form_state['values']['package_id']);
$form_state['redirect'] = 'admin/store/orders/'. $form_state['values']['order_id'] .'/packages';
}
/**
* Display a list of shipments for an order.
*
* @param $order
* The order object.
*/
function uc_shipping_order_shipments($order) {
$result = db_query("SELECT * FROM {uc_shipments} WHERE order_id = %d", $order->order_id);
$header = array(t('Shipment ID'), t('Name'), t('Company'), t('Destination'), t('Ship date'), t('Estimated delivery'), t('Tracking number'), array('data' => t('Actions'), 'colspan' => 5));
$rows = array();
while ($shipment = db_fetch_object($result)) {
$row = array();
$row[] = $shipment->sid;
$row[] = check_plain($shipment->d_first_name) .' '. check_plain($shipment->d_last_name);
$row[] = check_plain($shipment->d_company);
$row[] = check_plain($shipment->d_city) .', '. uc_get_zone_code($shipment->d_zone) .' '. check_plain($shipment->d_postal_code);
$row[] = format_date($shipment->ship_date, 'custom', variable_get('uc_date_format_default', 'm/d/Y'));
$row[] = format_date($shipment->expected_delivery, 'custom', variable_get('uc_date_format_default', 'm/d/Y'));
$row[] = is_null($shipment->tracking_number) ? t('n/a') : check_plain($shipment->tracking_number);
$row[] = l(t('view'), 'admin/store/orders/'. $order->order_id .'/shipments/'. $shipment->sid .'/view');
$row[] = l(t('edit'), 'admin/store/orders/'. $order->order_id .'/shipments/'. $shipment->sid .'/edit');
$row[] = l(t('print'), 'admin/store/orders/'. $order->order_id .'/shipments/'. $shipment->sid .'/print');
$row[] = l(t('packing slip'), 'admin/store/orders/'. $order->order_id .'/shipments/'. $shipment->sid .'/packing_slip');
$row[] = l(t('delete'), 'admin/store/orders/'. $order->order_id .'/shipments/'. $shipment->sid .'/delete');
$rows[] = $row;
}
if (empty($rows)) {
$rows[] = array(array('data' => t('No shipments have been made for this order.'), 'colspan' => 12));
}
$output = theme('table', $header, $rows);
$packages = db_result(db_query("SELECT COUNT(*) FROM {uc_packages} WHERE order_id = %d AND sid IS NULL", $order->order_id));
if ($packages) {
$output .= l(t('Make a new shipment'), 'admin/store/orders/'. $order->order_id .'/shipments/new');
}
else {
$result = db_query("SELECT op.order_product_id, CASE WHEN COUNT(pp.qty) = 0 THEN 0 ELSE SUM(op.qty) / COUNT(pp.qty) END AS total, SUM(pp.qty) AS packaged FROM {uc_order_products} AS op LEFT JOIN {uc_packaged_products} AS pp ON op.order_product_id = pp.order_product_id WHERE op.order_id = %d AND op.data LIKE '%%%s%%' GROUP BY op.order_product_id HAVING SUM(pp.qty) IS NULL OR CASE WHEN COUNT(pp.qty) = 0 THEN 0 ELSE SUM(op.qty) / COUNT(pp.qty) END > SUM(pp.qty)", $order->order_id, 's:9:"shippable";s:1:"1";');
if (db_fetch_object($result)) {
$output .= l(t('Put products into packages to make shipments.'), 'admin/store/orders/'. $order->order_id .'/packages/new');
}
}
return $output;
}
/**
* Set up a new shipment with the chosen packages.
*
* @ingroup forms
* @see theme_uc_shipping_new_shipment()
* @see uc_shipping_new_shipment_submit()
*/
function uc_shipping_new_shipment($form_state, $order) {
$breadcrumb = drupal_get_breadcrumb();
$breadcrumb[] = l(t('Administer'), 'admin');
$breadcrumb[] = l(t('Store administration'), 'admin/store');
$breadcrumb[] = l(t('Orders'), 'admin/store/orders');
$breadcrumb[] = l(t('Order @id', array('@id' => $order->order_id)), 'admin/store/orders/'. $order->order_id);
$breadcrumb[] = l(t('Shipments'), 'admin/store/orders/'. $order->order_id .'/shipments');
drupal_set_breadcrumb($breadcrumb);
$checked_pkgs = (array) $_REQUEST['pkgs'];
$form = array('#tree' => TRUE);
$form['order_id'] = array('#type' => 'hidden', '#value' => $order->order_id);
$packages_by_type = array();
$result = db_query("SELECT * FROM {uc_packages} WHERE order_id = %d AND sid IS NULL", $order->order_id);
while ($package = db_fetch_object($result)) {
$products = array();
$weight = 0;
$result2 = db_query("SELECT pp.order_product_id, pp.qty, pp.qty * op.weight AS weight, op.title, op.model FROM {uc_packaged_products} AS pp LEFT JOIN {uc_order_products} AS op ON op.order_product_id = pp.order_product_id WHERE pp.package_id = %d", $package->package_id);
while ($product = db_fetch_object($result2)) {
$weight += $product->weight;
$products[$product->order_product_id] = $product;
}
$package->weight = $weight;
$package->products = $products;
$packages_by_type[$package->shipping_type][$package->package_id] = $package;
}
$option_methods = array();
$shipping_types = uc_quote_get_shipping_types();
$shipping_methods = module_invoke_all('shipping_method');
$shipping_methods_by_type = array();
foreach ($shipping_methods as $method) {
if (isset($method['ship'])) {
$shipping_methods_by_type[$method['ship']['type']][] = $method;
}
}
foreach ($packages_by_type as $shipping_type => $packages) {
$form[$shipping_type] = array('#type' => 'fieldset',
'#title' => $shipping_types[$shipping_type]['title'],
);
$form[$shipping_type]['packages'] = array();
foreach ($packages as $package) {
$pkgs_exist = TRUE;
$package_row = array();
$package_row['checked'] = array('#type' => 'checkbox', '#default_value' => (in_array($package->package_id, $checked_pkgs) ? 1 : 0));
$package_row['package_id'] = array('#value' => $package->package_id);
$product_list = array();
foreach ($package->products as $product) {
$product_list[] = $product->qty .' x '. check_plain($product->model);
}
$package_row['products'] = array('#value' => '- '. implode('
- ', $product_list) .'
');
$package_row['weight'] = array('#value' => $package->weight);
$form[$shipping_type]['packages'][$package->package_id] = $package_row;
}
if (is_array($shipping_methods_by_type[$shipping_type])) {
foreach ($shipping_methods_by_type[$shipping_type] as $method) {
$option_methods += array($method['id'] => $method['title']);
}
}
}
if ($pkgs_exist) {
$option_methods = array('all' => t('Ship Manually')) + $option_methods;
$form['method'] = array('#type' => 'select',
'#title' => t('Shipping method'),
'#options' => $option_methods,
'#default_value' => 'all',
);
$form['ship'] = array('#type' => 'submit',
'#value' => t('Ship packages'),
);
}
//drupal_set_message(''. print_r($form, TRUE) .'
');
return $form;
}
/**
* Format and display the new shipment form.
*
* @ingroup themeable
*/
function theme_uc_shipping_new_shipment($form) {
$output = '';
$header = array(theme('table_select_header_cell'), t('Package'), t('Products'), t('Weight'));
foreach (element_children($form) as $shipping_type) {
$rows = array();
foreach (element_children($form[$shipping_type]['packages']) as $package_id) {
$row = array();
$row[] = drupal_render($form[$shipping_type]['packages'][$package_id]['checked']);
$row[] = drupal_render($form[$shipping_type]['packages'][$package_id]['package_id']);
$row[] = drupal_render($form[$shipping_type]['packages'][$package_id]['products']);
$row[] = drupal_render($form[$shipping_type]['packages'][$package_id]['weight']);
$rows[] = $row;
}
if (count($rows)) {
$form[$shipping_type]['packages']['table'] = array('#value' => theme('table', $header, $rows));
}
//$output .= drupal_render($form[$shipping_type]['methods']);
}
$output .= drupal_render($form);
return $output;
}
/**
* Submit handler for uc_shipping_new_shipment().
*
* Send package information to the chosen method.
*
* @see uc_shipping_make_shipment()
*/
function uc_shipping_new_shipment_submit($form, &$form_state) {
$packages = array();
foreach ($form_state['values'] as $shipping_type) {
if (is_array($shipping_type['packages'])) {
foreach ($shipping_type['packages'] as $id => $input) {
if ($input['checked']) {
$packages[] = $id;
}
}
}
}
$form_state['redirect'] = 'admin/store/orders/'. $form_state['values']['order_id'] .'/ship/'. $form_state['values']['method'] .'/'. implode('/', $packages);
}
/**
* Display shipment details.
*/
function uc_shipping_shipment_view($order, $shipment) {
$breadcrumb = drupal_get_breadcrumb();
$breadcrumb[] = l(t('Administer'), 'admin');
$breadcrumb[] = l(t('Store administration'), 'admin/store');
$breadcrumb[] = l(t('Orders'), 'admin/store/orders');
$breadcrumb[] = l(t('Order @id', array('@id' => $order->order_id)), 'admin/store/orders/'. $order->order_id);
$breadcrumb[] = l(t('Shipments'), 'admin/store/orders/'. $order->order_id .'/shipments');
drupal_set_breadcrumb($breadcrumb);
$output = '';
$origin = uc_order_address($shipment, 'o');
$destination = uc_order_address($shipment, 'd');
$output .= ''. t('Pickup Address:') .'
'. $origin .'
';
$output .= ''. t('Delivery Address:') .'
'. $destination .'
';
$output .= ''. t('Schedule:') .'
';
$rows = array();
$rows[] = array(t('Ship date:'), format_date($shipment->ship_date, 'custom', 'D, '. variable_get('uc_date_format_default', 'm/d/Y')));
$rows[] = array(t('Expected delivery:'), format_date($shipment->expected_delivery, 'custom', 'D, '. variable_get('uc_date_format_default', 'm/d/Y')));
$output .= theme('table', array(), $rows, array('style' => 'width: auto'));
$output .= '
';
$output .= ''. t('Shipment Details:') .'
';
$rows = array();
$rows[] = array(t('Carrier:'), check_plain($shipment->carrier));
if ($shipment->transaction_id) {
$rows[] = array(t('Transaction ID:'), check_plain($shipment->transaction_id));
}
if ($shipment->tracking_number) {
$rows[] = array(t('Tracking Number:'), check_plain($shipment->tracking_number));
}
$methods = module_invoke_all('shipping_method');
$method = $methods[$shipment->shipping_method];
if (isset($method['quote']['accessorials'][$shipment->accessorials])) {
$rows[] = array(t('Services:'), $method['quote']['accessorials'][$shipment->accessorials]);
}
else {
$rows[] = array(t('Services:'), $shipment->accessorials);
}
$context = array(
'revision' => 'themed',
'type' => 'amount',
);
$rows[] = array(t('Cost:'), uc_price($shipment->cost, $context, array('label' => FALSE)));
$output .= theme('table', array(), $rows, array('style' => 'width:auto'));
$output .= '
';
foreach ($shipment->packages as $package) {
$output .= uc_shipping_package_view($package);
}
return $output;
}
/**
* Create or edit a shipment.
*
* @ingroup forms
* @see theme_uc_shipping_package_dimensions()
* @see theme_uc_shipping_address()
* @see uc_shipping_shipment_edit_submit()
*/
function uc_shipping_shipment_edit($form_state, $order, $shipment) {
drupal_add_css(drupal_get_path('module', 'uc_shipping') .'/uc_shipping.css');
$form = array();
$form['order_id'] = array('#type' => 'value', '#value' => $order->order_id);
if (isset($shipment->sid)) {
$form['sid'] = array('#type' => 'value', '#value' => $shipment->sid);
$methods = module_invoke_all('shipping_method');
$method = $methods[$shipment->shipping_method];
}
$addresses = array();
$form['packages'] = array(
'#tree' => TRUE,
'#weight' => 1,
);
if ($shipment->o_street1) {
$o_address = new stdClass();
foreach ($shipment as $field => $value) {
if (substr($field, 0, 2) == 'o_') {
$o_address->{substr($field, 2)} = $value;
}
}
$addresses[] = $o_address;
}
foreach ($shipment->packages as $id => $package) {
foreach ($package->addresses as $address) {
if (!in_array($address, $addresses)) {
$addresses[] = $address;
}
}
$declared_value = 0;
$product_list = array();
foreach ($package->products as $product) {
$product_list[] = $product->qty .' x '. check_plain($product->model);
$declared_value += $product->qty * $product->price;
}
$form['packages'][$id] = array('#type' => 'fieldset',
'#title' => t('Package @id', array('@id' => $id)),
'#collapsible' => TRUE,
);
$form['packages'][$id]['products'] = array('#value' => theme('item_list', $product_list));
$form['packages'][$id]['pkg_type'] = array('#type' => 'textfield',
'#title' => t('Package type'),
'#default_value' => $package->pkg_type,
'#description' => t('E.g.: Box, pallet, tube, treasure chest, cocoon, etc.'),
);
if (isset($method) && is_array($method['ship']['pkg_types'])) {
$form['packages'][$id]['pkg_type']['#type'] = 'select';
$form['packages'][$id]['pkg_type']['#options'] = $method['ship']['pkg_types'];
$form['packages'][$id]['pkg_type']['#description'] = '';
}
$form['packages'][$id]['dimensions'] = array('#type' => 'fieldset',
'#title' => t('Dimensions'),
'#description' => t('Physical dimensions of the packaged product.'),
'#theme' => 'uc_shipping_package_dimensions',
);
$form['packages'][$id]['dimensions']['units'] = array('#type' => 'select',
'#title' => t('Units of measurement'),
'#options' => array(
'in' => t('Inches'),
'ft' => t('Feet'),
'cm' => t('Centimeters'),
'mm' => t('Millimeters'),
),
'#default_value' => $package->length_units ? $package->length_units : variable_get('uc_length_unit', 'in'),
);
$form['packages'][$id]['dimensions']['length'] = array('#type' => 'textfield',
'#title' => t('Length'),
'#default_value' => $package->length,
'#size' => 8,
);
$form['packages'][$id]['dimensions']['width'] = array('#type' => 'textfield',
'#title' => t('Width'),
'#default_value' => $package->width,
'#size' => 8,
);
$form['packages'][$id]['dimensions']['height'] = array('#type' => 'textfield',
'#title' => t('Height'),
'#default_value' => $package->height,
'#size' => 8,
);
$form['packages'][$id]['declared_value'] = array('#type' => 'textfield',
'#title' => t('Declared value'),
'#field_prefix' => variable_get('uc_sign_after_amount', FALSE) ? '' : variable_get('uc_currency_sign', '$'),
'#field_suffix' => variable_get('uc_sign_after_amount', FALSE) ? variable_get('uc_currency_sign', '$') : '',
'#default_value' => isset($package->value) ? $package->value : $declared_value,
);
$form['packages'][$id]['tracking_number'] = array('#type' => 'textfield',
'#title' => t('Tracking number'),
'#default_value' => $package->tracking_number,
);
}
$form = array_merge($form, uc_shipping_address_form($form_state, $addresses, $order));
$form['shipment'] = array('#type' => 'fieldset',
'#title' => t('Shipment data'),
'#collapsible' => TRUE,
'#weight' => 0,
);
$form['shipment']['shipping_method'] = array('#type' => 'hidden',
'#value' => isset($shipment->shipping_method) ? $shipment->shipping_method : 'manual',
);
$form['shipment']['carrier'] = array('#type' => 'textfield',
'#title' => t('Carrier'),
'#default_value' => $shipment->carrier,
);
$form['shipment']['accessorials'] = array('#type' => 'textfield',
'#title' => t('Shipment options'),
'#default_value' => $shipment->accessorials,
'#description' => t('Short notes about the shipment, e.g. residential, overnight, etc.'),
);
$form['shipment']['transaction_id'] = array('#type' => 'textfield',
'#title' => t('Transaction ID'),
'#default_value' => $shipment->transaction_id,
);
$form['shipment']['tracking_number'] = array('#type' => 'textfield',
'#title' => t('Tracking number'),
'#default_value' => $shipment->tracking_number,
);
if (isset($shipment->ship_date)) {
$ship_date = getdate($shipment->ship_date);
}
else {
$ship_date = getdate();
}
if (isset($shipment->expected_delivery)) {
$exp_delivery = getdate($shipment->expected_delivery);
}
else {
$exp_delivery = getdate();
}
$form['shipment']['ship_date'] = array('#type' => 'date',
'#title' => t('Ship date'),
'#default_value' => array('year' => $ship_date['year'], 'month' => $ship_date['mon'], 'day' => $ship_date['mday']),
);
$form['shipment']['expected_delivery'] = array('#type' => 'date',
'#title' => t('Expected delivery'),
'#default_value' => array('year' => $exp_delivery['year'], 'month' => $exp_delivery['mon'], 'day' => $exp_delivery['mday']),
);
$form['shipment']['cost'] = array('#type' => 'textfield',
'#title' => t('Shipping cost'),
'#default_value' => $shipment->cost,
'#field_prefix' => variable_get('uc_sign_after_amount', FALSE) ? '' : variable_get('uc_currency_sign', '$'),
'#field_suffix' => variable_get('uc_sign_after_amount', FALSE) ? variable_get('uc_currency_sign', '$') : '',
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Save shipment'),
'#weight' => 10
);
return $form;
}
/**
* Ensure the package dimensions are positive numbers.
*
* @see uc_shipping_shipment_edit()
*/
function uc_shipping_shipment_edit_validate($form, &$form_state) {
foreach ($form_state['values']['packages'] as $key => $package) {
foreach (array('length', 'width', 'height') as $property) {
if (!empty($package['dimensions'][$property]) && (!is_numeric($package['dimensions'][$property]) || $package['dimensions'][$property] < 0)) {
form_set_error('packages]['. $key .'][dimensions]['. $property, t('@property must be a positive number. No commas and only one decimal point.', array('@property' => ucfirst($property))));
}
}
}
}
/**
* Submit handler for uc_shipping_shipment_edit().
*/
function uc_shipping_shipment_edit_submit($form, &$form_state) {
$shipment = new stdClass();
$shipment->order_id = $form_state['values']['order_id'];
if (isset($form_state['values']['sid'])) {
$shipment->sid = $form_state['values']['sid'];
}
$shipment->origin = new stdClass();
$shipment->destination = new stdClass();
foreach ($form_state['values'] as $key => $value) {
if (substr($key, 0, 7) == 'pickup_') {
$field = substr($key, 7);
$shipment->origin->$field = $value;
}
elseif (substr($key, 0, 9) == 'delivery_') {
$field = substr($key, 9);
$shipment->destination->$field = $value;
}
}
$shipment->packages = array();
foreach ($form_state['values']['packages'] as $id => $pkg_form) {
$package = uc_shipping_package_load($id);
$package->pkg_type = $pkg_form['pkg_type'];
$package->value = $pkg_form['declared_value'];
$package->length = $pkg_form['dimensions']['length'];
$package->width = $pkg_form['dimensions']['width'];
$package->height = $pkg_form['dimensions']['height'];
$package->length_units = $pkg_form['dimensions']['units'];
$package->tracking_number = $pkg_form['tracking_number'];
$package->qty = 1;
$shipment->packages[$id] = $package;
}
$shipment->shipping_method = $form_state['values']['shipping_method'];
$shipment->accessorials = $form_state['values']['accessorials'];
$shipment->carrier = $form_state['values']['carrier'];
$shipment->transaction_id = $form_state['values']['transaction_id'];
$shipment->tracking_number = $form_state['values']['tracking_number'];
$shipment->ship_date = gmmktime(12, 0, 0, $form_state['values']['ship_date']['month'], $form_state['values']['ship_date']['day'], $form_state['values']['ship_date']['year']);
$shipment->expected_delivery = gmmktime(12, 0, 0, $form_state['values']['expected_delivery']['month'], $form_state['values']['expected_delivery']['day'], $form_state['values']['expected_delivery']['year']);
$shipment->cost = $form_state['values']['cost'];
uc_shipping_shipment_save($shipment);
$form_state['redirect'] = 'admin/store/orders/'. $form_state['values']['order_id'] .'/shipments';
}
/**
* Display the packing slip and shipping labels for printing.
*/
function theme_uc_shipping_shipment_print($order, $shipment, $labels = TRUE) {
$language = $GLOBALS['language'];
$output = <<
Packing slip and labels
EOHTML;
$output .= theme('uc_packing_slip', $order, $shipment);
if ($labels) {
foreach ($shipment->packages as $id => $package) {
if ($package->label_image && ($path = file_create_path($package->label_image)) && file_exists($path)) {
// TODO: Find a way to store these magic numbers specifically for UPS.
list($width, $height) = array(672, 392);
$output .= '
' . "\n";;
$output .= theme('image', file_create_url($package->label_image), '', '', array('width' => $width, 'height' => $height), FALSE) ."\n";
}
}
}
//$output .= dpr($order, TRUE, 'order');
//$output .= dpr($shipment, TRUE, 'shipment');
$output .= '';
print $output;
exit();
}
/**
* Decide to release packages to be put on another shipment.
*
* @see uc_shipping_shipment_delete_confirm_submit()
*/
function uc_shipping_shipment_delete_confirm($form_state, $order, $shipment) {
$form = array();
$form['order_id'] = array('#type' => 'value', '#value' => $order->order_id);
$form['sid'] = array('#type' => 'value', '#value' => $shipment->sid);
$output = confirm_form($form, t('Are you sure you want to delete this shipment?'), 'admin/store/orders/'. $order->order_id .'/shipments',
t('The shipment will be canceled and the packages it contains will be available for reshipment.'), t('Delete'), t('Cancel'));
return $output;
}
/**
* Submit handler for uc_shipping_shipment_delete_confirm().
*/
function uc_shipping_shipment_delete_confirm_submit($form, &$form_state) {
$shipment = uc_shipping_shipment_load($form_state['values']['sid']);
$methods = module_invoke_all('shipping_method');
if ($shipment->tracking_number && function_exists($methods[$shipment->shipping_method]['cancel'])) {
$result = call_user_func($methods[$shipment->shipping_method]['cancel'], $shipment->tracking_number);
if ($result) {
uc_shipping_shipment_delete($form_state['values']['sid']);
}
else {
drupal_set_message(t('The shipment %tracking could not be canceled with %carrier. To delete it anyway, remove the tracking number and try again.', array('%tracking' => $shipment->tracking_number, '%carrier' => $shipment->carrier)));
}
}
else {
uc_shipping_shipment_delete($form_state['values']['sid']);
}
$form_state['redirect'] = 'admin/store/orders/'. $form_state['values']['order_id'] .'/shipments';
}
/**
* Default method to send packages on a shipment.
*/
function uc_shipping_make_shipment() {
$args = func_get_args();
//print_r($args, TRUE));
if (count($args) > 2) {
$order = array_shift($args);
$method_id = array_shift($args);
$package_ids = $args;
$methods = module_invoke_all('shipping_method');
$method = $methods[$method_id];
if (isset($method)) {
$inc_file = drupal_get_path('module', $method['module']) .'/'. $method['ship']['file'];
if (is_file($inc_file)) {
require_once($inc_file);
}
return drupal_get_form($method['ship']['callback'], $order, $package_ids);
}
else {
$shipment = new stdClass();
$shipment->order_id = $order->order_id;
$shipment->packages = array();
foreach ($package_ids as $id) {
$package = uc_shipping_package_load($id);
$shipment->packages[$id] = $package;
}
return drupal_get_form('uc_shipping_shipment_edit', $order, $shipment);
}
}
else {
drupal_set_message(t('There is no sense in making a shipment with no packages on it, right?'));
drupal_goto('admin/store/orders/'. $args[0]->order_id .'/shipments/new');
}
}