X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=FS%2FFS%2Faccess_user.pm;h=4d72c2ee7bb49c23f0a3130f9b718b2c57369bde;hb=8ce2c1f11378b22966ec536f11898b4708a40237;hp=5d5cc126cd85cd49d3d560c2c478b5a17518b8f1;hpb=15db7ad6e6ea2e57784368eec80e4aae54358f77;p=freeside.git diff --git a/FS/FS/access_user.pm b/FS/FS/access_user.pm index 5d5cc126c..4d72c2ee7 100644 --- a/FS/FS/access_user.pm +++ b/FS/FS/access_user.pm @@ -511,6 +511,38 @@ sub default_customer_view { } +=item spreadsheet_format + +Returns a hashref of this user's Excel spreadsheet download settings: +'extension' (xls or xlsx), 'class' (Spreadsheet::WriteExcel or +Excel::Writer::XLSX), and 'mime_type'. + +=cut + +my %formats = ( + XLS => { + extension => '.xls', + class => 'Spreadsheet::WriteExcel', + mime_type => 'application/vnd.ms-excel', + }, + XLSX => { + extension => '.xlsx', + class => 'Excel::Writer::XLSX', + mime_type => # it's on wikipedia, it must be true + 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', + } +); + +sub spreadsheet_format { + my $self = shift; + + my $f = $self->option('spreadsheet_format') + || $conf->config('spreadsheet_format') + || 'XLS'; + + $formats{$f}; +} + =item is_system_user Returns true if this user has the name of a known system account. These