X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fcompany_preferences.php;h=b790d929d98d4c0d042c5226727d8955d29249f4;hb=54eb0e92cb17c72b8edf5ec88e6fe795e1ef91f0;hp=5965d7a69ea29cfa5c68821b88c8d848d74f27ff;hpb=7e6e0807990447d2977b970c3a0fd28dc9250194;p=fa-stable.git diff --git a/admin/company_preferences.php b/admin/company_preferences.php index 5965d7a6..b790d929 100644 --- a/admin/company_preferences.php +++ b/admin/company_preferences.php @@ -25,6 +25,7 @@ include_once($path_to_root . "/reporting/includes/tcpdf.php"); if (isset($_POST['update']) && $_POST['update'] != "") { $input_error = 0; + if (!check_num('login_tout', 10)) { display_error(_("Login timeout must be positive number not less than 10.")); @@ -152,7 +153,7 @@ if (isset($_POST['update']) && $_POST['update'] != "") 'postal_address','phone', 'fax', 'email', 'coy_logo', 'domicile', 'use_dimension', 'curr_default', 'f_year', 'shortname_name_in_list', 'no_item_list' => 0, 'no_customer_list' => 0, 'no_supplier_list' => 0, - 'base_sales', 'ref_no_auto_increase' => 0, 'dim_on_recurrent_invoice' => 0, 'long_description_invoice' => 0, 'max_days_in_docs' => 180, + 'base_sales', 'ref_no_auto_increase' => 0, 'dim_on_recurrent_invoice' => 0, 'long_description_invoice' => 0, 'max_days_in_docs' => 180, 'company_logo_on_views' => 0, 'time_zone' => 0, 'company_logo_report' => 0, 'barcodes_on_stock' => 0, 'print_dialog_direct' => 0, 'add_pct', 'round_to', 'login_tout', 'auto_curr_reval', 'bcc_email', 'alternative_tax_include_on_docs', 'suppress_tax_rates', 'use_manufacturing', 'use_fixed_assets')) @@ -236,6 +237,12 @@ if (!isset($myrow["long_description_invoice"])) $myrow["long_description_invoice"] = get_company_pref("long_description_invoice"); } $_POST['long_description_invoice'] = $myrow["long_description_invoice"]; +if (!isset($myrow["company_logo_on_views"])) +{ + set_company_pref("company_logo_on_views", "setup.company", "tinyint", 1, '0'); + $myrow["company_logo_on_views"] = get_company_pref("company_logo_on_views"); +} +$_POST['company_logo_on_views'] = $myrow["company_logo_on_views"]; $_POST['version_id'] = $myrow["version_id"]; $_POST['add_pct'] = $myrow['add_pct']; $_POST['login_tout'] = $myrow['login_tout']; @@ -279,6 +286,7 @@ check_row(_("Use Barcodes on Stocks"), 'barcodes_on_stock', $_POST['barcodes_on_ check_row(_("Auto Increase of Document References"), 'ref_no_auto_increase', $_POST['ref_no_auto_increase']); check_row(_("Use Dimensions on Recurrent Invoices"), 'dim_on_recurrent_invoice', $_POST['dim_on_recurrent_invoice']); check_row(_("Use Long Descriptions on Invoices"), 'long_description_invoice', $_POST['long_description_invoice']); +check_row(_("Company Logo on Views"), 'company_logo_on_views', $_POST['company_logo_on_views']); label_row(_("Database Scheme Version"), $_POST['version_id']); table_section(2);