Please upgrade to v2.3.21 (preferably the latest HG/Git version) so that any changes you make will be easily comparable and testable for inclusion into the current codebase.

Joe/Janusz - if FA on mobile is readonly, please state it in the feature list.

5,027

(3 replies, posted in Report Bugs here)

Wiki-ed it.

Wiki-ed.

5,029

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

Your site has been placed in the FA Wiki.
We appreciate your valuable effort towards making FA more understandable and hence improving it's usage.

5,030

(7 replies, posted in Manufactoring)

Just mark any wastage in resources using a flag in the table that automatically gets added to the work order without any arbitrary % increase in the initial WO. Such wastage would be needed to be incorporated even in jewellery industries and possibly accommodate unaccounted / not accounted  / adjusted resources / organized embezzlement as well.

Tags might come in handy for wastage that need to be attributed to a particular WO.

The POS in FA is best suited for light operations (per operative) in a retail environment.

Forum member @elax has his POS connector usable with major POS vendors.

Changing the Cash sales screen by implementing it in another tab without disturbing the existing codebase as @riaz stated would be fine as well.

Using an entirely different application like MySeat and then tying it into FA for the accounting would be another alternative.

5,032

(3 replies, posted in Installation)

If you had changed the password during the first login, then the second login may suffer from the browser cache. Just clear the browser cache and close all instances of the browser and then try to login afresh and see. Which browser are you using?

Wow @Garrapato! Way to go!

You might consider forking my Unofficial GitHub Repo (or the Official Git Mirror and adding the extension files) and then adding your extensions to it providing me a pull request so that we can have it propagated to all the forks.

You might also want to write an Article (or extend an existing one) in the FA Wiki.

Create a user to man each POS or use textcart extension to batch import POS transactions into FA with the appropriate Dimension code.

5,035

(4 replies, posted in FA Modifications)

Is the URL different from your wrapper github repo?

5,036

(6 replies, posted in Setup)

Your web/mail hosting provider will have a control panel where you can choose to create a multiple recipient alias with any restrictions of use (relay from IP, etc).

Build it as an extension with it's own table with a 1:1 relationship with the user table. This way when FA changes, your change will not be affected.

5,038

(6 replies, posted in Report Bugs here)

Try SumatraPDF reader.

5,039

(4 replies, posted in FA Modifications)

Included it in the wiki

Unless you post the code in it's entirety, we cannot debug phantom entities.

Thankyou @carmelr for the archived link. Wonder why that fine page was removed?
Attached is the screenshot in case the archive is either not accessible or entirely removed under any oblique reasoning.

More than monetary donations, your code contributions and shared experiences in serving out FA would be really valuable.

If you see the SQL statement possibly wrapped in a function, you will find the tables involved. In one of the tables you can identify the invoice number and from there you can look at the tax relation and then trace the field that has an incidence of tax and those that do not - it will be a flag field or a tax type definition. Use that in the where clause and you're done. The field will generally have to be linked to a item tax table that matches the customer and hence the item-customer-tax-taxtype combine.

If such functionality is not used often, then a kludge like:

phpMyEdit,
grocerycrud,
jqueryeasycrud,
ajaxcrud, 
Adminer

and other such CRUD apps can be used where phpMyAdmin might be overkill.

Copy over the report twice and edit the sql statements with the appropriate filter in each and rename them with some report number that is unique and put it into the company/#/reporting folder.

If kv_ is the TBPREFIX then it it is redundant. If it is a custom table, then check what condition makes it a specific record tied in with the $_POST variables from the login form. Also see if the scope and visibilityof the variables used is correct. Which file are you putting this code in?

Is there no change in the items_trans_db.inc file or should the patched one in the earlier post be used?

This was probably affecting just PHP 5.3.5 version as per the bug report. Let's leave this out for now but keep this in mind if it crops up later.

5,048

(6 replies, posted in Setup)

A temporary workaround will be to create a multi recepient alias email address and use it.

There is no logout link in your theme.

X_stock_master.actual_cost field is used only in line 211 in includes/ui/items_cart.inc:

        if ($standard_cost == null)
            $this->standard_cost = $item_row["actual_cost"];
        else
            $this->standard_cost = $standard_cost;

This usage is only as a fallback value. At all other places, only last_cost field in the same table is used .

Where does this field actual_cost get populated from? It is not present in any of the extension files as well.