1 (edited by juju 04/11/2011 08:08:19 pm)

Topic: Search in the menu void a transaction

Increasing number of data which we have entered into the FA, sometimes we need a correction / emptying of the transaction.
Adding a search on the menu void a transaction :

1. Open the file .. / admin / void_transaction.php
2. Find the line
   
    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);
   

3. Change to
   
    systypes_list_cells(_("Type:"), 'filterType', null, true);

    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'], $_POST['FromTransNo'], $_POST['ToTransNo'], $trans_ref);
   

   

Hopefully helpful
/ Jujuk

ING NGARSO SUNG TULODO, ING MADYO MANGUN KARSO, TUT WURI HANDAYANI

Re: Search in the menu void a transaction

Yes, this seems like a good idea. Will be included in next minor release, 2.3.4.

/Joe