Summary entries in other tables are affected too.
201 09/16/2023 03:48:42 am
Re: Make edits to a sales order after it's been invoiced? (1 replies, posted in Reporting)
202 09/16/2023 03:46:11 am
Re: Rep108: Statement - since when is it only emailing when overdue debits (1 replies, posted in Reporting)
The difference between the v2.4.14 and 2.4.16 for the file reporting/rep108.php in diff format is as follows:
core/reporting/rep108.php | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/core/reporting/rep108.php b/core/reporting/rep108.php
index abb11e7..f2d6d42 100644
--- a/core/reporting/rep108.php
+++ b/core/reporting/rep108.php
@@ -175,12 +175,16 @@ function print_statements()
for ($i = 0; $i < 5; $i++)
$rep->TextWrap($col[$i], $rep->row, $col[$i + 1] - $col[$i], $str2[$i], 'right');
if ($email == 1)
- $rep->End($email, _("Statement") . " " . _("as of") . " " . sql2date($date));
-
+ {
+ if (($CustomerRecord["Balance"]) != ($CustomerRecord["Balance"] - $CustomerRecord["Due"]))
+ $rep->End($email, _("Statement") . " " . _("as of") . " " . sql2date($date) . " " . _("from") . " " . get_company_pref('coy_name'));
+ else
+ display_notification(sprintf(_("Customer %s has no overdue debits. No e-mail is sent."), $myrow["DebtorName"]));
+ }
}
if (!isset($rep))
- display_notification("No customers with outstanding balances found");
+ display_notification(_("No customers with outstanding balances found"));
else if ($email == 0)
$rep->End();
}
The last change is that the notification text is now translated.
The "End(email..." statement is now in an "if" construct that you may revert as needed.
203 09/16/2023 03:39:08 am
Re: Looking for accounting services using Front Accounting (1 replies, posted in Jobs wanted/offered, non-free offers)
Attempting to access your domain cexpert.com results in:
Sorry, you have been blocked
You are unable to access cexpert.com
Please explain what the accounting operations entail so that the forum users can recommend or take it up.
204 08/08/2023 06:59:56 pm
Re: PHP 8.2 commits - why change $deliver_to to $delivery_to ? (3 replies, posted in Setup)
Tnx @joe
205 08/08/2023 01:54:14 pm
Topic: PHP 8.2 commits - why change $deliver_to to $delivery_to ? (3 replies, posted in Setup)
In this commit, in the file sales/includes/cart_class.inc, why was the variable $deliver_to changed to $delivery_to ?
Wonder if this is going to affect some module or other FA files.
Please note that the following files still use $cart->deliver_to, $order->deliver_to and $_SESSION['View']->deliver_to:
sales/sales_order_entry.php
sales/includes/db/sales_order_db.inc
sales/includes/ui/sales_credit_ui.inc
sales/includes/ui/sales_order_ui.inc
sales/view/view_sales_order.php
206 08/08/2023 01:45:22 pm
Re: How do I upgrade from 2.4.15 to 2.4.16 (1 replies, posted in Installation)
Checkout https://frontaccounting.com/punbb/viewtopic.php?id=10282 and refer the last 2 posts' attachments.
207 08/04/2023 02:43:35 pm
Re: I hope to find (4 replies, posted in Wish List)
Have you tried kits and assemblies?
208 08/04/2023 02:35:56 pm
Re: Excel output error (2 replies, posted in Reporting)
Check which version of Excel you are using.
The module worked well with Excel 2007.
Try saving as xls format and try too.
209 08/04/2023 02:30:18 pm
Re: Dashboard error (5 replies, posted in Installation)
FA Backup backs up the data tables. The Security Roles and Users table can be backed up and restored if you tick the checkbox for it.
210 07/17/2023 04:41:34 pm
Re: Release 2.4.16 (3 replies, posted in Announcements)
Post Release Fixes attached.
Github Master (Bleeding Edge) Download Link
These fixes can be applied to (overwrite) the release version to be fully functional.
211 07/17/2023 04:22:06 pm
Re: Dashboard error (5 replies, posted in Installation)
https://stackoverflow.com/questions/48250288/basic-imageftbbox-function
https://www.geeksforgeeks.org/php-imagettfbbox-function/
Check the PHP version and the line 1223 is:
$p = imageftbbox($size, 0, $this->fontfile, $string);
212 07/17/2023 04:19:24 pm
Re: Emailing not setting mime-type (38 replies, posted in Reporting)
MIME Type is set in the device running the browser as it is used for rendering.
Maybe install Acrobat Distiller, SumatraPDF or have it set in a recent browser setting.
213 07/17/2023 04:16:18 pm
Re: XUMM Payment Link in Customer Invoice Printing (7 replies, posted in FA Modifications)
Not yet. Maybe @varaddha may have the time for it.
214 07/07/2023 05:38:28 am
Re: Date not accepted (12 replies, posted in Banking and General Ledger)
If you have not closed the old fiscal year then set it as the active one and edit at will.
215 07/07/2023 05:37:25 am
Re: XUMM Payment Link in Customer Invoice Printing (7 replies, posted in FA Modifications)
Provide a dummy screenshot with a sample url in it.
216 07/07/2023 05:35:05 am
Re: PHP 8 (17 replies, posted in Setup)
The base64 dedoded string of the above is a PDF file that comes out from https://www.base64decode.org/ as:
%PDF-1.3
1.00 w
3 0 obj
<</Type /Page
/Parent 1 0 R
/MediaBox [0 0 595.28 841.89]
/Resources 2 0 R
/Contents 4 0 R>>
endobj
4 0 obj
<</Filter /FlateDecode /Length 1537>>
stream
xZ[s8~8/Lc$[O$M
Y]Ajk
217 07/07/2023 05:26:04 am
Re: Inventory valuation report error for locations after stock transfer (3 replies, posted in Reporting)
Since the product costs are different across locations, make them appear as 2 different items with specific costs. That way, transfers will show up as at appropriate costs across locations.
218 05/18/2023 07:02:44 am
Re: Release 2.4.16 (3 replies, posted in Announcements)
Release date 2023-05-03 as of GitHub commit https://github.com/FrontAccountingERP/FA/commit/2ce280fb8619210f21485b723ec4cb2b306fcce9
SF Download Link
MD5: 7b632be72c64301168b1c46db5f60962
Filesize: 1,883,376 bytes
219 05/18/2023 06:07:50 am
Re: Release 2.4.16 (3 replies, posted in Announcements)
9 new translatable strings in this version:
Select an Item:
Doc Title
Doc Date
Fixed Asset
Item ID
Fixed Asset ID
Fixed Assets Locations
Inventory Locations
3*M
220 05/18/2023 05:56:47 am
Re: GitHub not updated from SF.net since March 18th 2023. (2 replies, posted in Report Bugs here)
Thanks. It is stands synched now.
221 05/15/2023 03:55:33 pm
Topic: GitHub not updated from SF.net since March 18th 2023. (2 replies, posted in Report Bugs here)
https://github.com/FrontAccountingERP/FA
needs to be synched with
https://sourceforge.net/p/frontaccounting/git/commit_browser
222 04/18/2023 05:24:27 pm
Re: Supplier Description is overwritten (14 replies, posted in Report Bugs here)
@ckrosco: If you still want t, then your code should be checked:
if ($description = "")
is an assignment but it should be
if ($description == "")
which is a comparison.
223 04/09/2023 03:29:36 pm
Re: Thai language (9 replies, posted in Translations)
Thai CoA has the country's Tax value, Fiscal year period and Thai Currency. It is there for native Thai users to update at will and submit back to the project.
Thai language is a work in progress so that native language speakers/users can fill it up and it is hosted in Transifex and can be updated at will. There are a total of 16 translations done in Transifex for the Thai Language and native speakers/users are welcome to join the effort.
The latest Thai language files are at:
https://github.com/apmuthu/FA24extensions/commit/e8e2fb61a0e34d696b9e6ebdf89c7323797dbc91
Transifex link:
https://www.transifex.com/gnuacademy/teams/55037/th_TH/
224 04/04/2023 05:09:58 pm
Re: how to increase login user text length (3 replies, posted in Setup)
Check the "View-Source" of the login form and see if some browser moz css styling automatically came in.
225 04/03/2023 11:41:48 am
Re: Thai language (9 replies, posted in Translations)
@joe: now that there is interest in FA from Thailand, it seems appropriate to include both the Thai Chart of Accounts and the Thai Language files as well into the official extension repos and update the ta_IN and vi_VN language files as well. You can take it from my unofficial extensions repo listed above.
@sng: As a native Thai speaker, kindly translate the Thai language .po file fully and send it across so that it may be compiled and placed in the public repos. Welcome to Thai users into the FA fraternity and help popularize it in your country!