summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-08-10 13:54:29 -0700
committerIvan Kohler <ivan@freeside.biz>2012-08-10 13:54:29 -0700
commita0d3f49b5c81e5dfd248000151f9ec5afd88f184 (patch)
tree1faad4f71f2a8d893c558b0afb4b92a7c044fc0d /FS
parent0458f51a9f71d4c782effb86d6ad3c0d5a26b59f (diff)
add national id # handling for my, RT#18543
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/Conf.pm8
-rw-r--r--FS/FS/Schema.pm1
2 files changed, 9 insertions, 0 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm
index 6efefcee9..e441a7439 100644
--- a/FS/FS/Conf.pm
+++ b/FS/FS/Conf.pm
@@ -1924,6 +1924,14 @@ and customer address. Include units.',
},
{
+ 'key' => 'national_id-country',
+ 'section' => 'UI',
+ 'description' => 'Track a national identification number, for specific countries.',
+ 'type' => 'select',
+ 'select_enum' => [ '', 'MY' ],
+ },
+
+ {
'key' => 'show_bankstate',
'section' => 'UI',
'description' => "Turns on display/collection of state for bank accounts in the web interface. Sometimes required by electronic check (ACH) processors.",
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index 2f6046287..09a87f949 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -844,6 +844,7 @@ sub tables_hashref {
'ss', 'varchar', 'NULL', 11, '', '',
'stateid', 'varchar', 'NULL', $char_d, '', '',
'stateid_state', 'varchar', 'NULL', $char_d, '', '',
+ 'national_id', 'varchar', 'NULL', $char_d, '', '',
'birthdate' ,@date_type, '', '',
'spouse_birthdate' ,@date_type, '', '',
'anniversary_date' ,@date_type, '', '',