The 10th parameter comes from get_unit_cost($line->stock_id)
576 11/04/2020 08:39:19 pm
Re: Additional Argument in function call (1 replies, posted in Report Bugs here)
577 11/04/2020 08:30:07 pm
Re: Bills entry form is highly required. (3 replies, posted in FA Modifications)
Update the extension from the FA24extensions repo.
578 11/04/2020 08:27:57 pm
Re: Problem with installing on live server (1 replies, posted in Installation)
This error line is at line 255 in includes/session.inc.. It is likely that your PHP version may be to blame (even some minor version number change has it's anomalies). Looks like no user logged in may be a blank or null interpreted by the if check wrongly in the specific version. Also check permission of files and folders and writeable tmp folder.
579 10/31/2020 04:24:05 am
Re: Devel - SimpleAPI module UTF8 problem (6 replies, posted in Modules Add-on's)
It is possible that the Arabic abbreviation works in the FA UI but will need to be in English (IMHO) as it is a parameter to the appropriate function through the SlimAPI (probably the way it is implemented as there is no language/theme info in the API) and not a direct variable from a translatable form.
580 10/31/2020 04:19:21 am
Re: Bills entry form is highly required. (3 replies, posted in FA Modifications)
This is entered via "Quick Entries" since the actual expense account to be allocated to is different for different expenses.
However, you can also make a set of entries you wish to enter through the Import of Journal entries extension too.
581 10/20/2020 05:37:45 pm
Re: REP709.php TAX REPORT BUG (21 replies, posted in Reporting)
In your instance, the amounts were different across vouchers and appear multiple times, but such occurrence is due to the voucher number being same. There should be no linkage with amount as we can have the same amount legitimately in the same day for the same account too. Check on duplication in the reference: BKPMT-00010. Maybe if the taxes are different you might want to have different account numbers for each.
State which version / date of FA you are using. Please note that the file referred to was last changed on 2015-12-12 and no one has complained about it in the last few years.
582 10/20/2020 05:29:23 pm
Re: Devel - SimpleAPI module UTF8 problem (6 replies, posted in Modules Add-on's)
Currency abbreviation must be in English only.
583 10/17/2020 10:06:06 am
Re: erorr report Inventory Valuation (2 replies, posted in Reporting)
Possibly the report re-calculates it instead of taking the adjusted value. Make the adjustment with some dummy "receipt of inventory" and see what happens.
584 10/17/2020 10:03:34 am
Re: Back Date Entry (3 replies, posted in Setup)
Then just like @flpages says, close GL transactions each day. If Admin wants to allow it, then close later. This is the best way for now.
@rahmanbd: please do not post same issue in several topics.
585 10/17/2020 10:01:17 am
Re: Controlling the sales price process needs enhancements. (10 replies, posted in FA Modifications)
Backdate entry sys_prefs variable can work in unexpected ways like when time zone is taken into account. Editing any field in an invoice is fraught with foreign key issues. Best is not to allow any edition at all and allow deletion and make fresh entry or make credit/debit note entries and supplementary invoices for any differences envisaged. Accounting is serious business - no marks for a good try.
586 10/17/2020 09:57:17 am
Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes (54 replies, posted in Banking and General Ledger)
Use the memo / description field instead and make sure the initial prefix to the chq number like CHQ4564334 is used and then parse out all memo entries that start with CHQ and has the first word as say 10 characters long separated by a space of terminated therewith.
587 10/14/2020 04:35:42 pm
Re: Controlling the sales price process needs enhancements. (10 replies, posted in FA Modifications)
@joe: any sys_prefs flag to prevent selling below cost?
588 10/14/2020 03:38:52 pm
Re: Bank Account Payment Entry / gl/gl_bank.php?NewPayment=Yes (54 replies, posted in Banking and General Ledger)
Monies as journal entries are unallocatable. It can be allocatable only if passed on as credit/debit notes. Hence we keep the reference optional.
Check number can be done through it's own table in an extension or used passively in the memo field.
In FA 2.5 it might be a good feature to include and useful for reconciliation too. Formatted memo fields can be a good way to get the check number parsed out to link to some other table possibly through a trigger (editions beware).
589 10/14/2020 03:34:59 pm
Re: Controlling the sales price process needs enhancements. (10 replies, posted in FA Modifications)
Again, this is a "feature" to provide for freebies and encash obsolete stocks as well. Buy a cat for a million and get the house free!
590 10/13/2020 07:57:50 pm
Re: Controlling the sales price process needs enhancements. (10 replies, posted in FA Modifications)
This can be done only in the FA v2.5.
@joe: see where to place this min price / expression of a field.
591 10/13/2020 07:54:33 pm
Re: The sales personnel commission allocation process needs to be revised. (4 replies, posted in FA Modifications)
The way FA is currently setup is that the salesman is part of the cust_branch table and that dictates the inquiry and reports as well.
As FA v2.4.x has frozen the DB schema, we can make this new feature in FA 2.5 only or in the meanwhile, make an extension for it.
Alternatively, we can possibly keep the salesman in the cust_branch table as the default and keep a flag in the sys_prefs table for overriding it using the logged in user but what if the logged in user does not happen to be a salesman at all? Hence this filter too has to be applied before using the override - that the logged in user is a salesman indeed.
@joe: looks like in this way we can address this issue and modify the views/inquiries and reports to accommodate it as well.
592 10/12/2020 07:12:20 am
Re: The sales personnel commission allocation process needs to be revised. (4 replies, posted in FA Modifications)
The logic is that whoever keys in the transaction may not always be the real salesman.
Also, FA recognises the sales person as the one listed in the #_cust_branch table.
This is more of an account manager to whom a subset of customers are assigned.
If you want to change the salesperson, then see that the change is made in the said table.
593 10/12/2020 07:06:57 am
Re: Controlling the sales price process needs enhancements. (10 replies, posted in FA Modifications)
Fine indeed. This is so for those small businesses where the only owner wears all hats.
Change line 556 in sales/sales_order_entry.php:
display_warning(sprintf(_("Price %s is below Standard Cost %s"), $price, $std_cost));
to
display_warning(sprintf(_("Price %s is below Standard Cost"), $price));
594 10/12/2020 06:52:17 am
Re: PHP 7.4 bug (20 replies, posted in Report Bugs here)
The isession.inc error is because you have not installed the locale (Spanish and en_US in your case) in your Linux Mint. FA generally degrades to 'C' language only if you did not choose a valid (and possibly not installed) language.
Use mysql restore from backup sql file from the CLI.
595 10/10/2020 04:57:11 pm
Topic: Tally and other accounting software migration (1 replies, posted in FA Modifications)
CData is testing a beta ODBC driver for Tally C Structure data set that can easily be linked into MySQL for data migration across applications.
596 10/10/2020 04:47:36 pm
Re: Add db_prevoid hook for voiding bank transaction (5 replies, posted in Banking and General Ledger)
@joe: ??
597 10/10/2020 04:43:48 pm
Re: CHANGING THE WIDTH SIZE of "ITEM DESCRIPTION" (4 replies, posted in Accounts Receivable)
The Quantity and amount sizes of 15 are hardcoded in qty_cells() and amount_cells() functions in includes/ui/ui_input.inc and are visible in the rendered page source code attached.
The outer table is 80% of the browser width and the inner table 90% width of that table. The field's column cell widths dynamically expand but the actual input fields remain the same size.
Also refer:
https://www.tutorialrepublic.com/faq/how-to-expand-select-box-to-its-default-width-on-focus-using-css.php
598 10/06/2020 04:32:04 pm
Topic: Fixes for Inventory (0 replies, posted in Items and Inventory)
See if the attached fix is needed for inventory moves.
599 10/06/2020 04:27:24 pm
Re: Can I create customer with multi currency (5 replies, posted in Accounts Receivable)
Yes, that is the way to go for now since currency is on a per customer basis as of FA 2.4.8. Maybe, FA 2.5 can have currency per branch. There exists a default branch bank account but may mix up currencies and exchange rate computations if used for a single customer!
600 10/06/2020 04:23:20 pm
Re: CHANGING THE WIDTH SIZE of "ITEM DESCRIPTION" (4 replies, posted in Accounts Receivable)
Items & Inventory tab => Items => Item Description is quite big already - textarea.
If you mean Sales tab => Direct Invoice Entry, then the select box will automatically change size based on the theme you are using. There is very little leeway in the css file at:
themes/default/default.css Line 45 to 47:
select {
max-width: 230px;
}