Wiki-ed.
5,051 09/18/2014 02:03:42 am
Re: Delivery date is a day before invoice date (7 replies, posted in Accounts Receivable)
5,052 09/18/2014 02:00:23 am
Re: Extension Development Tutorials (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,053 09/18/2014 01:48:55 am
Re: In process rejection (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.
5,054 09/18/2014 01:42:30 am
Re: FrontAccounting implement as Restaurant Management system (2 replies, posted in Installation)
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,055 09/18/2014 01:38:14 am
Re: Can't log in again after first logout (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?
5,056 09/18/2014 01:32:21 am
Re: Release 2.3 - Creating Extensions and Modules. How to? (16 replies, posted in Modules Add-on's)
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.
5,057 09/10/2014 01:23:29 pm
Re: Setting Up Headoffice, and two branch offices on FA (5 replies, posted in Setup)
Create a user to man each POS or use textcart extension to batch import POS transactions into FA with the appropriate Dimension code.
5,058 09/10/2014 01:21:42 pm
Re: End to End Tests (4 replies, posted in FA Modifications)
Is the URL different from your wrapper github repo?
5,059 09/10/2014 01:19:53 pm
Re: Multiple emails (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).
5,060 09/10/2014 01:18:34 pm
Re: Restricted Login Access and Limit to access in on Office hours. (4 replies, posted in FA Modifications)
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,061 09/10/2014 03:27:27 am
Re: PDF report printing (6 replies, posted in Report Bugs here)
Try SumatraPDF reader.
5,062 09/10/2014 03:25:37 am
Re: End to End Tests (4 replies, posted in FA Modifications)
Included it in the wiki
5,063 09/10/2014 03:12:06 am
Re: Problem in Database information retrieval. (6 replies, posted in Report Bugs here)
Unless you post the code in it's entirety, we cannot debug phantom entities.
5,064 09/10/2014 03:08:02 am
Re: Anyone tried Clever Accounting based on FA? (5 replies, posted in Installation)
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.
5,065 09/08/2014 06:44:12 am
Re: Modify Customer Balances Report to become Taxed and Non-Taxed (6 replies, posted in FA Modifications)
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.
5,066 09/08/2014 05:37:32 am
Re: Better UI for customer management (mockup inside) (11 replies, posted in Wish List)
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.
5,067 09/08/2014 05:32:40 am
Re: Modify Customer Balances Report to become Taxed and Non-Taxed (6 replies, posted in FA Modifications)
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.
5,068 09/08/2014 05:29:00 am
Re: Problem in Database information retrieval. (6 replies, posted in Report Bugs here)
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?
5,069 09/06/2014 09:06:02 pm
Re: Error in inventory valuation report (45 replies, posted in Report Bugs here)
Is there no change in the items_trans_db.inc file or should the patched one in the earlier post be used?
5,070 09/06/2014 09:03:45 pm
Re: install COA, Language and extension frontaccounting in ubuntu 14.04 (3 replies, posted in Setup)
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,071 09/06/2014 11:08:06 am
Re: Multiple emails (6 replies, posted in Setup)
A temporary workaround will be to create a multi recepient alias email address and use it.
5,072 09/05/2014 07:02:34 pm
Re: Project and Cost Estimation Module (8 replies, posted in Modules Add-on's)
There is no logout link in your theme.
5,073 09/05/2014 06:54:50 pm
Topic: Purpose of actual_cost field in stock_master table (0 replies, posted in Items and Inventory)
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.
5,074 09/05/2014 06:40:13 pm
Topic: systypes.inc error? (1 replies, posted in Report Bugs here)
Is there something wrong in Line 34 of includes/systypes.inc ?
$sql = "SELECT max(last_no) last_no FROM ($sql1 UNION $sql2) a";Should it not be (inserted AS):
$sql = "SELECT max(last_no) AS last_no FROM ($sql1 UNION $sql2) a";5,075 09/05/2014 06:26:34 pm
Topic: mb_flag values (1 replies, posted in Manufactoring)
Line 164 of includes/db/manufacturing_db.inc refers to the X_stock_master.mb_flag - char(1) field with a value of 'A'.
The file includes/manufacturing.inc refers to mb_flag values M, B and D only.
How and where does this affect FA and if so which do we fix?
