summaryrefslogtreecommitdiff
path: root/FS/FS/tax_class.pm
diff options
context:
space:
mode:
authorjeff <jeff>2008-08-15 01:09:45 +0000
committerjeff <jeff>2008-08-15 01:09:45 +0000
commit052ebe1ded9859bff023141274edf891e743275a (patch)
treea440e281f470fd545a4f9e22122de8e5309433b6 /FS/FS/tax_class.pm
parentc739d0183e78521c799772dda3f3346d0461c6e8 (diff)
correct field ordering - invonsequential
Diffstat (limited to 'FS/FS/tax_class.pm')
-rw-r--r--FS/FS/tax_class.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/tax_class.pm b/FS/FS/tax_class.pm
index ed63939..2fa9fb0 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});
'';