I have a sms plugin for FA. You can send forum email to me if needed .
127 11/01/2020 07:31:47 pm
Topic: Additional Argument in function call (1 replies, posted in Report Bugs here)
in purchasing_db.inc on line # 200 the 10th argument true is extra I think
128 09/22/2020 03:19:43 am
Re: direct invoice Dimension (1 replies, posted in FA Modifications)
That needs customization in sales_order_entry.php
129 09/13/2020 04:18:35 am
Re: How can I edit a supplier payment? (2 replies, posted in Accounts Payable)
check this post https://frontaccounting.com/punbb/viewtopic.php?id=7652
130 09/09/2020 08:02:22 am
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
I am unable to void a PaySlip. Is there any way or I am missing something. PaySlip Creates a Journal Entry that can be voided but the PaySlip itself can't be voided.
131 09/07/2020 07:34:59 am
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
I have a comment. I defined the Salary Structure for Each Employee. That sturcuture has a Basic Salary, Conveyance amount, House Allowance etc.
While calculating the Payslip the employee had 62 Leave hours.
The system is deducting the amount against these leave hours on whole amount. But it should be only applied to Basic Salary Amount.
Here is the Screen Shot.
My point is am I correct or system is correct?
132 09/01/2020 07:38:56 pm
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
@minmaxfamily please open debug mode and then share the screen shot
133 08/26/2020 05:59:23 pm
Re: How to record opening balance in first setup. (5 replies, posted in Banking and General Ledger)
As I said earlier its the accountants way to handle this. No predefined formula. Yes you may provided you can justify it.
134 08/26/2020 11:47:28 am
Re: How to record opening balance in first setup. (5 replies, posted in Banking and General Ledger)
This is a pure accounting adjustment and every accountant has his own taste.
What I do is that I have created an account named "Openging Balance" in Owners Equity Group.
After adding all entries of Assets and Liabilities either in Debit or Credit I put the the Balancing Figure in the above account.
135 08/26/2020 03:11:16 am
Re: I'm now creating new theme for FA (7 replies, posted in FA Modifications)
@trainer2008, you can use modules hooks.php to call the module's sales_order_entry.php instead of core file from the Navigation of your theme.
Here is the little snippet of the code
function install_options($app) {
global $path_to_root;
switch($app->id) {
case 'orders':
$app->modules[0]->lappfunctions[3] = new app_function(_('Water In&voice'),'modules/water_invoice/sales_order_entry.php?NewInvoice=0','SA_OPEN',MENU_TRANSACTION);
$app->modules[1]->lappfunctions[2] = new app_function(_('Customer Transaction Inquiry'),'modules/water_invoice/inquiry/customer_inquiry.php?','SA_OPEN',MENU_INQUIRY);
$app->modules[2]->lappfunctions[0] = new app_function(_('Add and Manage Customers'),'modules/water_invoice/customers.php?','SA_OPEN',MENU_ENTRY);136 08/26/2020 03:06:19 am
Re: Consultancy Arrangement (3 replies, posted in Jobs wanted/offered, non-free offers)
Hello @ccmacachor, I am working as a FA consultant for more than 70 clients in my country. I have my own server and slightly modified FA version to fit in the needs of my clients. If you need my support please contact me via Forum Email.
137 08/26/2020 03:01:43 am
Re: Installment Sales with Payment Schedule and Reporting. (4 replies, posted in Accounts Receivable)
@siddiquinoor I have that extension that may need some modifications to fit in your needs. Please Contact me via Forum Email
138 08/26/2020 02:55:23 am
Re: Rep702 List of Journal Entries (3 replies, posted in Reporting)
You can change FontSize at Line # 64
$rep = new FrontReport(_('List of Journal Entries'), "JournalEntries", user_pagesize(), 8, $orientation);139 08/19/2020 09:24:05 pm
Re: Cannot Add Employee in HRM Module (9 replies, posted in Modules Add-on's)
in config.php set
$go_debug = 2;
140 08/18/2020 08:03:44 am
Re: Cannot Add Employee in HRM Module (9 replies, posted in Modules Add-on's)
Set the debug mode to On and then try again and see the error logs. Share those Logs here.
141 08/13/2020 09:08:38 am
Re: Modularizing the Dashboard (82 replies, posted in FA Modifications)
Great @joe, does this covers the custom dashboards through modules?
142 08/09/2020 03:53:18 am
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
@notrinos, the Employee Transaction Inquiry has a bug. Once you Select any one Employee, the Transactions related to Employee Advance is not shown. I tried a lot of ways but in vain. The SQL Query is too complex
Can anyone help out in this?
143 08/06/2020 08:06:04 am
Re: Multiple company access (13 replies, posted in Setup)
Thats not possible currently in FA. you may need some modifications to achieve this but not recommended because it will hit the current $_SESSION settings.
144 08/06/2020 02:36:39 am
Re: Clarification on Fiscal Year and Closing GL Transactions (4 replies, posted in Banking and General Ledger)
@jcnew the Closing Journal Entries are not done automatically. You need to close your Profit and Loss Accounts manually to shift them to Retained Earnings.
When you close a Fiscal Year then FA ensures that all previous fiscal years are also closed.
Closing a Fiscal Year also sets the sys_pref variable gl_closing_date to the Fiscal Year's ending date.
But if you want to set the 'gl_closing_date' during the fiscal year i.e. after one quarter you can use Closing GL Transactions page for this purpose to restrict gl transactions before that date.
145 08/06/2020 02:15:44 am
Re: Multiple company access (13 replies, posted in Setup)
In Multiple Companies add same user say admin and same password say bangladesh
Now on login screen you just need to select the company from Drop Down.
146 08/04/2020 06:34:07 pm
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
Finally the above bug is fixed and and committed Here
147 08/04/2020 11:57:25 am
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
Ok I got the reason for the issue mentioned in Post # 174.
The function in_ajax() is returning false in pdf_report.inc in function End() that is why $Ajax->redirect($fname) is not being called.
I added on emp_inquiry.php below code to activate Ajax.
$Ajax->activate('trans_tbl');
$sql = get_sql_for_payslips(get_post('Ref'), get_post('Memo'), get_post('FromDate'), get_post('ToDate'), get_post('DeptId'), get_post('EmpId'), check_value('OnlyUnpaid'));but it didn't worked.
Any clue how to activate Ajax on this page.
148 08/02/2020 05:51:50 pm
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
This is a great honor for me. Thanks
149 08/02/2020 11:57:11 am
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
I am getting this error in Print Payslip
150 08/02/2020 11:56:04 am
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
I have a suggestion.
In the function generate_gl_items() in payslip_ui.inc we have some calculations based on $salary_amount/$Work_days.
We shall enclosed such calculations with round(X, 2) function. Otherwise it is likely to have the error
display_error(_('The journal must balance (debits equal to credits) before it can be processed.'));I got this error and fixed by applying round function.
