summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2017-08-29 11:33:18 -0700
committerIvan Kohler <ivan@freeside.biz>2017-08-29 11:33:18 -0700
commit72ad2f16955e4593891bb851243f8a6de9c3fb80 (patch)
treebb8aeb65a4e6d25fcf41fbdb9f67f08b7b4a5392
parentd2bcbc27dcf98be7d183aa8e71b029a647e6200c (diff)
quick script to add armed forces USPS "state" abbrivations, RT#77312
-rwxr-xr-xbin/add-usps-af29
1 files changed, 29 insertions, 0 deletions
diff --git a/bin/add-usps-af b/bin/add-usps-af
new file mode 100755
index 000000000..5aec110b7
--- /dev/null
+++ b/bin/add-usps-af
@@ -0,0 +1,29 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+use FS::UID qw( adminsuidsetup );
+use FS::Setup;
+
+adminsuidsetup(shift) or die "usage: add-usps-af username\n";
+
+ my %addl = (
+ 'US' => {
+# 'FM' => 'Federated States of Micronesia',
+# 'MH' => 'Marshall Islands',
+# 'PW' => 'Palau',
+ 'AA' => "Armed Forces Americas (except Canada)",
+ 'AE' => "Armed Forces Europe / Canada / Middle East / Africa",
+ 'AP' => "Armed Forces Pacific",
+ },
+ );
+
+ foreach my $country ( keys %addl ) {
+ foreach my $state ( keys %{ $addl{$country} } ) {
+ # $longname = $addl{$country}{$state};
+ FS::Setup::_add_locale( 'country'=>$country, 'state'=>$state);
+ }
+ }
+
+1;
+