That affects depending on the type or document you void. mainly it affects on gl_trans, audit_trail, bank_trans, journals. But the best solution for your question is simply follow the Backup and restore to get it.

Official Repo has not updated  rep_check_print.  @joe, @itronics will help you on this.

903

(5 replies, posted in Setup)

1. For editing a quotation you can see here.

sales/sales_order_entry.php?ModifyQuotationNumber=4   //4 should be replaced with your quotation number.

2. The comment Overlap issue has to be solved by editing the rep111.php file there in the place ment of comment , you have to change the left coordinate to get it more a bit left and also the length .

Here is the function

 start_form 

.

function start_form($multi=false, $dummy=false, $action="", $name="")
{
    // $dummy - leaved for compatibility with 2.0 API
    global $form_nested;

    if (++$form_nested) return;

    if ($name != "")
        $name = "name='$name'";
    if ($action == "")
        $action = $_SERVER['PHP_SELF'];

    if ($multi)
        echo "<form enctype='multipart/form-data' method='post' action='$action' $name>\n";
    else
        echo "<form method='post' action='$action' $name>\n";

}

You need to add an extra parameter and write this function on your specific need. But i think that ajax processing and ordinary form submit can be defined on the submit button function.Try  glance the

 submit

function to know more

I am trying to create sql backup and download it straight away for my extension(hrm). Which i am trying to use the FA backup codes.There it worked fine.But its not working properly.

i was trying to download sql file using this script.But its not working

 header("Content-type: 'application/sql'");
            header('Content-Length: '.filesize(dirname(dirname(__FILE__)).'/backups/'.$key.'.sql'));
            header('Content-Disposition: attachment; filename='.$key.'.sql');
            echo file_get_contents(dirname(dirname(__FILE__)).'/backups/'.$key.'.sql');

If this setup within Official version. Than one of a issue for  thirdparty extension installation will be solved.  Hope @joe will do this.

But this way we are boycotting the version information

908

(17 replies, posted in Modules Add-on's)

From your installation Readme.Md  you need to change the version no like this.

 'version' => '2.4.2', 

Which will help to activate the extension. Else it will show a warning the version incapability in it.

909

(2 replies, posted in Items and Inventory)

That can be done with default inventory location.

i am trying that way.

Can i append my customer Sys_type name into $systypes_array from includes/sysnames.inc from my extensions

912

(16 replies, posted in Accounts Receivable)

This is good feature if it comes within core , as like clone, we need an option to merge customers.

913

(12 replies, posted in Reporting)

Perfect and it works like charm

I will update answer with two pdf's showing tax reports and its summary.

There are some duplicates in tax report and which will reflect the tax summary value.  I have checked with previous version Fa.2.3.13 and found solution for it. I have committed the change here in bitbucket repo,

to@apmuthu, @joe

916

(12 replies, posted in Reporting)

@joe, Really good to keep it on Sys_pref. Because, all users are not technically good.  So its better to create an option in per company basis like Apmuthu said.

@boxygen - Thank you so much for the full review,  Let me do something more than that to shape it well.

This is exactly helps me to enhance it a bit more clear than now. 

Hope to come up with a lot better feature than this.   

The dashboard and menu styles are preferred by some of frontaccounting users.  So just kept it like this.

And for the responsiveness, everyone asks to a full responsive theme.  So I tried myself with each page styling to make it like this.

Anyhow,I will enhance the look more than this.

@Apmuthu, thank you for taking time to feedback my work. I hope the assets size is not a mater with the present system speed and server config.  Let me do something for speed.

I hope ,  The responsiveness will fit to all the small and handheld devices.  I Am looking feedback from FA users. Those who are interested to test the responsive theme. Also I have some usefull Charts to help users to change date range and get results in graphics representations.
Vanigam Theme Page

FA 2.3 and FA 2.4 has  more changes in its functionality and added asset module and the reference method also changed. So its good to keep the 2.3.25 and manually install FA 2.4 for the further new things. If you wish to upgrade, You should digg more into many core files and also many changes in the database tables. If you have more data's in the existing table. You better go with separate installations.

I have a solution temporarily to install my extensions on the newer version of FA. You can find it when you try simple hrm or some of my other exrensions.  Also i just revamped my Vanigam theme with its responsives, Those who are interested to demo it.  Just take a look at my blog http://www.kvcodes.com and followed by Vanigam theme.   There is demo credentials.

It might not updated the auto increment ID or your reference may already exist, Try change the Reference lines and test it again.

i was trying to install my local extension on FA.2.4.2.  But its throwing Version insufficiency issue. So i digged into the portion which helps to install and activate a third party extension.
There i found an issue which i am giving it here.  function "local_extension" helps to create create array for the third party extension installation. Which creates a sub array and input it on "installed_extenions.php"file.  Here 

 version  => '-' 

..This should be giving trouble, It has to allow the code to get the extension version.  But it seems empty and based on this version issue,the new third party extension can't be activated.

$exts[$next_extension_id++] = array(
            'package' => $id,
            'name' => $id,
            'version' => '-',
            'available' => '',
            'type' => 'extension',
            'path' => 'modules/'.$id,
            'active' => false
    ); 

That's it. the core admin can take some changes to make this run again

@JavaMan, Check file permissions, and change all to 0755. If still happens change it to 0777.  Than try again.

If you are Linux Localhost user shell command

sudo chmod -R 777 /var/www/html/FA 

925

(7 replies, posted in Items and Inventory)

2.4  works on php 7 and mysql 5.7 for me. It works fine.