Turn debug to 2 in config.php and execute the transaction and post the results.

77

(8 replies, posted in Manufacturing)

@joe: Should we allow 0 qty items in BOM to exist?

78

(8 replies, posted in Manufacturing)

The basic FA has just 80 tables.
Make a fresh install of latest FA and manually import differences taking care to adjust the Primary Key and it's references.
Then copy over the relevant images/files renaming them for ID related differences in the new dispensation.

79

(8 replies, posted in Installation)

The said function is a built-in one:
https://www.php.net/manual/en/function.imageftbbox.php

80

(8 replies, posted in Manufacturing)

It is possible that many IDs may be missing due to deletion but the AUTO_INCREMENT value may have advanced.

81

(8 replies, posted in Manufacturing)

The file manufacturing/includes/db/work_order_requirements_db.inc has the offending code at lines 66-*74:

function update_wo_requirement_issued($id, $quantity, $cost)
{
    $sql = "UPDATE ".TB_PREF."wo_requirements SET 
                unit_cost = (units_issued*unit_cost+".$quantity*$cost.")/(units_issued+".$quantity."),
                units_issued = units_issued + ".db_escape($quantity)."
            WHERE id = ".db_escape($id);

    db_query($sql, "The work requirements issued quantity couldn't be updated");
}

As 'unit_cost' is computed and assigned in the sql statement whilst being part of  the RHS as well kindly look at if it was available initially in the first place.

82

(1 replies, posted in Report Bugs here)

Correction / reversal entries are already available and they have an audit trail.

Sales Orders (#_sales_orders) have an attached Sales Details table (#_sales_order_details) for the line items.
Refer the Wiki for the ERD Diagram.

All Customer Accounts are #_debtors_master.

The ERD Diagram for FA 2.3 (not much has changed in 2.4) is at ERDiagram23.

85

(11 replies, posted in Setup)

Very much so.
To run FA you only need a CLI install of Linux.
Later versions of Linux will help manage various cyphers for SSL TLS v1.3.
Debian 6 (Squeeze) runs FA very well when fully updated it is quite secure provided you have a good firewall - even PPTP VPN on pfSense 2.2.6 (since removed after NetGate took it over) would suffice.
It is however imperative that the access and error logs in the firewall and the FA PHP erro logs are regularly monitors - DDoS attacks have become very rampant and iptables manually monitored (fail2ban fails in many instances) will rener it safe albeit expensive in time and effort.

86

(11 replies, posted in Setup)

Air gapped / VPN systems are easily done on older computers without buying VPN services. HyperV in Windows and VMWare Player are good fits with any firewall worth iits name - pfSense, SMEServer, etc.

I do use latest FA on OpenVZ and LXC too - hardly 250MB as template.

Take a report the currently exists and then import into a PDF editor or Word 2016 and above or in AnyWord and then make changes as you would need them in the changed report and highlight the changes and upload somewhere and send the link here (if you cannot attach it here directly).

Take a backup of the FA before and after the reconciliations and do a diff (http://www.winmerge.org). That will give you a clue to use a different DB username with edit permissions for the affected field(s). This is only a quick 'n' dirty fix that you can revert from after the deed is done.

Check the SQL statements that affect the report and see if you can tweak it for your needs.
If you can do that offline in an excel sheet than you can make some Journal Entries to offset the differences.
How many years data do you have and what is the size of your full backup and what FA version are you on currently.
Take subset screenshot of the report marking the places for corrections.

This was probably that one may want to re-open old fiscal years.

@joe: must we purge all closed year balances or move them to temporary table for restoration on re-opening old fiscal years or just have flag in the report generation with a default to suppress closed years.

Also check for gaps in closed fiscal years.

91

(11 replies, posted in Setup)

PHP 5 is the base supported version for FA. If that is the release announcement, then it should be corrected. PHP 8 is being supported now as many mainstream distributions support it with some lag in minor versions.

Those on PHP5 have supported FA for as long as it existed and the newer installs are just being tried out predominantly by those feeling the waters.

Most developing and poor countries and those with unfavourable exchange rates still depend on older computers / servers that are still working. Most serious FA installs are still air gapped / on VPN. Even if a survey is done, the results will not be dependable as no will want to jeopardise info on their installs. It will be openly asking who did you vote for in the elections or who and what vested interests fund your campaign for what quid pro quo.

92

(11 replies, posted in Setup)

Take any virtual machine, say from the likes of linode.
Make sure it is a lamp installation.
PHP 5.5 preferred with Apache 2.2 or 2.4.
MySQL 5.1 or MariaDB 10.5
Linux upto Debian 8 - Jessie should be fine.
Anything newer would need a huge read into the forums.
Unzip the latest FA bleeding edge.
PHP dependencies will be easily spotted in the install phase.

You can also use Hyper-V in any MS Windows flavour after WinXP and can install Debian 6, 7 or 8.

93

(11 replies, posted in Setup)

The set of changed files from FA v2.4.6 through to the current last commit on 28th June 2024 v2.4.18+ is attached herewith.
Just overwriting the existing install should be fine but keep a backup of the FA 2.4.6 fileset as well.

Looks from the video, the NAP Online uses FA v2.3.x.
All these videos are usable for the most part for FA too.
They are very well produced.

Then you will need 2 items: Juice Strawberries and Raw Strawberries.

Or just have 1 item as Strwaberries and don't bother to label them as for juice or for pulp.

The Initial Password for the admin user is in the config_db.php file after this is done
Other than
  creating a default company folder
the following should be able to create a new company - tested on debian 6 squeeze:

# Script to create a new company with all random credentials in Debian

COA=en_IN_24-new

# To be shown in the login form
COMPANYNICKNAME="My New Company"

FADBCONFIG=/var/www/frontac/config_db.php

UPASSWD=`dd if=/dev/urandom count=200 bs=1 2>/dev/null|tr "\n" " "|sed 's/[^a-zA-Z0-9]//g'|cut -c-12`
RANUSER=`dd if=/dev/urandom count=200 bs=1 2>/dev/null|tr "\n" " "|sed 's/[^a-zA-Z0-9]//g'|cut -c-12`
FADBNAME=`dd if=/dev/urandom count=200 bs=1 2>/dev/null|tr "\n" " "|sed 's/[^a-zA-Z0-9]//g'|cut -c-12`
DEFCOPWD=`dd if=/dev/urandom count=200 bs=1 2>/dev/null|tr "\n" " "|sed 's/[^a-zA-Z0-9]//g'|cut -c-8`

mysql <<EOF

CREATE USER ${RANUSER} IDENTIFIED BY '${UPASSWD}';
DROP USER '${UPASSWD}'@'%';
CREATE DATABASE ${FADBNAME} DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_unicode_ci;
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, SHOW VIEW, ALTER ROUTINE, CREATE ROUTINE, CREATE TEMPORARY TABLES, CREATE VIEW, EVENT, EXECUTE, LOCK TABLES, REFERENCES, TRIGGER ON ${FADBNAME}.* TO '${RANUSER}'@'localhost' IDENTIFIED BY '${UPASSWD}';
FLUSH PRIVILEGES;
USE ${FADBNAME};
source /var/www/frontac/sql/${COA}.sql
INSERT INTO `0_users` (`id`,`user_id`,`password`,`real_name`,`role_id`,`phone`,`email`,`language`,`date_format`,`date_sep`,`tho_sep`,`dec_sep`,`theme`,`page_size`,`prices_dec`,`qty_dec`,`rates_dec`,`percent_dec`,`show_gl`,`show_codes`,`show_hints`,`last_visit_date`,`query_size`,`graphic_links`,`pos`,`print_profile`,`rep_popup`,`sticky_doc_date`,`startup_tab`,`transaction_days`,`save_report_selections`,`use_date_picker`,`def_print_destination`,`def_print_orientation`,`inactive`) VALUES
 ('1', 'admin', MD5('${DEFCOPWD}'), 'Administrator', '2', '', 'admin@example.com', 'C', '1', '2', '0', '0', 'default', 'A4', '2', '2', '4', '1', '1', '1', '1', NOW(), '10', '1', '1', '', '1', '0', 'orders', '30', '0', '1', '0', '0', '0');

QUIT
EOF

# If the ${FADBCONFIG} script ends with "?>"
# Then remove it first with
sed '${/?>/d;}' -i ${FADBCONFIG}

echo "" >> ${FADBCONFIG};
echo "\$db_connections[] = array(" >> ${FADBCONFIG};
echo "    'name' => '${COMPANYNICKNAME}'," >> ${FADBCONFIG};
echo "    'host' => 'localhost'," >> ${FADBCONFIG};
echo "    'port' => ''," >> ${FADBCONFIG};
echo "    'dbuser' => '${RANUSER}'," >> ${FADBCONFIG};
echo "    'dbpassword' => '${UPASSWD}'," >> ${FADBCONFIG};
echo "    'dbname' => '${FADBNAME}'," >> ${FADBCONFIG};
echo "    'collation' => 'utf8_xx'," >> ${FADBCONFIG};
echo "    'tbpref' => '\$tb_pref_counter'.'_'," >> ${FADBCONFIG};
echo "  );" >> ${FADBCONFIG};
echo "\$tb_pref_counter++;" >> ${FADBCONFIG};
echo "" >> ${FADBCONFIG};
echo "# Company $tb_pref_counter admin password: " .  ${DEFCOPWD}  >> ${FADBCONFIG};
echo "" >> ${FADBCONFIG};

Users can extend this script or make one for using with an existing php script.

This can be used with the form in this post to auto create a company from a signup form.

Anyone interested in an OpenVZ or LXC template for FA can also chip in.

It can also be made into an extension.

This could be a generic form hosted by FA team where the paid Service providers can be in a drop down selection list by country as well. A captcha can also be used. It can also serve as a curated list of competent FA hosting service providers.

Attached is a sample form screenshot for ordering a FA hosting service.
Anyone interested?

As feedback, what other minimal fields are necessary.

A note on what the initial offering entails like: 1GB, 512MB, single initial admin user, Chart of Accounts, Languages preferred, etc ?

Initially a restricted user can be provided whilst the admin user can be retained by the Hosting provider's support personnel.

The details of this form can go to a database where it can be vetted and then taken into a CRM when it becomes a potential client.

No attachment.