From: jeff Date: Fri, 15 Aug 2008 01:09:45 +0000 (+0000) Subject: correct field ordering - invonsequential X-Git-Tag: root_of_webpay_support~433 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=052ebe1ded9859bff023141274edf891e743275a correct field ordering - invonsequential --- diff --git a/FS/FS/tax_class.pm b/FS/FS/tax_class.pm index ed63939f6..2fa9fb0f8 100644 --- a/FS/FS/tax_class.pm +++ b/FS/FS/tax_class.pm @@ -156,7 +156,7 @@ sub batch_import { } if ( $format eq 'cch' || $format eq 'cch-update' ) { - @fields = qw( table name pos number length value description ); + @fields = qw( table name pos length number value description ); push @fields, 'actionflag' if $format eq 'cch-update'; $hook = sub { @@ -195,7 +195,7 @@ sub batch_import { } delete($hash->{$_}) - for qw( data_vendor table name pos number length value description ); + for qw( data_vendor table name pos length number value description ); delete($hash->{actionflag}) if exists($hash->{actionflag}); '';