X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fvoid_transaction.php;h=951a7f87e03bda13c31a341ce4d6460590084de9;hb=57a9113ce4e8c0d3ec4bb2a0cb4d467c788c003e;hp=371e3e5aacbef94df515c7d0abe8429e6c61b2be;hpb=6183e9450dcd7e4c747889c10903f6ff1b0add33;p=fa-stable.git diff --git a/admin/void_transaction.php b/admin/void_transaction.php index 371e3e5a..951a7f87 100644 --- a/admin/void_transaction.php +++ b/admin/void_transaction.php @@ -1,32 +1,190 @@ . +***********************************************************************/ +$page_security = 'SA_VOIDTRANSACTION'; +$path_to_root = ".."; +include($path_to_root . "/includes/db_pager.inc"); include_once($path_to_root . "/includes/session.inc"); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/includes/data_checks.inc"); +include_once($path_to_root . "/admin/db/transactions_db.inc"); include_once($path_to_root . "/admin/db/voiding_db.inc"); $js = ""; if ($use_date_picker) $js .= get_js_date_picker(); -page(_("Void a Transaction"), false, false, "", $js); +if ($use_popup_windows) + $js .= get_js_open_window(800, 500); + +page(_($help_context = "Void a Transaction"), false, false, "", $js); +simple_page_mode(true); //---------------------------------------------------------------------------------------- +function exist_transaction($type, $type_no) +{ + $void_entry = get_voided_entry($type, $type_no); + + if ($void_entry != null) + return false; + + switch ($type) + { + case ST_JOURNAL : // it's a journal entry + if (!exists_gl_trans($type, $type_no)) + return false; + break; + + case ST_BANKPAYMENT : // it's a payment + case ST_BANKDEPOSIT : // it's a deposit + case ST_BANKTRANSFER : // it's a transfer + if (!exists_bank_trans($type, $type_no)) + return false; + break; + + case ST_SALESINVOICE : // it's a customer invoice + case ST_CUSTCREDIT : // it's a customer credit note + case ST_CUSTPAYMENT : // it's a customer payment + case ST_CUSTDELIVERY : // it's a customer dispatch + if (!exists_customer_trans($type, $type_no)) + return false; + break; + + case ST_LOCTRANSFER : // it's a stock transfer + if (get_stock_transfer_items($type_no) == null) + return false; + break; + + case ST_INVADJUST : // it's a stock adjustment + if (get_stock_adjustment_items($type_no) == null) + return false; + break; + + case ST_PURCHORDER : // it's a PO + case ST_SUPPRECEIVE : // it's a GRN + return false; + case ST_SUPPINVOICE : // it's a suppler invoice + case ST_SUPPCREDIT : // it's a supplier credit note + case ST_SUPPAYMENT : // it's a supplier payment + if (!exists_supp_trans($type, $type_no)) + return false; + break; + + case ST_WORKORDER : // it's a work order + if (!get_work_order($type_no, true)) + return false; + break; + + case ST_MANUISSUE : // it's a work order issue + if (!exists_work_order_issue($type_no)) + return false; + break; + + case ST_MANURECEIVE : // it's a work order production + if (!exists_work_order_produce($type_no)) + return false; + break; + + case ST_SALESORDER: // it's a sales order + case ST_SALESQUOTE: // it's a sales quotation + return false; + case ST_COSTUPDATE : // it's a stock cost update + return false; + break; + } + + return true; +} + +function view_link($trans) +{ + if (!isset($trans['type'])) + $trans['type'] = $_POST['filterType']; + return get_trans_view_str($trans["type"], $trans["trans_no"]); +} + +function select_link($row) +{ + if (!isset($row['type'])) + $row['type'] = $_POST['filterType']; + return button('Edit'.$row["trans_no"], _("Select"), _("Select"), ICON_EDIT); +} + +function gl_view($row) +{ + if (!isset($row['type'])) + $row['type'] = $_POST['filterType']; + return get_gl_view_str($row["type"], $row["trans_no"]); +} + +function date_view($row) +{ + return $row['trans_date']; +} + +function ref_view($row) +{ + return $row['ref']; +} function voiding_controls() { - global $table_style2; - - start_form(false, true); + global $selected_id; + + $not_implemented = array(ST_PURCHORDER, ST_SUPPRECEIVE, ST_SALESORDER, + ST_SALESQUOTE, ST_COSTUPDATE); + + start_form(); + + start_table(TABLESTYLE_NOBORDER); + start_row(); - start_table($table_style2); + systypes_list_cells(_("Transaction Type:"), 'filterType', null, true, $not_implemented); + if (list_updated('filterType')) + $selected_id = -1; + + end_row(); + end_table(1); + + $trans_ref = false; + $sql = get_sql_for_view_transactions($_POST['filterType'], null, null, $trans_ref); + if ($sql == "") + return; - systypes_list_row(_("Transaction Type:"), "filterType", null, true); + $cols = array( + _("#") => array('insert'=>true, 'fun'=>'view_link'), + _("Reference") => array('fun'=>'ref_view'), + _("Date") => array('type'=>'date', 'fun'=>'date_view'), + _("GL") => array('insert'=>true, 'fun'=>'gl_view'), + _("Select") => array('insert'=>true, 'fun'=>'select_link') + ); - text_row(_("Transaction #:"), 'trans_no', null, 12, 12); + $table =& new_db_pager('transactions', $sql, $cols); + $table->width = "40%"; + display_db_pager($table); + + start_table(TABLESTYLE2); + + if ($selected_id != -1) + { + hidden('trans_no', $selected_id); + hidden('selected_id', $selected_id); + } + else + { + hidden('trans_no', ''); + $_POST['memo_'] = ''; + } + label_row(_("Transaction #:"), ($selected_id==-1?'':$selected_id)); date_row(_("Voiding Date:"), 'date_'); @@ -35,13 +193,24 @@ function voiding_controls() end_table(1); if (!isset($_POST['ProcessVoiding'])) - submit_center('ProcessVoiding', _("Void Transaction")); + submit_center('ProcessVoiding', _("Void Transaction"), true, '', 'default'); else { - - display_note(_("Are you sure you want to void this transaction ? This action cannot be undone."), 0, 1); - submit_center_first('ConfirmVoiding', _("Proceed")); - submit_center_last('CancelVoiding', _("Cancel")); + if (!exist_transaction($_POST['filterType'],$_POST['trans_no'])) + { + display_error(_("The entered transaction does not exist or cannot be voided.")); + unset($_POST['trans_no']); + unset($_POST['memo_']); + unset($_POST['date_']); + submit_center('ProcessVoiding', _("Void Transaction"), true, '', 'default'); + } + else + { + display_warning(_("Are you sure you want to void this transaction ? This action cannot be undone."), 0, 1); + br(); + submit_center_first('ConfirmVoiding', _("Proceed"), '', true); + submit_center_last('CancelVoiding', _("Cancel"), '', 'cancel'); + } } end_form(); @@ -51,6 +220,12 @@ function voiding_controls() function check_valid_entries() { + if (is_closed_trans($_POST['filterType'],$_POST['trans_no'])) + { + display_error(_("The selected transaction was closed for edition and cannot be voided.")); + set_focus('trans_no'); + return; + } if (!is_date($_POST['date_'])) { display_error(_("The entered date is invalid.")); @@ -80,7 +255,6 @@ function handle_void_transaction() { if (check_valid_entries()==true) { - $void_entry = get_voided_entry($_POST['filterType'], $_POST['trans_no']); if ($void_entry != null) { @@ -123,11 +297,19 @@ if (isset($_POST['ProcessVoiding'])) { if (!check_valid_entries()) unset($_POST['ProcessVoiding']); + $Ajax->activate('_page_body'); } if (isset($_POST['ConfirmVoiding'])) { handle_void_transaction(); + $Ajax->activate('_page_body'); +} + +if (isset($_POST['CancelVoiding'])) +{ + $selected_id = -1; + $Ajax->activate('_page_body'); } //----------------------------------------------------------------------------------------