Updated Wiki.
677 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
678 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.
679 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.
680 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.
681 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.
682 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.
683 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.
684 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.
685 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).
686 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.
687 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.
688 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.
689 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?
690 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.
691 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.
692 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".
693 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`);
694 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!.
695 05/07/2020 02:23:52 am
Re: FA batch + expiry date (9 replies, posted in Jobs wanted/offered, non-free offers)
@kvvaradha: In case your offering is commercial / encrypted / FA version dependent, just place a link to your product's web page with info and costs so that it can be useful to the FA users who want to trust and buy your product and compare with other Open Source offerings.
696 05/06/2020 04:19:54 pm
Re: Pro-Forma Invoice in FA! (12 replies, posted in Banking and General Ledger)
All payments can be related to an invoice only and any prepayments will be allocations finally. Proforma Invoice can be a dummy invoice with no linkages to the delivery / order and can be converted to an invoice much like an order. Possibly a special case of an Order with some pre-payments in the pipeline.
697 05/06/2020 04:16:24 pm
Re: FA batch + expiry date (9 replies, posted in Jobs wanted/offered, non-free offers)
Patient's Name and Case are the 2 new form fields in Sales => Direct Delivery and Sales Order in your demo. Where is the batch Selection? The Invoice against Sales Delivery has a Batch button though. None of the Purchase links have any Batch feature.
Provide some sample data to experience the Batch details.
You can do away with the 0_cases table and keep the data as a comma delimited string in a setting in the 0_sys_prefs table.
The other extra tables used are 0_stock_batch, 0_stock_batch_moves.
The 0_stock_batch_moves table can be accommodated within the core 0_stock_moves table (possibly others above too) with some combination of innocuous values in unused fields of price, reference and standard_cost.
698 05/06/2020 03:52:56 pm
Re: Stock Check Sheet | Inventory Planning Reports has serious Bugs. (12 replies, posted in Reporting)
Try to scale down to PHP 5.6 or lower and see if it helps.
699 05/06/2020 03:47:01 pm
Re: HTMLentities for quote reversion (3 replies, posted in Report Bugs here)
No. the "quot" here is the htmlentity for a quote character in the characterset.
700 05/05/2020 03:35:21 pm
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
Enable the access role for the said feature under Setup=>Access Setup=> System Administrator (or any other user role) and tick the necessary feature and save. Logout and login again.