X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Finquiry%2Fsales_orders_view.php;h=7fab519162efa4faca7a6275165bf299dba031e0;hb=c4eae7a18f0eb824e6eda7be2ba6fa820e9e58c9;hp=c68d63d757fbef34d9c1a51d23d4de049cd9af6a;hpb=72c7510d29d26a0ede9cc23ad052b0ed156b1aaf;p=fa-stable.git diff --git a/sales/inquiry/sales_orders_view.php b/sales/inquiry/sales_orders_view.php index c68d63d7..7fab5191 100644 --- a/sales/inquiry/sales_orders_view.php +++ b/sales/inquiry/sales_orders_view.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security = 2; $path_to_root="../.."; @@ -76,45 +85,43 @@ function view_link($dummy, $order_no) function prt_link($row) { - return print_document_link($row['order_no'], _("Print"), true, 30); + return print_document_link($row['order_no'], _("Print"), true, 30, ICON_PRINT); } function edit_link($row) { return pager_link( _("Edit"), - "/sales/sales_order_entry.php?" . SID . "ModifyOrderNumber=" . $row['order_no']); + "/sales/sales_order_entry.php?ModifyOrderNumber=" . $row['order_no'], ICON_EDIT); } function dispatch_link($row) { return pager_link( _("Dispatch"), - "/sales/customer_delivery.php?" . SID . "OrderNumber=" .$row['order_no']); + "/sales/customer_delivery.php?OrderNumber=" .$row['order_no'], ICON_DOC); } function invoice_link($row) { return pager_link( _("Invoice"), - "/sales/sales_order_entry.php?" . SID . "NewInvoice=" .$row["order_no"]); + "/sales/sales_order_entry.php?NewInvoice=" .$row["order_no"], ICON_DOC); } function delivery_link($row) { return pager_link( _("Delivery"), - "/sales/sales_order_entry.php?" . SID . "NewDelivery=" .$row['order_no']); + "/sales/sales_order_entry.php?NewDelivery=" .$row['order_no'], ICON_DOC); } function tmpl_checkbox($row) { $name = "chgtpl" .$row['order_no']; - $value = $row['type'] ? ' checked' : ''; - - return "" -// add also old checkbox name+value for check after 'Update' - ."\n"; + $value = $row['type'] ? 1:0; + +// save also in hidden field for testing during 'Update' + + return checkbox(null, $name, $value, true, + _('Set this order as a template for direct deliveries/invoices')) + . hidden('last['.$row['order_no'].']', $value, false); } //--------------------------------------------------------------------------------------------- // Update db record if respective checkbox value has changed. @@ -133,7 +140,7 @@ $id = find_submit('_chgtpl'); if ($id != -1) change_tpl_flag($id); -if (isset($_POST['Update'])) { +if (isset($_POST['Update']) && isset($_POST['last'])) { foreach($_POST['last'] as $id => $value) if ($value != check_value('chgtpl'.$id)) change_tpl_flag($id); @@ -163,7 +170,7 @@ if (get_post('_OrderNumber_changed')) // enable/disable selection controls $Ajax->activate('orders_tbl'); } -start_form(false, false, $_SERVER['PHP_SELF'] .SID); +start_form(); start_table("class='tablestyle_noborder'"); start_row(); @@ -177,7 +184,7 @@ locations_list_cells(_("Location:"), 'StockLocation', null, true); stock_items_list_cells(_("Item:"), 'SelectStockFromList', null, true); -submit_cells('SearchOrders', _("Search"),'',_('Select documents'), true); +submit_cells('SearchOrders', _("Search"),'',_('Select documents'), 'default'); hidden('order_view_mode', $_POST['order_view_mode']); @@ -185,7 +192,6 @@ end_row(); end_table(1); end_form(); - //--------------------------------------------------------------------------------------------- // Orders inquiry table // @@ -289,17 +295,16 @@ if ($_POST['order_view_mode'] == 'OutstandingOnly') { $table =& new_db_pager('orders_tbl', $sql, $cols); $table->set_marker('check_overdue', _("Marked items are overdue.")); - -if (get_post('SearchOrders')) -{ +if (get_post('SearchOrders')) { $table->set_sql($sql); $table->set_columns($cols); - $Ajax->activate('orders_tbl'); -} - start_form(); - display_db_pager($table); +} +$table->width = "80%"; +start_form(); - submit_center('Update', _("Update"), true, '', null); - end_form(); +display_db_pager($table); +submit_center('Update', _("Update"), true, '', null); + +end_form(); end_page(); ?> \ No newline at end of file