$problemTransaction needs to be defined before line 187 in the bank_transfer.php
26 01/10/2021 11:59:58 am
Topic: Undefined variable: problemTransaction after enter a bank transfer (1 replies, posted in Report Bugs here)
27 01/09/2021 12:07:24 pm
Topic: Call to undefined function count_array() (1 replies, posted in Report Bugs here)
After produce a work order, press Print the GL Journal Entries for this Work Order
It will fire an error : Unhandled exception [0]: Call to undefined function count_array() in .../pdf_report.inc at line 344
28 01/09/2021 10:24:48 am
Re: Rep 704 GL Account Transactions report shows html code on Person/Item (4 replies, posted in Report Bugs here)
To fix this issue replace line 175 of rep704.php with this code:
if($myrow["person_type_id"] == PT_WORKORDER)
$txt = '';
else
$txt = payment_person_name($myrow["person_type_id"], $myrow["person_id"], false);
29 01/08/2021 12:39:28 pm
Topic: Rep 704 GL Account Transactions report shows html code on Person/Item (4 replies, posted in Report Bugs here)
Steps to reaproduce this problem :
1. Add a cost to an Advance Manufacture work order, this process will create a journal entry
2. Open General Ledger report -> GL Account Transactions, this report will show html code in the Person/Item column for the created journal entry.
See this image
30 01/08/2021 08:07:42 am
Topic: wrong target focus in accruals.php (2 replies, posted in Report Bugs here)
line 55 of accruals.php should be
set_focus('amount');
31 12/26/2020 07:42:28 am
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
Hi @bradlanier
I guess @itronics is managing the official modules repository
We have to install the module manually (has been instructed in post #1 of this thread) until he update the repo.
32 12/18/2020 02:22:26 am
Re: Item Adjustments Note disable rounding of Unit Cost (11 replies, posted in Items and Inventory)
I confirm the rounding problem.
Fix: line 202 of item_adjustment_ui.inc should be
amount_cells(null, 'std_cost', null, null, null, $dec2);
The last passed variable should be $dec2 not $dec, $dec is for quantity decimal
33 12/17/2020 03:16:01 pm
Re: FA 2.4.9 Purchase Order pdf printout won't work. (5 replies, posted in Report Bugs here)
This problem occurs because duplication of function get_po() defined in po_db.inc and rep209.php.
@joe, can replace funtion get_po in po_db.inc by the one in rep209
34 11/30/2020 02:31:17 pm
Topic: Error selecting wrong customer branch when browser javascript is off (2 replies, posted in Report Bugs here)
There maybe some reasons that cause user browser javascript turned of then branch and customer can be wrong selected then process wrong data to database.
This check need to be added to function can_process() in sales_order_entry.php, customer_payments.php, credit_note_entry.php
if(!branch_in_foreign_table(get_post('customer_id'), get_post('branch_id'), 'cust_branch')) {
display_error(_("The selected branch is not a branch of the selected customer."));
set_focus('branch_id');
return false;
}
Note: in customer_payments.php 'branch_id' should be 'BranchID'
This error does not usually occurs but it would be critical when it does.
35 11/28/2020 12:58:19 pm
Re: Error: no supplier trans found for given params (4 replies, posted in Report Bugs here)
Acctually I already made my own solution for the problem by replace line 406 of allocation_cart.inc with this code:
elseif ($_SESSION['alloc']->person_type == PT_SUPPLIER && $_SESSION['alloc']->allocs[$counter]->type != ST_PURCHORDER)
But it will damage the solution of @itronics
A better solution in my opinion is to add a function called get_po() to po_db.inc like this
function get_po($order_no) {
$sql = "SELECT * FROM ".TB_PREF."purch_orders WHERE order_no = ".db_escape($order_no);
$result = db_query($sql);
return db_fetch($result);
}
Then add a check for purchase orders in the allocation table by replace line 407 of allocation_cart.inc by this code:
if ($_SESSION['alloc']->allocs[$counter]->type == ST_PURCHORDER)
$trans = get_po($_SESSION['alloc']->allocs[$counter]->type_no);
else
$trans = get_supp_trans($_SESSION['alloc']->allocs[$counter]->type_no, $_SESSION['alloc']->allocs[$counter]->type);
36 11/27/2020 02:54:34 pm
Topic: Error: no supplier trans found for given params (4 replies, posted in Report Bugs here)
This commit has made the error on Payment to Supplier process
Function get_supp_trans() at line 407 of allocation_cart.inc will fire the error when allocation table has a purchase order
37 11/03/2020 11:58:35 am
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
Hi @notrinos
You need to take a look at Employee Payment Entry when allocating a Loan (Employee Advance) amount. Its not generating the correct Total Amount for This Allocation.
Its somehow messy. Also is there a plan for an inquiry screen or report for loans (Advances).? It will be nice to have.
Hi @rafat
The Employee Loan Allocating issue has been fixed and can be seen here
The report of loans will be processed later
Thank you
38 11/03/2020 10:48:03 am
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
Hi @mfonnix you may have installed the incorrect source code, please read post #1 in this thread to know how to install the correct one.
39 10/20/2020 06:55:09 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?
This problem has been fixed and can be downloaded here
Thank you @boxygen
40 09/01/2020 03:13:39 am
Re: Cannot Add Employee in HRM Module (9 replies, posted in Modules Add-on's)
Hi Niyaz, please read post #1 in this thread to get fix for your problem: https://frontaccounting.com/punbb/viewtopic.php?id=6860
41 09/01/2020 03:11:37 am
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
Hello @minmaxfamily
Read post #1 in this topic to get fix for your problem
42 08/12/2020 04:53:44 pm
Re: Modularizing the Dashboard (82 replies, posted in FA Modifications)
Hello Guys,
I have plans about incorporating a new class.graphic.inc in release 2.5 core.
I have already made a local version for looking at now by replacing the old class.graphic.inc with a new one, which is a wrapper around the Open Source chart.js. This chart.js is a very famous and qualified script to go for.The file, dashboard.php in the admin folder has been slightly changed to this new one.
The dashboard.inc file in the includes folder is replaced with a new and adequate file.
My plans are further to make a Dashboard Setup in the Setup section. This is for setting a lot of parameters for
the dashboard.
At the same time my plans are to let dashboard.php check if there is a dashboard.inc file in the theme folder, if so this will be included instead of the core one.Included in this look at version are the new Dimension booking on Balance Accounts.
You can have a look at this local version at the following URL:
http://frontaccounting.co.uk/fa248 .
User: admin
Pass: 98765This version will only be available a week or so.
Joe
Awsome @joe
On this basis we can generate countless charts for unlimited number of different statistical needs
43 08/02/2020 05:10:29 pm
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
Hi, thank you @boxygen
I have given you access role to commit to the module source code.
I think this is the best way to honor the contributions.
Thank you so much
44 07/27/2020 07:33:29 am
Re: Modularizing the Dashboard (82 replies, posted in FA Modifications)
@joe
I chose chartis.js because I though it was an early stage project and easy to understand and develop later.
But chart.js is awsome.
Thank you
45 05/12/2020 01:25:10 am
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
Hello @cedricktshiyoyo
I have tested in 2.4.7 without the problem, job position was created normally.
Can you describe the problem in more detail? Did any error message appear?
Or try set $go_debug = 2 in config.php to see if any error message shows up?
46 05/10/2020 01:57:52 am
Re: Payroll & Human Resource Management. (216 replies, posted in Modules Add-on's)
I updated the post #1 with an Installation Guide.
Those who encountered installation issues or the module doesn't work can found solution.
Thank you for your feedback.
47 03/12/2020 06:54:05 am
Re: Print Statements (rep_108) Date (3 replies, posted in Reporting)
This occurs when php date and mysql date are not the same.
You can add this code right below line 127 of rep108.php to make the report get the php date instead of mysql date:
$rep->formData['document_date'] = date2sql(Today());
Or somehow synchronize php date and mysql date in the data manipulation functions.
48 01/16/2020 05:05:05 pm
Re: Purchase Order Report rep209 (6 replies, posted in Reporting)
Hello @apmuthu these reports do not have this problem.
These constructs are not uniform due to our lack of a codding standard.
A few sql queries return value outside of database and others don't
49 01/14/2020 05:13:05 pm
Re: Purchase Order Report rep209 (6 replies, posted in Reporting)
Hello rafat, code block from line 179 to 182 should be replaced with only one line:
$tax_type_name = $tax_item['tax_type_name'];
Since the function get_tax_group_rates() in tax_group_db.inc has already check the suppress_tax_rates status so dont need to check again.
See the difference in the attached below
50 12/19/2019 10:38:08 am
Re: Modularizing the Dashboard (82 replies, posted in FA Modifications)
I no longer keep that code, can anyone have it upload here ?