The question is, what can I do for this definition?.
I see that in GL configuration, but I have no idea when the account is affected or where.
Is useful? for what?

Hi, I need to know how to use Bank Account Charge.

Thank you.

Go to the Option "fiscal years" into "setup" main options.

29

(26 replies, posted in Reporting)

I think, into /includes/ui/ one file named like that.  In this add all functions to fix issues of deprecated functions or fix others.

And then, add include into /includes/ui.inc

30

(26 replies, posted in Reporting)

But, if parameter is a string?  is_array() is useful to stop that error condition.

fiscal_year

FA is a very easy and useful ERP, could you try to install and testing.  The only problem is the time you need to learn.

I think you need, attachments, bank_accounts, bank_trans, comments, dimensions, gl_trans and journal

34

(26 replies, posted in Reporting)

In my personal experiment, I added this function into ui_globals.inc

   function count_array($array){
        return (is_array($array)) ? count($array) : 0;
   }

and replace in all php files "count(" by "count_array("

At this moment, its working for me.

Let me know if my solution works for all.

35

(26 replies, posted in Reporting)

I checked it and not in all cases have to be made changes.

36

(26 replies, posted in Reporting)

I got a solution:

in reports_classes.inc change on line 40.

$class_id = count($this->ar_classes);
to
$class_id = is_array($this->ar_classes) ? count($this->ar_classes) : 0;

What do you think?

37

(26 replies, posted in Reporting)

I have this error when users access to report area, the error log said:

reports_classes.inc:40: count(): Parameter must be an array or an object that implements Countable

Anybody has an idea?

Thank you

Thank you for that tip, I already made the change.

39

(5 replies, posted in Report Bugs here)

This solution works fine!

That solution works fine!

@poncho1234 in 7.1.12 works fine, then the problem for me is PHP 7.2.11.  Deprecated functions maybe? or something else....  I don't know.

I have the error in errors.log, everything else works fine.

I already have a new installation, the problem persist.  What can I do? or, what see in FA?.

0::session.inc:432:[before upgrade] ini_set(): A session is active. You cannot change the session module's ini settings at this time

FA works fine, but that is the only issue.

I am using FA 243, Xampp under windows and PHP 7.2.11

Now works without errors!

Thank you...

Hi!

I have this error:

session.inc:455:[before upgrade] ini_set(): A session is active. You cannot change the session module's ini settings at this time

I tried differente solutions, but neither is useful.

Someone have an idea?

Thank you

Thank you so much!!!

Very useful.

When I try to create reports, I have the error

tcpdf.php:4707: The each() function is deprecated. This message will be suppressed on further calls

I tried to implement new versión of TCPDF, but I failed.  Someone have the same problem? or How I fix that.

Thanks.