@joe: need this fix?
701 06/11/2020 06:27:07 pm
Re: Sales Order Inquiry -- Wrong Figure (7 replies, posted in Accounts Receivable)
702 06/11/2020 06:23:05 pm
Re: Change Item Description Field to long_description Field. (14 replies, posted in Reporting)
Try to put in both languages in the name itself or alter the rep107.php accordingly.
703 05/30/2020 07:30:46 pm
Re: Dimensions accounting tutorial on Youtube (3 replies, posted in Dimensions)
Very nicely done. Keep up the good work.
704 05/22/2020 05:00:28 am
Re: Looking for Accountants (2 replies, posted in Jobs wanted/offered, non-free offers)
No one seems to indicate if they are accountants!
706 05/17/2020 04:49:49 pm
Re: Debit Credit Error on Trial Balance (18 replies, posted in Report Bugs here)
@joe can this be included into the core with a Company Setup flag in sysprefs table?
707 05/17/2020 04:38:51 pm
Re: Deleting a fiscal year problem (22 replies, posted in Setup)
Updated Wiki.
708 05/17/2020 04:17:31 pm
Re: How to create a subsidiary ledger for AR & AP (3 replies, posted in Banking and General Ledger)
Account Types appears in the bank_accounts table and in the menu Banking & GL => Bank Accounts and has the following values / choices:
0 => Savings Account
1 => Chequing Account
2 => Credit Account
3 => Cash Account
Expect these functionalities and choices to be hard coded in the php scripts. How do we use it to summarise them?
The wiki entry asks to allocate a single GL account to many Bank Entries at:
https://frontaccounting.com/fawiki/index.php?n=Help.BankAccounts
Also there is very little info on Account Tags in the wiki. at:
https://frontaccounting.com/fawiki/index.php?n=Help.AccountTags
709 05/14/2020 09:30:17 am
Re: Recurring invoices result in no dimensions on gl_trans (11 replies, posted in Accounts Receivable)
@joe: The recurring invoice template can have a flag (sysprefs?) to pass on the dimension parameter to subsequent invoices generated.
710 05/14/2020 09:28:05 am
Re: Deleting a fiscal year problem (22 replies, posted in Setup)
@joe: Need to refurbish the end of year routines to make sure that the client balances are automatically made along with unpaid and partially paid invoice data for allocation of payments in the subsequent year. This needs to be done for suppliers as well. The appropriate stock moves too need to be taken care of.
711 05/14/2020 09:18:37 am
Re: [Solved] Line Endings Issue (1 replies, posted in Development)
NotePad++ does it.
https://stackoverflow.com/questions/11341660/change-eol-on-multiple-files-in-one-go
To convert line endings use unix2dos and dos2unix.
712 05/14/2020 09:13:21 am
Re: TAX BY ITEM LINE (15 replies, posted in Setup)
Sales => Sales Types
Choose to Include or Exclude Tax in prices.
713 05/14/2020 09:08:53 am
Re: Cannot create new company due to bugs in sql file (5 replies, posted in Setup)
Compare the sql/<chart>.sql used in InMotion hosting and the one in the sourceforge and inform softaculous / hosting provider of the discrepancy. Possible that the latter did not update their install scripts.
Thanks for reporting it.
714 05/14/2020 09:05:30 am
Re: Import Transactions (154 replies, posted in Modules Add-on's)
Turn on debug in the config file and see what errors accrue.
715 05/14/2020 09:03:17 am
Re: How to create a subsidiary ledger for AR & AP (3 replies, posted in Banking and General Ledger)
Then why create subsidiary ledgers for them in the first place? If such a need is for reporting only, then write a custom one.
716 05/14/2020 09:00:18 am
Re: Debit Credit Error on Trial Balance (18 replies, posted in Report Bugs here)
Petty cash is treated like a bank account in FA. That is why you will find it in the bank_accounts table (check using the standard Chart of Accounts with demo data).
717 05/14/2020 08:45:49 am
Re: PHP 7.4 bug (20 replies, posted in Report Bugs here)
The parenthesis should be added to the second condition as it is a fallback. First choice Output, then Input and last NULL.
Lines 464-465 of file gl/includes/db/gl_db_trans.inc:
$reg_type = in_array($trans_type, array(ST_SUPPINVOICE, ST_SUPPCREDIT)) ? TR_OUTPUT
: in_array($trans_type, array(ST_SALESINVOICE, ST_CUSTCREDIT)) ? TR_INPUT : null;
should be:
$reg_type = in_array($trans_type, array(ST_SUPPINVOICE, ST_SUPPCREDIT)) ? TR_OUTPUT
: (in_array($trans_type, array(ST_SALESINVOICE, ST_CUSTCREDIT)) ? TR_INPUT : null);
It is properly coded in line 86 of includes/JsHttpRequest.php.
@joe: can implement this and check for others.
718 05/14/2020 08:36:01 am
Re: Stock Check Sheet | Inventory Planning Reports has serious Bugs. (12 replies, posted in Reporting)
The sql construct starting at line 107 refers to an alias: Demmand. Is it used and is the mis-spelling intended? The said column does not appear to be explicitly named anywhere in usage.
The only indexes worth creating are:
ALTER TABLE 0_sales_orders ADD INDEX FromStkLocIdx (from_stk_loc);
ALTER TABLE 0_stock_master ADD INDEX MBFlagIdx (mb_flag);
The function stock_demand_manufacture is recursive in nature to cycle through all BOMs that may have other BOMs as part of itself. Check that the BOMs do not have any parent entities as part of the downline.
719 05/08/2020 02:17:48 pm
Re: New, neat and user friendly theme! (3 replies, posted in Jobs wanted/offered, non-free offers)
Takes a while for the screen to come up due to huge js possibly.
Color combination between foreground and background for the mobile width menu (Menu1.png) needs better contrast and some way to navigate back to the upper menus. Good work.
Setup a fork on GitHub and place your theme therein. Hope you did not change any of the core files.
720 05/08/2020 02:07:57 pm
Re: Stock Check Sheet | Inventory Planning Reports has serious Bugs. (12 replies, posted in Reporting)
What is the size of your gzipped sql backup from FA?
Maybe it can be simulated in a quarantined cloud container and provide the reports and study the sqls that need to be optimised.
We need to first try it on say PHP 5.3.3 / MySQL 5.1 on a test Debian 6.0 container. This can be tedious and time consuming besides the discerned attention to technical detail. Is it worth it?
721 05/08/2020 01:59:55 pm
Re: Chart of accounts for real estate investor (1 replies, posted in Banking and General Ledger)
Just add the accounts pertinent to the Real Estate sector into any standard chart of accounts.
722 05/08/2020 01:58:20 pm
Re: Separate Add and Edit Roles in FA (6 replies, posted in Setup)
In each menu item you want add / edit role separation do the following:
1. Take a FA sql backup
2. Add a record in the menu item
3. Take another FA sql backup
4. Compare the 2 backups and see what SQL statements are needed for the Add operation.
5. Edit the record in the above menu item for the fields desired to be edited (or in it's entirety)
6. Take yet another FA sql backup
7. Compare the last 2 backups and see what SQL statements are needed for Edit operation.
8. Compare the field list for the Add and Edit operation's SQL statements.
Now either code the PHP in a way that achieves the above (OR)
Create a new MySQL DB (non-edit) user giving it suitable rights over the desired tables/fields and program the FA mysql_connect based on the logged in (non-edit) user and switch to those credentials.
723 05/07/2020 02:49:56 am
Re: Pro-Forma Invoice in FA! (12 replies, posted in Banking and General Ledger)
We will then need another kind of Sales document type for "Goods reserved for Sales Order".
724 05/07/2020 02:45:13 am
Re: Stock Check Sheet | Inventory Planning Reports has serious Bugs. (12 replies, posted in Reporting)
rep302.php - Inventory Planning Report - Line 52
rep303.php - Stock Check Sheet - Line 164
The above reports have a function getTransactions() which uses item.description in the GROUP BY clause - this assumes that each item.stock_id can have different item.description(s) - may even try to remove the offending Line making sure it is unique or make an index for it with:
ALTER TABLE `1_stock_master` ADD INDEX `ItemDetailIdx` (`description`);
725 05/07/2020 02:31:13 am
Re: Pro-Forma Invoice in FA! (12 replies, posted in Banking and General Ledger)
"Goods waiting for delivery" will then mean "Goods in Stock reserved for said order" and inability to sell such stock to others if the "Proforma Invoice" is not converted into an order forthwith!
Do you really want this complication?
Better stick with "Sales Quote" and make a move of the proposed items and quantities to a holding account till it gets converted into an order for delivery and revert it just before Invoicing it finally!.