X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Finquiry%2Fsales_deliveries_view.php;h=3b318997cf8e43323e29ad1f7c327497f45e944d;hb=c82cbc67f22454e4afd30e53c40043b54a732be3;hp=7bcea70fcc6ff93998bf865fbe1691d2be8db2b5;hpb=5e63c6ace55729bbb5ee3b060035a25a4426eb0a;p=fa-stable.git diff --git a/sales/inquiry/sales_deliveries_view.php b/sales/inquiry/sales_deliveries_view.php index 7bcea70f..3b318997 100644 --- a/sales/inquiry/sales_deliveries_view.php +++ b/sales/inquiry/sales_deliveries_view.php @@ -47,23 +47,24 @@ if (isset($_POST['BatchInvoice'])) { // checking batch integrity $del_count = 0; - foreach($_POST['Sel_'] as $delivery => $branch) { - $checkbox = 'Sel_'.$delivery; - if (check_value($checkbox)) { - if (!$del_count) { - $del_branch = $branch; - } - else { - if ($del_branch != $branch) { - $del_count=0; - break; + if (isset($_POST['Sel_'])) { + foreach($_POST['Sel_'] as $delivery => $branch) { + $checkbox = 'Sel_'.$delivery; + if (check_value($checkbox)) { + if (!$del_count) { + $del_branch = $branch; } - } - $selected[] = $delivery; - $del_count++; - } - } - + else { + if ($del_branch != $branch) { + $del_count=0; + break; + } + } + $selected[] = $delivery; + $del_count++; + } + } + } if (!$del_count) { display_error(_('For batch invoicing you should select at least one delivery. All items must be dispatched to @@ -99,7 +100,7 @@ start_form(false, false, $_SERVER['PHP_SELF'] ."?OutstandingOnly=".$_POST['Outst start_table(TABLESTYLE_NOBORDER); start_row(); ref_cells(_("#:"), 'DeliveryNumber', '',null, '', true); -date_cells(_("from:"), 'DeliveryAfterDate', '', null, -$_SESSION["wa_current_user"]->prefs->transaction_days()); +date_cells(_("from:"), 'DeliveryAfterDate', '', null, -user_transaction_days()); date_cells(_("to:"), 'DeliveryToDate', '', null, 1); locations_list_cells(_("Location:"), 'StockLocation', null, true); @@ -165,7 +166,7 @@ $sql = get_sql_for_sales_deliveries_view(get_post('DeliveryAfterDate'), get_post get_post('SelectStockFromList'), get_post('StockLocation'), get_post('DeliveryNumber'), get_post('OutstandingOnly')); $cols = array( - _("Delivery #") => array('fun'=>'trans_view'), + _("Delivery #") => array('fun'=>'trans_view', 'align'=>'right'), _("Customer"), 'branch_code' => 'skip', _("Branch") => array('ord'=>''),