X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FConf.pm;h=ee6ee3b7db3b2e066d7ee93fb60f31640de1f45d;hb=c564754d5f17c616782fb27432e6b056bd8fa00d;hp=070b56b4a823944579fc37765b418da0893d6259;hpb=d75a2141f0f67b07aad07e9d63b0518306597b19;p=freeside.git diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 070b56b4a..ee6ee3b7d 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -2005,6 +2005,7 @@ and customer address. Include units.', '25-starttls' => 'STARTTLS (port 25)', '587-starttls' => 'STARTTLS / submission (port 587)', '465-tls' => 'SMTPS (SSL) (port 465)', + '2525' => 'None (Non-standard port 2525)', ], }, @@ -2671,7 +2672,7 @@ and customer address. Include units.', 'section' => 'payments', 'description' => 'Available payment types.', 'type' => 'selectmultiple', - 'select_enum' => [ qw(CARD DCRD CHEK DCHK) ], #BILL CASH WEST MCRD MCHK PPAL) ], + 'select_enum' => [ qw(CARD DCRD CHEK DCHK PPAL) ], #BILL CASH WEST MCRD MCHK PPAL) ], }, { @@ -4202,6 +4203,13 @@ and customer address. Include units.', }, { + 'key' => 'dashboard-topnotes', + 'section' => 'UI', + 'description' => 'Note to display on the top of the front page', + 'type' => 'textarea', + }, + + { 'key' => 'dashboard-toplist', 'section' => 'UI', 'description' => 'List of items to display on the top of the front page', @@ -4580,13 +4588,25 @@ and customer address. Include units.', { 'key' => 'census_year', - 'section' => 'addresses', - 'description' => 'The year to use in census tract lookups. NOTE: you need to select 2012 or 2013 for Year 2010 Census tract codes. A selection of 2011 provides Year 2000 Census tract codes. Use the freeside-censustract-update tool if exisitng customers need to be changed.', + 'section' => 'deprecated', + 'description' => 'Deprecated. Used to control the year used for census lookups. 2020 census data is now the default. Use the freeside-censustract-update tool if exisitng customers need to be changed. See the census_legacy configuration option if you need old census data to re-file pre-2022 FCC 477 reports.', 'type' => 'select', 'select_enum' => [ qw( 2017 2016 2015 ) ], }, { + 'key' => 'census_legacy', + 'section' => 'addresses', + 'description' => 'Use old census data (and source). Should only be needed if re-filing pre-2022 FCC 477 reports.', + 'type' => 'select', + 'select_hash' => [ '' => 'Disabled (2020)', + '2015' => '2015', + '2016' => '2016', + '2017' => '2017', + ], + }, + + { 'key' => 'tax_district_method', 'section' => 'taxation', 'description' => 'The method to use to look up tax district codes.', @@ -5138,7 +5158,7 @@ and customer address. Include units.', { 'key' => 'cdr-charged_party-field', 'section' => 'telephony', - 'description' => 'Set the charged_party field of CDRs to this field.', + 'description' => 'Set the charged_party field of CDRs to this field. Restart Apache and Freeside daemons after changing.', 'type' => 'select-sub', 'options_sub' => sub { my $fields = FS::cdr->table_info->{'fields'}; map { $_ => $fields->{$_}||$_ } @@ -5154,14 +5174,14 @@ and customer address. Include units.', { 'key' => 'cdr-charged_party-accountcode', 'section' => 'telephony', - 'description' => 'Set the charged_party field of CDRs to the accountcode.', + 'description' => 'Set the charged_party field of CDRs to the accountcode. Restart Apache and Freeside daemons after changing.', 'type' => 'checkbox', }, { 'key' => 'cdr-charged_party-accountcode-trim_leading_0s', 'section' => 'telephony', - 'description' => 'When setting the charged_party field of CDRs to the accountcode, trim any leading zeros.', + 'description' => 'When setting the charged_party field of CDRs to the accountcode, trim any leading zeros. Restart Apache and Freeside daemons after changing.', 'type' => 'checkbox', }, @@ -5259,7 +5279,7 @@ and customer address. Include units.', { 'key' => 'cdr-max_duration', 'section' => 'telephony', - 'description' => 'If set, defines a global maximum billsec/duration for (prefix-based) call rating, in seconds. Used with questionable/dirty CDR data that may contain bad records with long billsecs/durations.', + 'description' => 'If set, defines a global maximum billsec/duration for (prefix-based) call rating, in seconds. Used with questionable/dirty CDR data that may contain bad records with long billsecs/durations. Restart Apache and Freeside daemons after changing.', 'type' => 'text', }, @@ -5787,14 +5807,14 @@ and customer address. Include units.', { 'key' => 'cdr-prerate', 'section' => 'telephony', - 'description' => 'Experimental feature to rate CDRs immediately, rather than waiting until invoice generation time. Can reduce invoice generation time when processing lots of CDRs. Currently works with "VoIP/telco CDR rating (standard)" price plans using "Phone numbers (svc_phone.phonenum)" CDR service matching, without any included minutes.', + 'description' => 'Experimental feature to rate CDRs immediately, rather than waiting until invoice generation time. Can reduce invoice generation time when processing lots of CDRs. Currently works with "VoIP/telco CDR rating (standard)" price plans using "Phone numbers (svc_phone.phonenum)" CDR service matching, without any included minutes. Restart Apache and Freeside daemons after changing.', 'type' => 'checkbox', }, { 'key' => 'cdr-prerate-cdrtypenums', 'section' => 'telephony', - 'description' => 'When using cdr-prerate to rate CDRs immediately, limit processing to these CDR types.', + 'description' => 'When using cdr-prerate to rate CDRs immediately, limit processing to these CDR types. Restart Apache and Freeside daemons after changing.', 'type' => 'select-sub', 'multiple' => 1, 'options_sub' => sub { require FS::Record; @@ -5828,7 +5848,7 @@ and customer address. Include units.', { 'key' => 'cdr-lrn_lookup', 'section' => 'telephony', - 'description' => 'Look up LRNs of destination numbers for exact matching to the terminating carrier. This feature requires a Freeside support contract for paid access to the central NPAC database; see support-key.', + 'description' => 'Look up LRNs of destination numbers for exact matching to the terminating carrier. This feature requires a Freeside support contract for paid access to the central NPAC database; see support-key. Restart Apache and Freeside daemons after changing.', 'type' => 'checkbox', }, @@ -6028,7 +6048,7 @@ and customer address. Include units.', { 'key' => 'tollfree-country', 'section' => 'telephony', - 'description' => 'Country / region for toll-free recognition', + 'description' => 'Country / region for toll-free recognition. Restart Apache and Freeside daemons after changing.', 'type' => 'select', 'select_hash' => [ '' => 'NANPA (US/Canada)', 'AU' => 'Australia', @@ -6064,6 +6084,34 @@ and customer address. Include units.', 'type' => 'checkbox', }, + { + 'key' => 'deposit_slip-bank_name', + 'section' => 'payments', #XXX payment_deposit_slips + 'description' => 'Bank name to print on check deposit slips', + 'type' => 'text', + }, + + { + 'key' => 'deposit_slip-bank_address', + 'section' => 'payments', #XXX payment_deposit_slips + 'description' => 'Bank address to print on check deposit slips', + 'type' => 'textarea', + }, + + { + 'key' => 'deposit_slip-bank_routingnumber', + 'section' => 'payments', #XXX payment_deposit_slips + 'description' => '9 digit bank routing number to print on check deposit slips', + 'type' => 'text', + }, + + { + 'key' => 'deposit_slip-bank_accountnumber', + 'section' => 'payments', #XXX payment_deposit_slips + 'description' => 'Bank account number to print on check deposit slips', + 'type' => 'text', + }, + # for internal use only; test databases should declare this option and # everyone else should pretend it doesn't exist