Currently, it is only possible to sort sales invoices and purchase invoices by entry time. However, it would be very useful to also have the option to sort by due date.
2 05/16/2024 11:56:49 am
Re: New sales_order_entry.php very slow (4 replies, posted in Accounts Receivable)
No - there is only one currency in use, so that cannot be the reason.
But both customers who experience this problem - they also have over 15000 transactions.
3 05/15/2024 09:57:27 am
Re: New sales_order_entry.php very slow (4 replies, posted in Accounts Receivable)
Hello
Changing the PHP version doesn't make a difference. There are quite a few products. There aren't as many customers.
What I discovered is that the query is slow when the customer is already selected. For example, creating the following invoice or when I have looked at transactions for the respective customer before (then the customer is already selected by default when creating a new invoice).
And here is the difference - I have two customers who have a considerable number of invoices every day. These customers are extremely slow. If the preselected customer has had few transactions - there are no problems. But these two customers have had thousands of orders, and this problem occurs specifically with them.
Can I put some additional code somewhere to see the time of SQL queries, so I can figure out why it is slow for these customers - what query takes so long?
4 05/15/2024 03:19:16 am
Topic: New sales_order_entry.php very slow (4 replies, posted in Accounts Receivable)
Hello
Since the weekend, entering sales invoices has suddenly become extremely slow. The Inspection tool shows that opening the sales_order_entry.php file takes 2.2 minutes!
However, all other FrontAccounting functions are working at normal speed. Where or how should I start investigating what the problem is?
The trouble started over the weekend when the hosting company had an issue with the MySQL server.
FrontAccounting 2.4.18
PHP - 8.3
MySQL - 10.6.17-MariaDB-cll-lve
MySQL table optimization done
5 09/20/2017 01:21:16 pm
Topic: Tax Report doesn't include Supplier Invoices taxes (0 replies, posted in Report Bugs here)
Hi
I just tested it in FA demo also. When You adding Supplier Invoice, where you define directly GL items and also tax there - these invoices are not included in Tax Report. So the calculated tax sum is not the same as in Balance Sheet.
6 09/19/2017 05:22:36 am
Re: Tax Report (12 replies, posted in Reporting)
Any idea - why Tax Report doesn't include supplier invoices?
7 09/16/2017 08:54:01 am
Topic: Tax Report (12 replies, posted in Reporting)
Hi
Now I am making my first VAT declaration with 2.4.2 version.
Problems:
1) Tax Inquiry - this shows absolutly mess - I am not understanding - where it takes these numbers and it sum up Charged on sales and Paid on purchases.
2) Tax Report - this doesn't shows and adding invoices, what are added through Supplier Invoices - where you can define GL entries.
So I have three different amount - one in Tax Inquiry, one in Tax Report and one in Balance Sheet....
8 09/07/2017 02:32:52 pm
Re: Invoice problem with new version (13 replies, posted in Reporting)
Exactly that - what I need (y)
9 09/07/2017 01:28:33 pm
Re: Invoice problem with new version (13 replies, posted in Reporting)
Still mystic - how before I have this total without taxes and now not. But quick fix - I added just before this line where You made one fix, following lines:
$rep->TextCol(3, 6, _("Total Tax Excluded"), -2);
$rep->TextCol(6, 7, number_format2($sign*$tax_item['net_amount'], $dec), -2);
$rep->NewLine();
And now its prints out also Total Tax Excluded
10 09/07/2017 11:35:38 am
Re: Invoice problem with new version (13 replies, posted in Reporting)
How I can add this Total Tax Excluded line there in with form and how? - as using different pricelist is not an option - as most of my customers are regular customers (not companies) and they pay all taxes. But I need to show in invoice Tax sum and also sum without taxes. All invoice lines can be with taxes - but in total I need to show both lines. Not only included taxes.
EDIT:
I am not understanding right now - I am doing Meld diff with old version files with source forge copy - and it doesn't show me any modifications in files - but still my 2.3.25 prints out invoices, where this Total Tax Excluded is also printed.
11 09/07/2017 10:59:24 am
Re: Invoice problem with new version (13 replies, posted in Reporting)
Hi
Correct is Total Tax Excluded
But here are examples - the same customer - invoice total area before and now.
Before: [img]https://www.upload.ee/thumb/7432479/before.png[/img]
Now: [img]https://www.upload.ee/thumb/7432483/now.png[/img]
I need some how to show this Total Tax Excluded sum also in invoice.
12 09/07/2017 08:02:40 am
Topic: Invoice problem with new version (13 replies, posted in Reporting)
Hi
With 2.4.2 I get just notified about problem with invoices. I have two main sales types - one is for usual costumers and this includes taxes. Other is for company's and these prices are does not include taxes.
In 2.3 version there was no problem - I printed out invoice and in end of invoice - everything was fine. With taxes included costumers get invoice, where are printed:
Total
Price without taxes
Taxes
Total
But now in 2.4 these invoices are in end only following lines:
Total
Taxes
Total
Not any more this "Price without taxes" line.
The problem is only with this sales type - where prices are included to prices already.
13 08/21/2017 07:51:38 am
Re: Search function in 2.4.2 (6 replies, posted in Report Bugs here)
Hi - I will test it at the end of the week.
14 08/20/2017 01:47:05 pm
Re: Search function in 2.4.2 (6 replies, posted in Report Bugs here)
Nothing - I cleared cache, even tried incognito with browser.
Variables - I don't have ssh access to server, but phpMyAdmin shows that:
[img]https://www.upload.ee/thumb/7368594/database.png[/img]
15 08/20/2017 12:00:48 pm
Re: Search function in 2.4.2 (6 replies, posted in Report Bugs here)
Hi
I added this line to includes/db/connect_db_mysqli.inc - it looks now so:
$db = mysqli_connect($connection["host"], $connection["dbuser"], $connection["dbpassword"], "",
!empty($connection["port"]) ? $connection["port"] : 3306); // default port in mysql is 3306
mysqli_select_db($db, $connection["dbname"]);
///// From mysqli release 5.6.6 the sql_mode is no longer empty as it was prior to
///// this release. Just for safety we make it empty for all 5.6 release and higher.
///// This non empty sql_mode values can interphere with FA, so all is set empty during
///// our sessions.
///// We are, however, investigating the existing code to be compatible in the future.
db_query("SET sql_mode = '".SQL_MODE."'");
/////added fix
db_query("SET @@collation_connection = @@collation_database");
/////
$SysPrefs->refresh();
return $db;
But it doesn't help. Or I need something to change in customers_db.inc file also?
Collation - in config_db.php and also in database - all tables are utf8_unicode_ci
16 08/20/2017 07:54:56 am
Topic: Search function in 2.4.2 (6 replies, posted in Report Bugs here)
Hi
I today upgraded from 2.3.26 to 2.4.2. And one thing, what I discovered - customer search is broken - ok - its not broken, but it has lost one very important thing - Most of my customers and suppliers names beginning with uppercase letter - some of them are all uppercase in name. In 2.3 version - in search - there was no problem with search - I can write in lowercase beginning of the name and it finds it. Example - Netikink - for searching I need to write only - neti and thats fine. Now in 2.4 search doesn't search any more uppercase/lowercase letters together. So when I am searching now neti - it gives me nothing. I need to write Neti - and then it finds it.
Is it possible to fix it?
EDIT: Item search and supplier search working as needed - there is no problem with uppercase/lowecase. So the problem is only in customer part - when searching customers.
17 01/03/2017 03:34:22 pm
Re: Release 2.4.RC1 (20 replies, posted in Announcements)
Is there any news?
When we can wait new version?
18 11/01/2012 04:55:51 pm
Re: Documents in FA (2 replies, posted in Wish List)
Thanks
Now its much better
19 10/31/2012 11:46:24 am
Topic: Documents in FA (2 replies, posted in Wish List)
Hi
I wish that developers add some modification for next version (or when it is time to add) to make little bit better the file handling in FA.
I am getting lot of PDF supplier invoices and I am adding them all to FA also, when I am inserting invoice. But - what I discover:
1) File list is to long
2) File input field is better to bring up
Here is screenshot, what I mean: http://spottraining.org/wp-content/uploads/2012/10/Add_documents_1351683588000.jpg
And right now I have only around 500 documents - but what happening then, when I have 1000 or 2000?
22 08/03/2012 04:20:12 pm
Re: Official Company Number - how I can show it in Invices? (3 replies, posted in Reporting)
/reporting/includes/header2.inc
I know that very well - that I can add it there, but what is name this field?
23 08/02/2012 11:55:28 am
Topic: Official Company Number - how I can show it in Invices? (3 replies, posted in Reporting)
Hi
In company tab - there is field Official Company Number - but it is not printed any documents (or I don't find it).
How it is possible to show this number in invoices also?
24 06/23/2012 10:56:26 am
Re: New Fix-Asset Module (11 replies, posted in Modules Add-on's)
Hi
It looks very good!
How and where we can get it?
25 05/23/2012 08:24:32 am
Re: Costumer credit - how I can pay back? (13 replies, posted in Accounts Receivable)
Yes - now its fine
Thanks