@joe: this needs to be corrected.
4,351 03/03/2015 07:36:59 pm
Re: Plug-in Tax Inquiry - Cash Basis reports incorrect input tax (11 replies, posted in Reporting)
4,352 03/03/2015 07:21:11 pm
Re: Batching Invoice against Sales Delivery (8 replies, posted in Accounts Receivable)
@joe: maybe we need to remember the ticks of the previous page in the session variables before going to the next page.
Try to increase the number of items to say 20 or more. Try changing line 207 in sales/inquiry/sales_deliveries_view.php:
$table =& new_db_pager('deliveries_tbl', $sql, $cols);
by hardcoding it to
$table =& new_db_pager('deliveries_tbl', $sql, $cols,,20);
The function new_db_pager() is defined in includes\db_pager.inc at line 482 with the following prototype:
function &new_db_pager($name, $sql, $coldef, $table = null, $key = null, $page_len = 0) {
If the default $page_len is left as zero (0), then the #_users.query_size field's value (default 10) is taken.
It can also be set in Setup => Display Setup (Preferences) => Query page size:
4,353 03/03/2015 07:04:02 pm
Re: Sales Summary Report extension (4 replies, posted in Wish List)
Get image post rights from @joe or upload it elsewhere and paste the link here.
The current age analysis tool can be modified to change the sort order to get what you want.
4,354 03/03/2015 03:00:58 pm
Re: Sales Invoice Print (1 replies, posted in Reporting)
For different Page Sizes in FA, refer this forum post besides the Wiki.
4,355 03/03/2015 02:45:57 pm
Re: Work Orders (7 replies, posted in Manufactoring)
@touchman: duplicate post here.
@joe: Where is the '#' label to press?
4,356 03/03/2015 02:40:48 pm
Re: Issuing additional items to WO (5 replies, posted in Manufactoring)
Lines 101 to 106 in manufacturing/work_order_issue.php are:
$failed_item = $_SESSION['issue_items']->check_qoh($_POST['Location'], $_POST['date_'], !$_POST['IssueType']);
if ($failed_item != -1)
{
display_error(_("The issue cannot be processed because it would cause negative inventory balance for marked items as of document date or later."));
return false;
}
Try to comment out the above lines and see how it proceeds.
@joe: any variable scope and visibility issues?
4,357 03/03/2015 02:33:53 pm
Re: Dimensions in Purchase Order (5 replies, posted in Dimensions)
@joe: Should the PO form include a Dimension field to get it's default from the Supplier and have it selected / changed by the user?
4,358 03/03/2015 02:17:30 pm
Re: Disable editing of Price before Tax on Direct Sales Invoice (1 replies, posted in FA Modifications)
When a Direct Invoice is made by your POS employees, if the price before tax is not editable, then the standard price will apply and the invoice can then not be edited. The account manager can make invoices with these values being editable before making the invoice but the manager would still not be able to edit these values in an invoice created by the POS employees as it would then affect other tables. Check out the User roles and access permissions for the POS employees envisaged.
@joe: There is no specific "Price Before Tax Edition" permission as of now and if it is wanted it needs to be hacked in - wanna do it?
4,359 03/03/2015 02:03:19 pm
Re: Same item with different sales tax (4 replies, posted in Items and Inventory)
@zunixaani: nice suggestion. A new topic would be better to post it in.
@joe: want to hack it in as a hardcoded subset of Direct Invoice?
4,360 03/03/2015 01:59:02 pm
Re: Sales Summary Report extension (4 replies, posted in Wish List)
Try to mock up a report image and post it or state what changes would you want to see in a similar report.
4,361 03/03/2015 01:56:07 pm
Re: 2.3 - Extensions. How ? (13 replies, posted in Modules Add-on's)
There is no official payroll extension in FA as yet. Where did you get the clone? If it is made for an older version of FA, you will have to adjust it for FA 2.3.x
4,362 03/03/2015 01:52:01 pm
Re: Batching Invoice against Sales Delivery (8 replies, posted in Accounts Receivable)
Create a batch Invoice. Refer the Wiki.
A batch invoice, a single invoice created from multiple work orders/deliveries, can be processed if all items have been sent to the same location. Click the check-box beside each delivery and click the Batch button at the top of the column to make such an invoice.
4,363 03/03/2015 01:49:15 pm
Re: Advanced and Assembly Manufacturing Different (1 replies, posted in Manufactoring)
The said wiki page is quite clear. The Simple Assembly is done in one shot and the Advanced Assembly is done in a sequential process with multiple entries for each step.
4,364 03/03/2015 01:33:46 pm
Re: change header in report ...!! (3 replies, posted in Reporting)
Copy the original reporting/includes/header2.inc to company/#/reporting/includes/header2.inc and edit the latter to suit your needs. Now place a copy of the reporting/rep112.php file (Print Receipts) into the company/#/reporting folder to have those reports alone use the new header2.inc.
4,366 03/03/2015 01:19:19 pm
Re: How to amend Purchase Order PDF (2 replies, posted in Accounts Payable)
Which version of FA are you on? Your "==" should be "!=".
Also $Addr2 will always be an array and be available and you are comparing an array to a scalar value.
Where do you get 'NA' for the value of $Addr2 ?
Lines 160 to 164 currently are:
// address2
$this->row = $temp;
$this->Text($mcol, $Addr2['name']);
$this->NewLine();
$this->TextWrapLines($mcol, $this->rightMargin - $mcol, $Addr2['address']);
and the change you probably you wanted is:
// address2
$this->row = $temp;
// Added by Steve to not print company name if N/A
if ($Addr2["name"] != "") {
$this->Text($mcol, $Addr2['name']);
$this->NewLine();
}
$this->TextWrapLines($mcol, $this->rightMargin - $mcol, $Addr2['address']);
4,367 03/03/2015 01:02:10 pm
Re: HR and Payroll Module (66 replies, posted in Modules Add-on's)
This rendering of the HR and Payroll is @Farhaj's closed source version he is trying to sell. Checkout the last known open source version cloned at GoogleCode.
4,368 03/03/2015 12:47:00 pm
Re: osCommerce Order and Customer Import Module (8 replies, posted in Modules Add-on's)
TYPE keyword is depreciated (since MySQL v5.0) and not supported in MySQLv5.5.
Replace TYPE=MyISAM with ENGINE=MyISAM
@Alan: nice catch
Get the amended file from the commit in my GitHub Repo.
4,369 02/26/2015 02:17:29 pm
Re: Import Items $mb_flag 'S' wrong (8 replies, posted in Modules Add-on's)
@tm: That's a fine way to tolerate old habits. Thanks. Committed in my GitHub Repo.
4,370 02/26/2015 10:47:29 am
Re: Setup for non VAT registered company (3 replies, posted in Setup)
First of all the UK Chart of Accounts is broken if taken from the official pkg repo. After installing it from there, just update the en_GB-general.sql file from my GitHub Repo. Just upload the said sql file overwriting the one in the sql folder and then create your UK company. Let your default company be created with the en_US-new.sql and your actual company be created with the new UK sql file.
When entering your items, just choose Tax Exempt for now. When you get to qualify for VAT, then change the settings to Tax in the items. All the old invoices will remain in their Non Tax state.
4,371 02/26/2015 10:37:57 am
Re: Import Items $mb_flag 'S' wrong (8 replies, posted in Modules Add-on's)
Committed the fix to the extension's files in my GitHub repo.
4,372 02/26/2015 05:48:28 am
Re: Permission denied (1 replies, posted in Items and Inventory)
Look at what broke in modifying the report - use a diff tool like say WinMerge - mostly syntax errors, missing variables/objects, missing arguments, scope, etc. Check the apache error logs and the FA error logs as well.
4,373 02/24/2015 06:47:05 pm
Re: 'Reverse transaction' option in Journal Entry is planned for removal (7 replies, posted in Announcements)
Yes, #_debtors_master table's pymt_discount field is only displayed in the Customer Payment Form in FA currently.
4,374 02/24/2015 06:38:15 pm
Re: Import Items $mb_flag 'S' wrong (8 replies, posted in Modules Add-on's)
There are quite a few placed where D is hard coded in the core and in the extension files.
A brief history of mb_flag changes:
2014-09-12: Removed redundant mb_flag 'A'.
2009-05-18: Added mb_flag 'M' in demand checks
2009-05-17: Removed obsolete 'K' mb_flag checks.
Extensions having mb_flag and referencing 'D' or 'S':
Extensions/api/sync_db.inc : Lines 393, 418, 1069, 1109, 1152 => D
Extensions/import_items/import_items.php : Line 246 => S
Extensions/import_items/readme.txt : Line 111, 163 => S
Core files having mb_flag and referencing 'D' or 'S':
includes/data_checks.inc : Line 333 => D
includes/manufacturing.inc : Line 27 => D
includes/db/inventory_db.inc : Line 114 => D
includes/ui/ui_lists.inc : Lines 915, 924 => D
manufacturing/work_order_add_finished.php : Line 139 => D
reporting/rep301.php : Line 113 => D
reporting/rep307.php : Line 40 => D
reporting/rep308.php : Line 70 => D
4,375 02/24/2015 12:19:12 pm
Topic: Purchasing Items - ERD in Wiki (0 replies, posted in Setup)
When trying to do an import of items, several tables are involved. To help understand the process, the Wiki now has the ERD for it and is attached herein as well.
The suppliers_uom is a plain text box in the FA Web UI and overrides the #_stock_master.units if present.