That is the Cash / Petty Cash Account.
5,102 08/21/2014 07:00:35 pm
Re: Functions to prevent unwanted file types on file upload. (2 replies, posted in Modules Add-on's)
Are you referring to lines 674 to 685 in includes/ui/ui_input_inc.php :
function file_cells($label, $name, $id="")
{
if ($id != "")
$id = "id='$id'";
label_cells($label, "<input type='file' name='$name' $id />");
}
function file_row($label, $name, $id = "")
{
echo "<tr><td class='label'>$label</td>";
file_cells(null, $name, $id);
echo "</tr>\n";
}
If so, then an optional extra parameter (with any as default if omitted for backward compatibility) for various file type groups can be introduced to avoid any more functions.
5,103 08/21/2014 06:54:05 pm
Re: Cant add new items or edit items in inventory (2 replies, posted in Items and Inventory)
What platform are you on (windows/xampp, Linux/Debian/Apache, etc)?
Have you checked the file and folder permissions?
Have you looked for errors in your apache error log?
5,104 08/21/2014 06:48:14 pm
Re: Release 2.3.21 (15 replies, posted in Announcements)
Attached is the updated file set since the v2.3.21 release.
5,105 06/19/2014 12:27:16 pm
Re: Chart of Accounts+ Extensions+Themes - Could not open (13 replies, posted in Installation)
Joe -> does this need to make it to the core?
includes/archive.inc
5,106 06/19/2014 12:15:57 pm
Re: Unicenta (5 replies, posted in Modules Add-on's)
text cart extension in FA can do the import / export.
5,107 06/19/2014 12:11:24 pm
Re: Orange Triangle (23 replies, posted in Items and Inventory)
In the file includes/db/connect_db.inc inside the said function db_fetch_assoc ($result) precede the line:
return mysql_fetch_assoc($result);
with
if (is_bool($result) === true && $result === false) return false;
5,108 06/19/2014 12:02:05 pm
Re: URGENT HELP NEED when Issue a Tax Invoice for Delivery Note (1 replies, posted in Accounts Receivable)
Are you trying to invoice a service item (no inventory) as a normal item (inventory) without setting up stock quantity?
5,109 06/19/2014 12:00:17 pm
Re: Formating Front Account Invoice (7 replies, posted in Accounts Receivable)
You can either use the PDFCreator or such PDF driver to print from the screen to PDF or modify the appropriate reporting/repXXX.php file to do your bidding.
5,110 06/16/2014 04:51:53 am
Re: Securimage CAPTCHA Integration into FA (9 replies, posted in FA Modifications)
Upgrade to v2.3.21 and then modify the changes in the first post in this thread to suit the current version of the files that need to be changed.
The devs were expected to have made it into an extension by now.
5,111 06/16/2014 04:40:21 am
Re: I think my site got hacked... (5 replies, posted in Report Bugs here)
Also check the db user privileges for the database tables.
Modifying the sql backup and restoring it could have also done the trick.
Sorry you had to wait so long for your solution. It's nice that you have shared your solution despite the delayed response from the FA Forum users who are generally quite quick to assist. Welcome to the FA fraternity.
5,112 06/16/2014 04:18:02 am
Re: Manufacturing Process (Raw material to Finished Goods) (1 replies, posted in Manufactoring)
Wiki-ed it.
5,113 06/16/2014 04:15:02 am
Re: Reorder Level Notification in Detail Report (1 replies, posted in Reporting)
Such a modified report to be Inventory Item Reorder Level List is a candidate for the FA core.
5,114 06/16/2014 04:13:32 am
Re: Report designer (1 replies, posted in Wish List)
The said extension has some security issues listed in one of the posts in the forum I partook of and my version after some fixes is available at my Unofficial GitHub repo.
5,115 06/16/2014 04:11:38 am
Re: Simple Date Check (2 replies, posted in Wish List)
How it affects the audit trail and other tables need to be verified.
5,116 06/16/2014 04:09:44 am
Re: for my sales points & head office (1 replies, posted in Setup)
Creatively using FA as different "company" instances using the same db tables but only a subset as views named using a different prefixes may be an "involved" solution...... and suppressing the ability to add records of a master nature in user instances.
5,118 06/16/2014 04:01:30 am
Re: Must have add ons? (1 replies, posted in Modules Add-on's)
YMMV as some extensions are old and some need extra db privileges.
5,119 06/16/2014 04:00:19 am
Re: No exchange rate (40 replies, posted in Report Bugs here)
The exchange rates table is where you would need to manually put in such data but how would that be useful since you will not be entering any transactions for that period?
5,120 06/16/2014 03:58:00 am
Re: Release 2.1 - Recurrent Invoices. How to? (31 replies, posted in Accounts Receivable)
This needs to be addressed in the core!
5,121 06/16/2014 03:55:57 am
Re: Asset register extension doesn't add the fixed asset journal (2 replies, posted in Items and Inventory)
It will need the db user to have trigger and some other privileges as well I think.
5,122 06/16/2014 03:54:27 am
Re: Saudi Riyal exchange rate is not updating (2 replies, posted in Banking and General Ledger)
ECB does not have SAR:
http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml
5,123 06/16/2014 03:51:25 am
Re: Change invoice date (12 replies, posted in Banking and General Ledger)
Best is to make a single non-normalised table of all the transactions in an excel sheet like manner from the old program and then in FA use a subset of the data for the textcart extension and import them in!
If the excel sheet is standardized and and FA Import extension is made for it, that would be great!
5,124 06/16/2014 03:48:35 am
Re: Is there anyway to convert into the latest version (4 replies, posted in Setup)
If you wish to do it manually on a staged site, send me your existing version number and what extensions you are using and then provide a sql and web dump - pm me. Upgrade will not be straightforward and it s possible your data may get mangled. The config file too will need some new variables although the devs have taken good care to make it backward compatible.
5,125 06/16/2014 03:43:12 am
Re: Message hide (1 replies, posted in Wish List)
Any chance of hacking it into the core?