The New Page shift should be done automatically, but maybe something needs to be adjusted in header2.inc.
Remember you are on your own here. We normally do not give support about changing FA.

/Joe

Hello Tom,

For understanding the year closure, I guess it is a good idea to talk to a local accountant.
You can do the final balancing yourself and if the balance type accounts are in balance FA will do no further operation.

But if you havent't balanced the balance type accounts, then FA will do these operations automatic for you. This is quite normal procedure for accounting systems to do that. The only requirements are that you have setup these accounts in the System and GL setup.

/Joe

FA is not supporting A5 size, but you add the following in pdf_report.inc line 98:

          case 'A5':
              // Portrait
                if ($orientation == 'P')
              {
                    $this->pageWidth=595;
                  $this->pageHeight=421;
                  if (!isset($margins))
                  {
                      $this->topMargin=40;
                      $this->bottomMargin=30;
                      $this->leftMargin=40;
                      $this->rightMargin=30;
                  }
              }
              // Landscape
              else
              {
                    $this->pageWidth=421;
                  $this->pageHeight=595;
                  if (!isset($margins))
                  {
                      $this->topMargin=30;
                      $this->bottomMargin=30;
                      $this->leftMargin=40;
                      $this->rightMargin=30;
                  }
              }
              break;

And then set this 'A5' size in all the coduments constructor. Look at rep107.php line 67:

        $rep = new FrontReport(_('INVOICE'), "InvoiceBulk", user_pagesize());

Change user_pagesize() to "A5"

I cannot garuantee that this is all you need to change. If you need more adjustment, you can look into /reporting/includes/heading2.inc.

/Joe

Let us see if we can trap some more details.
Please set the $go_debug flag in config.php to 1 . This should trap some more warnings/errors.

/Joe

2,730

(7 replies, posted in Wish List)

Ok, thanks elax. I will update the Wiki.

/Joe

If you look under Setup, Fiscal Year ( where the content is built as the menu strings ) you will find something at the very end.

/Joe

2,732

(29 replies, posted in Modules Add-on's)

omeng, I guess you have to import an SQL script that is maybe in the module Asset Register folder. Please look here and import the script file to your FA database.

/Joe

Hello tom,

The retained earnings is the accumulated earnings during the years. This is yours or the shareholders money and can be destributed to you or the shareholders. Then this account will be debited and some of the bank accounts will be credited.

Yes maybe we should improve the Wiki a bit here, although some information about this is already there.
Will you check that, tom?

/Joe

2,734

(7 replies, posted in Wish List)

As I recall, FA first checks if there are Branch emails (with the right contact type). If so it use this/these contacts, else FA search in the Customer contacts.
Janusz might correct me here, he wrote the one to many contacts.
And the wiki needs updating, phew! Maybe someone can help us with the update. We are out of resources sad.

/Joe

Set the $go_debug flag in config.php to 1 and see what is reporting when you make a backup.

/Joe

2,736

(7 replies, posted in Wish List)

You should be able to send to multiple email addresses by setting ujp more than one contacts. Remember to select the right type.
Also check that you use the Branch contact.

/Joe

2,737

(7 replies, posted in Setup)

The PayPal implementation is very simple. A PayPal link is put on the Sales Invoice. This is done by a selection when printing the Sales Invoice. If the customer do not have a PayPal account, they can pay be Credit/Debit Card.
You can then establish PayPal as a Bank Account in FrontAccounting. This way it is very easy to take the Bank Deposit.

I am not sure if this is what you want, Other implementations have to be written as a module.

/Joe

I am not familiar with the module Asset Type Entries.
But it seems that you must run an SQL script first. Look inside the /module and look for the asset type module. There may be an SQL script here.
With phpMyAdmin, try to import this script. Then I guess and hope you should be up and running.

/Joe

2,739

(4 replies, posted in Accounts Receivable)

No, there were no particular answers to this topic, but there were other answers to the topic. However you were on the right way of doing it.
Simply follow my suggestion in the first answer here.

/Joe

There is no Integration with shipping software, other than they can be setup insice FA. Please look at the demo how this works.

/Joe

2,741

(7 replies, posted in Setup)

You can use PayPal and AlertPay (AlertPay needs a one-line implementation).

/Joe

Go as admin into Setup tab, Access Level Setup and select the role you want and mark the various items.

/Joe

Your release is rather old. Maybe try to update to a newer release.

/Joe

2,744

(4 replies, posted in Accounts Receivable)

The easiest and most safe way if to make a Credit Note and instead of returning the items to stock, select Write Off items and select the Bad Debt account. This should do the job.

I guess you can make a search of 'Write Off'. There has been a similar topic made by you, Tom smile

/Joe

2,745

(6 replies, posted in Accounts Receivable)

Just click the row down again for editing. Now the description field is editable.

/Joe

The Inventory Planning Report, does not reflect the reorder level, but only starts to calculate:

SuggestedTopUpOrder = IdealStockHolding(3*M) - QOH + CustOrd - SuppOrd;
if (SuggestedTopUpOrder < 0.0)
    SuggestedTopUpOrder = 0.0;

/Joe

2,747

(1 replies, posted in Accounts Payable)

Please create and use Quick Entries for this. In the Supplier Invoice, GL Items you are responsible for entering the tax records yourself. Therefore it is easier to create a Quick Entry for these costs.

/Joe

2,748

(7 replies, posted in Installation)

Are you sure you are changing in the right php.ini file. In xamp you might get several apache installations. You should look for  the correct appache???? folder and the php.ini is in the bin cirectory.

Secondly if you are using the correct one, check that you have the php_openssl.dll installed too. It should be in the php -
php??? - ext folder, where ??? is the php version you are using.

Now you must be able to run smile

/Joe

2,749

(7 replies, posted in Installation)

Did you make a restart of your Apache Server??

/Joe

2,750

(2 replies, posted in Wish List)

This would require a new report, because the existing invoice is based on the debtor_trans record that is created when the invoice is saved.
If you don't like the print-out you can always edit the sales invoice in customer transactions. And print it again.

/Joe