No, I am afrait not. Maybe a candidate for a module.
/Joe
It's much more fun, when you can discuss your problems with others...
You are not logged in. Please login or register.
FrontAccounting forum → Posts by joe
No, I am afrait not. Maybe a candidate for a module.
/Joe
You are NOT seeing the Purchase Order entry here, but the delivery item(s). Please login as an admin and lookup the delivery already done and if you haven't invoiced it yet, then remove it.
This is the reason for not allowing you to delete it. You must either invoice the delivery or remove it, before you can delete the PO.
/Joe
You can't as long as there are partly deliveries. You can remove the deliveries in the Supplier Invoice on the right hand side of purchasing tab. But you must be logged in as admin for doing this.
After that you should be able to delete the Purchase Order.
/Joe
You can only void a delivery note that haven't yet been invoiced.
If you void a sales invoice, the underlying documents are voided too if the documents are not having auto reference (Direct Invoice/delivery). Otherwise the underlying documents are still there and can be invoices again. If you want to void these too, you must select them in the void transaction.
Try to test this for yourself on a Training Co or a demo.
/Joe
3. A credit note will work. Also 1. voiding will work too.
But you can also consider a Customer Payment discount when paying.
/Joe
These errors are eliminated after fix of Global GetText instead of session Gettext.
Fixed in 2.3.10.
Pleasereport back, brlib, if the problem is still there.
/Joe
Please make a forum search about this topic. There are several answers to the question.
/Joe
Yes you should treat the members as customer / branches. and the Invoices as billing. If you need to change the documents layout, please make a forum search about that. There are several topics about that.
/Joe
Please have a look at Recurrent Invoices. I think you can create groups to put on your customer branches /members.
If you can then this is a peach of cake to send out your recurrent invoices.
/Joe
Please see if you can use Template orders/invoices for this.
Alternatively you can check if Sales Kits can be used.
/Joe
You decide how things should start. Please either try it out on the Training Co. or the demo company.
But if you start with SO-000001 the next will be SO-000002 and so on.
/Joe
When you crated the new company you were able to enter an admin password. Use this password to login to your new company and on the Setup tab, User accounts setup and add new users.
If you have lost your admin password on the new company, then use phpMyAdmin and copy the admin password from the demo user to the new company. You can later change this password if you want.
/Joe
You cannot create a cash invoice without having it paid.
/Joe
You can do the correction in Journal Entries. Just figure out how much is gone into the wrong account and then debit the wrong account and credit the correct account. And remember to fix the right accounts on the items.
/Joe
Please talk to a local accountant. He can better tell you how things are bound together. Or better, go to a bookkeeping course. There are some on the web too. On the Feeds page on our website there are links to at least one.
/Joe
No, this is not possible. It will require a special kind of extension / module. I don't think there is an available module at present.
/Joe
Due to a bug in sprintf replacing the if statement solves the problem:
if ($dec > 0)
{
$divisor = pow(10, $dec);
$frac = round2($amount - floor($amount), $dec) * $divisor;
$frac = sprintf("%0{$dec}d", round2($frac, 0));
$and = _("and");
$frac = " $and $frac/$divisor";
}The HG repository will be updated.
/Joe
Thanks for this patch. But for the amount of 845.14 your algorithm prints Eight hundred and Fourty_five and 13/100.
With the old algorithm it was printed ok. So we will have to improve the algorithm a bit.
/Joe
Your tax registration date will set the date where you start taxing your customers. You just prepare the new tax type and group and put them on your customers/branches.
There is no retroactive taxing. Otherwise it is a good idea to discuss this with a local accountant.
/Joe
No, I am afraid not. But you could create a custom balance sheet that eliminate certain accounts.
/Joe
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
Ok, thanks elax. I will update the Wiki.
/Joe
FrontAccounting forum → Posts by joe
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 4 official extensions. Copyright © 2003–2009 PunBB.