allocs); unset($_SESSION['alloc']); } if (!isset($_POST['supplier_id'])) $_POST['supplier_id'] = get_global_supplier(); echo "
" . _("Select a Supplier: ") . "  "; supplier_list('supplier_id', $_POST['supplier_id'], true, true); echo "
"; check(_("Show Settled Items:"), 'ShowSettled', null, true); echo "


"; set_global_supplier($_POST['supplier_id']); if (isset($_POST['supplier_id']) && ($_POST['supplier_id'] == reserved_words::get_all())) { unset($_POST['supplier_id']); } $settled = false; if (check_value('ShowSettled')) $settled = true; $supplier_id = null; if (isset($_POST['supplier_id'])) $supplier_id = $_POST['supplier_id']; $trans_items = get_allocatable_from_supp_transactions($supplier_id, $settled); div_start('alloc_tbl'); start_table($table_style); if (!isset($_POST['supplier_id'])) $th = array(_("Transaction Type"), _("#"), _("Reference"), _("Date"), _("Supplier"), _("Currency"), _("Total"), _("Left To Allocate")); else $th = array(_("Transaction Type"), _("#"), _("Reference"), _("Date"), _("Total"), _("Left To Allocate")); table_header($th); $k = 0; //row colour counter $has_settled_items = false; while ($myrow = db_fetch($trans_items)) { if ($myrow["settled"] == 1) { start_row("class='settledbg'"); $has_settled_items = true; } else { alt_table_row_color($k); } label_cell(systypes::name($myrow["type"])); label_cell(get_trans_view_str($myrow["type"], $myrow["trans_no"])); label_cell($myrow["reference"]); label_cell(sql2date($myrow["tran_date"])); if (!isset($_POST['supplier_id'])) { label_cell($myrow["supp_name"]); label_cell($myrow["curr_code"]); } amount_cell(-$myrow["Total"]); amount_cell(-$myrow["Total"]-$myrow["alloc"]); label_cell("" . _("Allocate") . ""); end_row(); } end_table(); if ($has_settled_items) display_note(_("Marked items are settled."), 0, 1, "class='settledfg'"); if (db_num_rows($trans_items) == 0) display_note(_("There are no allocations to be done."), 1, 2); div_end(); end_form(); } //-------------------------------------------------------------------------------- if (get_post('_ShowSettled_update')) { $Ajax->activate('alloc_tbl'); } display_allocatable_transactions(); //-------------------------------------------------------------------------------- end_page(); ?>