When we check the Delivery Against Sales Order Inquiry View, it shows the Order Total Value for the Value of the order that is still not delivered. But there is still an anomaly there.

In the attached image you can find that there was big order and all delivered except for one item.

That items total value in the order is 108,000.

Undelivered is 5 out of 6.

The inquiry page shall show the amount 90,000 but it is showing 108,000.

If this is a bug then need a fix. Or if I am mis interpreting it then please let me know.

152

(1 replies, posted in Development)

Dear All,

My last two days were too hectic. My FA was not exporting the reports in Excel Properly. No Error was shown. I was unable to locate the issue. I had one month old backup that has no issue. I compared both and found an issue that one of latest module's hooks.php file was not having LF line endings.

I found this Swiss File Knife Tool helpful to check in bulk and convert the whole projects Line Endings to LF.

Since I am using Linux server so I needed LF.

This Post is also helpful https://stackoverflow.com/a/16886243

Once installed the above tool. Open the Project Directory in Command Prompt and write the below command

> sfk remcr -dir your_project_directory -yes

153

(20 replies, posted in Report Bugs here)

Unparenthesized `a ? b : c ? d : e` is deprecated. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` in file: gl/includes/db/gl_db_trans.inc at line 464

@bkort, yes you can sell it commercially. Since FA has no marketplace so you make a free version and then paid version. Free users can then migrate to paid one.

Free version can then be made available at FA forum.

Can you do the same for WooCommerce? I have few clients who may be interested in that.

I just want to give a bundle of thanks to @BraathWate for his work in this commit that has solved a great problem for me.

Hats off for you @Braath.

can u provide a sample template to test?

hello I am travelling now so couldn't check earlier. I will send you the demo soon once reached.

This is the modified import_items that takes care of opening stock.

Import Items

159

(7 replies, posted in Wish List)

you can use tawk.to. Its totally free and can be easily integrated in FA theme. Just add the JavaScript code you get from tawk.to on includes/page/footer.inc before the last line.

160

(7 replies, posted in Accounts Receivable)

I have debugged the issue in detail and found that calling the below function is making the system being logout.

function regenerateSession()

When in one session.inc call the above function is called and regenerates the new session id

On the next call when

function validateSession() is called it returns false on following condition

if (isset($_SESSION['EXPIRES']) && $_SESSION['EXPIRES'] < time()) {
            return false;
        }

Any idea? Why regenerate is important? and this condition is failing?

161

(1 replies, posted in Reporting)

You need to modify the report rep704.php

162

(2 replies, posted in Items and Inventory)

Probably in Company Setup >> User Interface Options >> Search Item List is checked.

163

(1 replies, posted in Setup)

FA has nothing to do with domain. If the table prefix is same on both domains then you can restore it.

164

(6 replies, posted in Development)

What about Future of FrontAccounting? Long awaited 2.5 is taking time I think due to work load with Jansuz. Are you still with the plan to get further developers involved.

165

(1 replies, posted in Reporting)

On Line # 50 Please add following code

AND amount != 0

Otherwise all voided transactions are shown in Bank STatement.

166

(3 replies, posted in Installation)

2 Core Server with 4 GB RAM, Debian Linux, DigitalOcean

167

(82 replies, posted in FA Modifications)

Ok, your explanation given in Post#10 is enough to create a sample module. Except nothing should be done in dashboards folder instead reporting folder shall be used in module to create the file custom_dashboards.php.

Thanks for this great feature.

168

(3 replies, posted in Installation)

I have checked the Logs of my server when It Crashes as CPU Usage reaches 100%.

I found few core pages and my module pages with a query string /modules/container/containers.php?JsHttpRequest=0-xml

Is this an Ajax Call?

This is a simple Page to add Containers against Jobs (Dimensions).

This client have more than 3000 open Jobs (Dimensions).

Is this Ajax Call taking so much resources is due to the Dimensions Being Loaded in the Drop Down List?

Or there is any other reason for this resource consumption.

@All Gurus please guide me.

Regards.

169

(82 replies, posted in FA Modifications)

Hello @notrinos I am working on this dashboard system. In Post # 19 you have given a link of Sample Dashboard Module. That link is not working. Can you share that sample again.

Regards.

With patch files it will be easy to test.

171

(7 replies, posted in Accounts Receivable)

@Braath, thanks. The logout is not "Authorization Timeout". Suddenly the main login screen appears. I have increased the session timeout to 36000 secs in both php.ini and company setup.

How can I set a monitoring on Session. Any hint?

172

(7 replies, posted in Accounts Receivable)

One of my clients have 300-400 invoices on daily basis.

While punching invoices, he is facing abnormally system being logged out.

No particular behavior or error is recorded.

Sometimes it logs out after 2 invoices and sometimes after 8 invoices.

Any ideas?

173

(4 replies, posted in FA Modifications)

The feature is good. But can't help. smile

This error also come when Line endings are not correct. It should be LF with Linux . On PHP 7 if line endings are not correct then the said file will be ignored in inclusion.

If you want to import Journal Transactions and Bank Related Transactions then you can use import_multijournalentries extension. If you want to import Inventory Transactions you can use import_items extension