summaryrefslogtreecommitdiff
path: root/bin/wa_tax_rate_update
blob: c50a77771351bae8568f77afd88ffde6af37b7d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
#!/usr/bin/perl

=head1 NAME

wa_tax_rate_update

=head1 DESCRIPTION

Tool to update city/district sales tax rates in I<cust_main_county> from 
the Washington State Department of Revenue website.

Creates, or updates, a L<FS::cust_main_county> row for every tax district
in Washington state.  Some cities have different tax rates based on the
address, within the city.  Because of this, some cities may have multiple
rows defined.

When a Washington state address is inserted or changed in L<FS::cust_location>,
a job is queued for FS::geocode_Mixin::process_district_update, to ask the
Washington state API which tax district to use for this address.

Options:

-f <filename>: Skip downloading, and process the given excel file

-c <taxclass>: Updated or create records within given tax class,
   If not specified, taxclass will be set as NULL

-t <taxname>: Updated or created records will be set to the given tax name.
  If not specified, conf value 'tax_district_taxname' will be used

-y <year>: Specify year for tax table - defaults to current year

-q <quarter>: Specify quarter for tax table - defaults to current quarter

=head1 Washington State Department of Revenue Resources

The state of Washington makes data files available via their public website.
It's possible the availability or format of these files may change.  As of now,
the only data file that contains both city and county names is published in
XLSX format.

=item WA Dept of Revenue

https://dor.wa.gov

=item Data file downloads

https://dor.wa.gov/find-taxes-rates/sales-and-use-tax-rates/downloadable-database

=item XLSX file example

https://dor.wa.gov/sites/default/files/legacy/Docs/forms/ExcsTx/LocSalUseTx/ExcelLocalSlsUserates_19_Q1.xlsx

=item CSV file example

https://dor.wa.gov/sites/default/files/legacy/downloads/Add_DataRates2018Q4.zip


=item Address lookup API tool

http://webgis.dor.wa.gov/webapi/AddressRates.aspx?output=xml&addr=410 Terry Ave. North&city=&zip=98100

=cut

use strict;
use warnings;

our $VERSION = '0.02'; # Make Getopt:Std happy

use Data::Dumper;
use DateTime;
use File::Temp 'tempdir';
use File::Slurp qw(read_file write_file);
use Getopt::Std;
use LWP::UserAgent;
use Spreadsheet::XLSX;

use FS::cust_main_county;
use FS::Log;
use FS::Record qw(qsearch qsearchs dbh);
use FS::UID qw(adminsuidsetup);

my %opts;
getopts( 'c:t:y:q:f:', \%opts );
my $user = shift
  or die HELP_MESSAGE();

adminsuidsetup( $user )
  or die "bad username '$user'\n";

my $temp_dir = tempdir();
my $log = FS::Log->new('wa_tax_rate_update');

$opts{t} ||= FS::Conf->new->config('tax_district_taxname');

log_info_and_warn( "Set taxclass=$opts{c}" ) if $opts{c};
log_info_and_warn( "Set taxname=$opts{t}"  ) if $opts{t};

my $xls_fn = $opts{f} || fetch_xlsx_file();
my $tax_districts = parse_xlsx_file( $xls_fn );

update_cust_main_county( $tax_districts );

# print Dumper( \%opts );
# for ( 0..5 ) {
#   print Dumper( $tax_districts->[$_] );
# }

log_info_and_warn( "Finished" );
exit;


sub update_cust_main_county {
  my $tax_districts = shift;

  #
  # Working from an assumption tax tables may be loaded multiple times,
  # each with a different tax class,
  #  re: comments on FS::geocode_Mixin::process_district_update
  #

  my %cust_main_county =
    map { $_->district => $_ }
    qsearch(
      cust_main_county => {
        district => { op => '!=', value => undef },
        state    => 'WA',
        source   => 'wa_sales',
        taxclass => $opts{c},
      }
    );

  # Work within a SQL transaction
  local $FS::UID::AutoCommit = 0;

  my $insert_count = 0;
  my $update_count = 0;

  for my $district ( @$tax_districts ) {
    if ( my $row = $cust_main_county{ $district->{district} } ) {

      $row->city( uc $district->{city} );
      $row->county( uc $district->{county} );
      $row->taxclass( $opts{c} || undef );
      $row->taxname( $opts{t} || undef );
      $row->tax( $district->{tax_combined} * 100 );

      if ( my $error = $row->replace ) {
        dbh->rollback;
        local $FS::UID::AutoCommit = 1;
        log_error_and_die(
          sprintf
            "Error updating cust_main_county row %s for district %s: %s",
            $row->taxnum,
            $district->{district},
            $error
        );
      }

      $update_count++;

    } else {
      my $row = FS::cust_main_county->new({
        district => $district->{district},
        city     => uc $district->{city},
        county   => uc $district->{county},
        state    => 'WA',
        country  => 'US',
        taxclass => $opts{c} || undef,
        taxname  => $opts{t} || undef,
        tax      => $district->{tax_combined} * 100,
        source   => 'wa_sales',
      });

      if ( my $error = $row->insert ) {
        dbh->rollback;
        local $FS::UID::AutoCommit = 1;
        log_error_and_die(
          sprintf
            "Error inserting cust_main_county row for district %s: %s",
            $district->{district},
            $error
        );
      }

      $cust_main_county{ $district->{district} } = $row;
      $insert_count++;
    }
  }

  dbh->commit;

  local $FS::UID::AutoCommit = 1;
  log_info_and_warn(
    sprintf
      "WA tax table update completed. Inserted %s rows, updated %s rows",
      $insert_count,
      $update_count
  );

}

sub parse_xlsx_file {
  my $parse_fn = shift;

  # About the file format:
  #
  # The current spreadsheet contains the following @columns.
  # Rows 1 and 2 are a marquee header
  # Row 3 is the column labels.  We will test these to detect
  #   changes in the data format
  # Rows 4+ are the tax district data
  #
  # The "city" column is being parsed from "Location"

  my @columns = qw( city county district tax_local tax_state tax_combined );

  log_error_and_die( "Unable to access XLSX file: $parse_fn" )
    unless -r $parse_fn;

  my $xls_parser = Spreadsheet::XLSX->new( $parse_fn )
    or log_error_and_die( "Error parsing XLSX file: $!" );

  my $sheet = $xls_parser->{Worksheet}->[0]
    or log_error_and_die(" Unable to access worksheet 1 in XLSX file" );

  my $cells = $sheet->{Cells}
    or log_error_and_die( "Unable to read cells in XLSX file" );

  # Read the column labels and verify
  my %labels =
    map{ $columns[$_] => $cells->[2][$_]->{Val} }
    0 .. scalar(@columns)-1;

  my %expected_labels = (
    city         => 'Location',
    county       => 'County',
    district     => 'Location Code',
    tax_local    => 'Local Rate',
    tax_state    => 'State Rate',
    tax_combined => 'Combined Sales Tax',
  );

  if (
    my @error_labels =
      grep { lc $labels{$_} ne lc $expected_labels{$_} }
      @columns
  ) {
    my $error = "Error parsing XLS file - ".
                "Data format may have been updated with WA DOR! ";
    $error .= "Expected column $expected_labels{$_}, found $labels{$_}! "
      for @error_labels;
    log_error_and_die( $error );
  }

  # Parse the rows into an array of hashes
  my @districts;
  for my $row ( 3..$sheet->{MaxRow} ) {
    my %district = (
      map { $columns[$_] => $cells->[$row][$_]->{Val} }
      0 .. scalar(@columns)-1
    );

    if (
         $district{city}
      && $district{county}
      && $district{district}     =~ /^\d+$/
      && $district{tax_local}    =~ /^\d?\.\d+$/
      && $district{tax_state}    =~ /^\d?\.\d+$/
      && $district{tax_combined} =~ /^\d?\.\d+$/
    ) {

      # For some reason, city may contain line breaks!
      $district{city} =~ s/[\r\n]//g;

      push @districts, \%district;
    } else {
      log_warn_and_warn(
        "Non-usable row found in spreadsheet:\n" . Dumper( \%district )
      );
    }

  }

  log_error_and_die( "No \@districts found in data file!" )
    unless @districts;

  log_info_and_warn(
    sprintf "Parsed %s districts from data file", scalar @districts
  );

  \@districts;
}

sub fetch_xlsx_file {
  # Download file to temporary storage, return filename

  my $url_base = 'https://dor.wa.gov'.
                 '/sites/default/files/legacy/Docs/forms/ExcsTx/LocSalUseTx';

  my $year = $opts{y}    || DateTime->now->year;
  my $quarter = $opts{q} || DateTime->now->quarter;
  $year = substr( $year, 2, 2 ) if $year >= 1000;
  my $fn = sprintf( 'ExcelLocalSlsUserates_%s_Q%s.xlsx', $year, $quarter );
  my $url = "$url_base/$fn";

  my $write_fn = "$temp_dir/$fn";

  log_info_and_warn( "Begin download from url: $url" );

  my $ua = LWP::UserAgent->new;
  my $res = $ua->get( $url );

  log_error_and_die( "Download error: ".$res->status_line )
    unless $res->is_success;

  local $@;
  eval { write_file( $write_fn, $res->decoded_content ); };
  log_error_and_die( "Problem writing download to disk: $@" )
    if $@;

  log_info_and_warn( "Temporary file: $write_fn" );
  $write_fn;
}


sub HELP_MESSAGE {
  print "
    Tool to update city/district sales tax rates in I<cust_main_county> from
    the Washington State Department of Revenue website.

    Usage: [-f filename] [-c taxclass] [-t taxname] [-y year] [-q quarter]

    Optional Options:
      -f filename   Skip download, and process the specified filename
      -c taxclass   Update or create records within this taxclass
                    defaults as NULL
      -t taxname    Apply tax name value to created or updated records
                    defaults as conf value 'tax_district_taxname'
      -y year       Year for data file download
      -q quarter    Quarter of data file to download

  ";
  exit;
}

sub log_info_and_warn {
  my $log_message = shift;
  warn "$log_message\n";
  $log->info( $log_message );
}

sub log_warn_and_warn {
  my $log_message = shift;
  warn "$log_message\n";
  $log->warn( $log_message );
}

sub log_error_and_die {
  my $log_message = shift;
  $log->error( $log_message );
  die( "$log_message\n" );
}