Skip to forum content
FrontAccounting forum
It's much more fun, when you can discuss your problems with others...
You are not logged in. Please login or register.
Active topics Unanswered topics
Search options (Page 64 of 247)
Topics by apmuthu User defined search
Posts found: 1,576 to 1,600 of 6,167
Reimbursements can be treated as cash advances to original purchasers and then a payment allocation and settlement to them. Otherwise, a normal cash purchase can be entered and cash given as reimbursement and recorded in the memo accordingly. The latter will not track supplier.
When one Vendor's payment needs to go to another vendor upon suitable authorisation, it is best to create a credit/debit note pair for each vendor and then make the allocation as normally done.
This happens when there are no transactions in function get_customer_trans_version() in sales/includes/db/cust_trans_db.inc. The construct at lines 37-43:
$sql= 'SELECT trans_no, version FROM '.TB_PREF. 'debtor_trans
WHERE type='.db_escape($type).' AND (';
foreach ($trans_no as $key=>$trans)
$trans_no[$key] = 'trans_no='.db_escape($trans_no[$key]);
$sql .= implode(' OR ', $trans_no) . ')';
can be modified to be
$sql= 'SELECT trans_no, version FROM '.TB_PREF. 'debtor_trans
WHERE type='.db_escape($type).' AND trans_no IN ('.implode(',', db_escape($trans_no)).')';
This can be implemented in FA 2.4 itself as it only affects one small index. FA 2.5 is certainly years away and such important db changes should not be delayed. Remember how long FA 2.4 was in the making.....
The code changes however, are independent of the index.
Thanks. Their free plan provides for:
Currency values are refreshed every 60 minutes.
Maximum of 100 requests/hr & 2 query conversions per request
Please search and read the forum before asking.
Dashboard is integrated into FA 2.4.x. If your theme is Dashboard enabled, then it can have it's permissions / roles activated for it and does not require the Dashboard theme / extension at all in FA 2.4.4.
FA is multi tenant. You can choose to hos each company in a separate database or use different table prefixes and place them in the same table. Each "tenant" is then chosen in the login screen. The FA code is just a single instance but each company has it's own folder for it's data files.
If you create User A in both companies with same / different passwords, FA will accept that as well, since the users table is different for each company (with either different table prefixes in the same database oand/or different databases).
The tree structure actually exists in FA only that it appears flat in a table. With the sub-ledger concept, the parent-child relationship exists but not used by most. Drill Down is also available in FA. You can write a script to read the chart of accounts and display it as a tree for your understanding as an extension if you want.
The following service providers support XCD:
Oanda
mataf.net
CoinMill.com
XE.com
GoodReturns.in
Maybe we should use a plugin system for Exchange rates.
A suggested mod may be in order in the meanwhile.
If you use the sql/en_US-new.sql as your Chart of Accounts it will be without the dummy data.
Then, don't forget to logout and login again.
@joe: should a flag be used or should it simulate the old functionality with the inclusion of the said code?
This is clearly a FA user and company instance. The login system uses the company name from the $db_connections array in config_db.php file. The login user and password come from the appropriate database's users table.
If you need to implement it this way, then the following should suffice as $qoh=0 for the first computation:
if ($qty > 0 && ($qoh != -$qty)) {
if($qoh == 0 && $avg_cost != 0)
$avg_cost = ($avg_cost + ($unit_cost*$qty_new)/$qty)/2;
else
$avg_cost = ($avg_cost*($qoh+$qty_delayed)+$unit_cost*$qty_new)/($qoh+$qty);
}
Hope the first computation too will remain a weighted average cost.
@joe: Please verify and include if okay. Why was this done in the first place - was it the remnant of some debug coding? Or must there be a flag to suppress zero entries?
@joe: is this the desired design outcome?
The last version of CMS archived home page is of v12.1 / 2009. They still state that they are a Microsoft Silver Partner and the DB may still be MS SQL Server.
You may want to use the SlimAPI as a REST client to push batch info into FA.
The version of the REST API tested for FA 2.4.x is here.
Is there any other js / ajax / php check for such duplicates in the Customer Short Name scripts that needs to be put in for the Supplier scripts as well apart from the unique key?
Whilst the Denali version uses the MS SQL server, what database does the legacy version use?
Could not trace the old legacy version to study it.
You can run VMWare Player in your Win7+ workstations and run WinXP in a Virtual Machine in it where your legacy CMS client can run. That way, you will not need to change the software and the way you run your business.
Have you setup your Chart of Accounts in FA and tailored it to suit your existing one in the legacy CMS?
You will need to use the latest FA v2.4.4+ Git Master as it sorts out quite a bit of issues.
Perform one batch of one type of transaction with just one transaction in it and compare the before and after backups of the sql - you can then figure out how to frame the SQL statements to import a full batch.
Can be done purely as SQL statements in order without any user intervention - bash/sql/cron - at specific times.
WHat is the legacy accounting used?
Do the legacy accounting program and FA reside on the same machine?
Committed.
Kindly verify if the functionality is okay.
Posts found: 1,576 to 1,600 of 6,167