omit from history
authorIvan Kohler <ivan@freeside.biz>
Wed, 13 Nov 2013 19:02:59 +0000 (11:02 -0800)
committerIvan Kohler <ivan@freeside.biz>
Wed, 13 Nov 2013 19:02:59 +0000 (11:02 -0800)
FS/FS/cust_pay.pm
FS/FS/cust_pay_batch.pm
FS/FS/cust_pay_pending.pm
FS/FS/cust_pay_void.pm
FS/FS/cust_refund.pm

index 444f68a..20132fe 100644 (file)
@@ -37,6 +37,7 @@ FS::UID->install_callback( sub {
 } );
 
 @encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
 
 =head1 NAME
 
index 30ddc37..20e88a0 100644 (file)
@@ -16,6 +16,9 @@ use FS::cust_bill;
 # 3 is even more information including possibly sensitive data
 $DEBUG = 0;
 
+#@encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
+
 =head1 NAME
 
 FS::cust_pay_batch - Object methods for batch cards
index f03ed1f..f845a64 100644 (file)
@@ -12,6 +12,7 @@ use FS::cust_pay;
 @ISA = qw( FS::payinfo_transaction_Mixin FS::cust_main_Mixin FS::Record );
 
 @encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
 
 =head1 NAME
 
index bebcfd4..5521884 100644 (file)
@@ -17,6 +17,8 @@ use FS::cust_pay;
 use FS::cust_pkg;
 
 @encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
+
 $otaker_upgrade_kludge = 0;
 
 =head1 NAME
index 7df7a55..cb99cbf 100644 (file)
@@ -14,6 +14,7 @@ use FS::cust_pay_refund;
 use FS::cust_main;
 
 @encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
 
 =head1 NAME