X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fvoid_transaction.php;h=6e84a17ca48ee5625c4a68f452d8729817f46dca;hb=76ca9fef9bb510236a6a7740fa0f60eb7db384c9;hp=951a7f87e03bda13c31a341ce4d6460590084de9;hpb=e735f0a06f8a43ed4885ff51a5c0b4332c130b40;p=fa-stable.git diff --git a/admin/void_transaction.php b/admin/void_transaction.php index 951a7f87..6e84a17c 100644 --- a/admin/void_transaction.php +++ b/admin/void_transaction.php @@ -151,12 +151,23 @@ function voiding_controls() systypes_list_cells(_("Transaction Type:"), 'filterType', null, true, $not_implemented); if (list_updated('filterType')) $selected_id = -1; - + + if (!isset($_POST['FromTransNo'])) + $_POST['FromTransNo'] = "1"; + if (!isset($_POST['ToTransNo'])) + $_POST['ToTransNo'] = "999999"; + + ref_cells(_("from #:"), 'FromTransNo'); + + ref_cells(_("to #:"), 'ToTransNo'); + + submit_cells('ProcessSearch', _("Search"), '', '', 'default'); + end_row(); end_table(1); $trans_ref = false; - $sql = get_sql_for_view_transactions($_POST['filterType'], null, null, $trans_ref); + $sql = get_sql_for_view_transactions($_POST['filterType'], $_POST['FromTransNo'], $_POST['ToTransNo'], $trans_ref); if ($sql == "") return;