diff options
author | Fernando Kiernan <fkiernan@imagenesdigitales.com.ar> | 2015-05-05 21:14:49 -0300 |
---|---|---|
committer | Fernando Kiernan <fkiernan@id.net.ar> | 2016-03-21 22:07:14 -0300 |
commit | bab5583acee02f55e13a026b280f7528aa0c8d01 (patch) | |
tree | 2ff13a3ba4f24fb27a4baa8fd7e37855c3ce4857 | |
parent | 8e67cf9e85e6fe18f501f892db2abd37725bb0bd (diff) |
- Add ARS (Argentine Peso) as supported system currency.
-rw-r--r-- | FS/FS/Conf.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index a8ececd02..90bb3b143 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -971,7 +971,7 @@ my $validate_email = sub { $_[0] =~ 'section' => 'billing', 'description' => 'Currency parameter for Business::OnlinePayment transactions.', 'type' => 'select', - 'select_enum' => [ '', qw( USD AUD CAD DKK EUR GBP ILS JPY NZD ) ], + 'select_enum' => [ '', qw( USD AUD CAD DKK EUR GBP ILS JPY NZD ARS ) ], }, { @@ -979,7 +979,7 @@ my $validate_email = sub { $_[0] =~ 'section' => 'billing', 'description' => 'Main accounting currency', 'type' => 'select', - 'select_enum' => [ '', qw( USD AUD CAD DKK EUR GBP ILS JPY NZD XAF ) ], + 'select_enum' => [ '', qw( USD AUD CAD DKK EUR GBP ILS JPY NZD XAF ARS ) ], }, { |