omit from history
authorIvan Kohler <ivan@freeside.biz>
Wed, 13 Nov 2013 19:02:57 +0000 (11:02 -0800)
committerIvan Kohler <ivan@freeside.biz>
Wed, 13 Nov 2013 19:02:57 +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 605f21c..b3737c0 100644 (file)
@@ -38,6 +38,7 @@ FS::UID->install_callback( sub {
 } );
 
 @encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
 
 =head1 NAME
 
index e1e32d3..cfba664 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 8e29f08..22c9293 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 42fc296..e6e2159 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 45a170b..a3beb9b 100644 (file)
@@ -14,6 +14,7 @@ use FS::cust_pay_refund;
 use FS::cust_main;
 
 @encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
 
 =head1 NAME