3,051

(5 replies, posted in Items and Inventory)

You can use the direct invoice in the Purchasing. Even if the PO is created in the background, you don't have to use it.

/Joe

3,052

(3 replies, posted in Accounts Receivable)

You can change or add to  the item description by clicking the line down for editing again.

/Joe

3,053

(11 replies, posted in Manufactoring)

You could ask for some help in the Modules /Add-ons Forum.

/Joe

3,054

(3 replies, posted in Accounts Receivable)

Yes, it is. you just use the memo field below in the Invoice (Sales order) Form. This will be printed on the invoice after the item lines.

/Joe
BTW. You can also put a comment on the invoice inside the Print Out Centre. This will be printed in the footer.

3,055

(4 replies, posted in Dimensions)

If you put dimensions on Invoices (either by putting a dimension on a customer, or by chosing it during invoicing) you follow the sales / purchase for the dimension for this invoice. You can also put a dimension on an item, then it follows the item instead.

/Joe

3,056

(11 replies, posted in Manufactoring)

This is done just before these lines by calling the function work_order_quick_costs. This function begins on line 116 in file /manufacturing/includes/db/work_orders_quick_db.inc.

/Joe

3,057

(11 replies, posted in Manufactoring)

In function work_order_produce the bom costs are gathered in line  55.

    $m_cost = 0;
                   $result = get_bom($details["stock_id"]);

    while ($bom_item = db_fetch($result))
    {
        $standard_cost = get_standard_cost($bom_item['component']);
        $m_cost += ($bom_item['quantity'] * $standard_cost);
    }    

    // insert a +ve stock move for the item being manufactured
    // negative means "unproduce" or unassemble
    add_stock_move(ST_MANURECEIVE, $details["stock_id"], $id,
        $details["loc_code"], $date_, $ref, $quantity, $m_cost);
    // update wo quantity and close wo if requested
    work_order_update_finished_quantity($woid, $quantity, $close_wo);

/Joe

3,058

(11 replies, posted in Manufactoring)

Yes, it will require an extension.

/Joe

Hello Tom Moulton,

Will you have a look at this. I guess you wrote this module, right?

/Joe

If you need these items already during PO entry, please consider making them as service items. If these items varies in price, just set the price to 0 and enter the correct price when entering.

/Joe

We do not have the resources to help you further with your changes. You will have to laborate for yourself.

/Joe

Hello, you will have to change this in the /reporting/includes/header2.inc. This file contains routines for printing the layout of the documents.

/Joe

If you fill out the Billing Address on the Branch it will be printed in the Charge To area. If you leave this address empty it will use the address of the Customer.

/Joe

These changes will be overwritten everytime you get a new release of FA. Can't you just imagine that the Branches are Venues in your case. Maybe let the word Venue be part of the branch name or something.

/Joe

For this topic I guess you should consult a local Accountant.

/Joe

3,066

(11 replies, posted in Manufactoring)

I am not sure I can contribute with anything here. Maybe somone in the audience can. Let us hope.

/Joe

Please read about how to setup FA in the Wiki, https://frontaccounting.com/fawiki.
The tax setup and the fiscal year setup is explained here.

/Joe

3,068

(7 replies, posted in Banking and General Ledger)

You should be able to change the Account Group at any time inside GL Accounts form.

/Joe

3,069

(1 replies, posted in Accounts Receivable)

Please read about the tax system setup in the Wiki, frontaccounting.com/fawiki.

/Joe

3,070

(4 replies, posted in Reporting)

tom, please change the line 17 in /reporting/prn_redirect.php to:

global $page_security, $save_report_selections;

It was earlier only: global $page_security;

Then it should work.

/Joe

3,071

(4 replies, posted in Reporting)

Yes, it doesn't seem to work any more. I will consult Janusz. I think he has changed something here.

/Joe

You should only be able to add unique id's independent of categories. So I don't understand your question.

/Joe

3,073

(14 replies, posted in Setup)

No, you will have to first void the closure Journal Entry. Then you can do whatever you want and close again.

/Joe

You can preset the references during entrance of the document. Just set the value as you wish, however you must set a value greater than you already have used.
The references are automatically increased during further operations.
You can also have combined alphanumeric and numeric references, like SO001. Thes will increase next time to SO002 and so on.

You are not able to have alphanumeric id's. This is the reason for using references.

/Joe

If you want to make your own report with several dimensions, remember that the dimensions in the listboxes are sorted by reference, not id.
BTW, the dimensions in the debtor_trans table are not used and are there by mistake.

Joe