[freeside-commits] branch FREESIDE_3_BRANCH updated. de27e71335e90813543e5c87025a6bce23bb7645

Ivan ivan at 420.am
Wed Nov 13 11:02:59 PST 2013


The branch, FREESIDE_3_BRANCH has been updated
       via  de27e71335e90813543e5c87025a6bce23bb7645 (commit)
      from  d983d2f1d4d0dd7eab247ec4c12979a132e301b6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit de27e71335e90813543e5c87025a6bce23bb7645
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Wed Nov 13 11:02:57 2013 -0800

    omit from history

diff --git a/FS/FS/cust_pay.pm b/FS/FS/cust_pay.pm
index 605f21c..b3737c0 100644
--- a/FS/FS/cust_pay.pm
+++ b/FS/FS/cust_pay.pm
@@ -38,6 +38,7 @@ FS::UID->install_callback( sub {
 } );
 
 @encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
 
 =head1 NAME
 
diff --git a/FS/FS/cust_pay_batch.pm b/FS/FS/cust_pay_batch.pm
index e1e32d3..cfba664 100644
--- a/FS/FS/cust_pay_batch.pm
+++ b/FS/FS/cust_pay_batch.pm
@@ -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
diff --git a/FS/FS/cust_pay_pending.pm b/FS/FS/cust_pay_pending.pm
index 8e29f08..22c9293 100644
--- a/FS/FS/cust_pay_pending.pm
+++ b/FS/FS/cust_pay_pending.pm
@@ -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
 
diff --git a/FS/FS/cust_pay_void.pm b/FS/FS/cust_pay_void.pm
index 42fc296..e6e2159 100644
--- a/FS/FS/cust_pay_void.pm
+++ b/FS/FS/cust_pay_void.pm
@@ -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
diff --git a/FS/FS/cust_refund.pm b/FS/FS/cust_refund.pm
index 45a170b..a3beb9b 100644
--- a/FS/FS/cust_refund.pm
+++ b/FS/FS/cust_refund.pm
@@ -14,6 +14,7 @@ use FS::cust_pay_refund;
 use FS::cust_main;
 
 @encrypted_fields = ('payinfo');
+sub nohistory_fields { ('payinfo'); }
 
 =head1 NAME
 

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/cust_pay.pm         |    1 +
 FS/FS/cust_pay_batch.pm   |    3 +++
 FS/FS/cust_pay_pending.pm |    1 +
 FS/FS/cust_pay_void.pm    |    2 ++
 FS/FS/cust_refund.pm      |    1 +
 5 files changed, 8 insertions(+), 0 deletions(-)




More information about the freeside-commits mailing list