diff options
author | ivan <ivan> | 2005-04-13 12:30:22 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-04-13 12:30:22 +0000 |
commit | 3b0cb02522be27cea894150c3646ef03fef09e4b (patch) | |
tree | 3258a5c13e8661c127bbc737d0e2c5d5bf18c79b | |
parent | 7a1b41c76d4eaa1fdbdda7a1e5d76aab122b207f (diff) |
add nowarn_identical flag to Record.pm and use it in cust_svc svcpart replacement (which is all about the exports anyway)
-rw-r--r-- | FS/FS/Record.pm | 7 | ||||
-rw-r--r-- | FS/FS/cust_svc.pm | 1 |
2 files changed, 6 insertions, 2 deletions
diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm index 5dbcd4d4b..de5feeb27 100644 --- a/FS/FS/Record.pm +++ b/FS/FS/Record.pm @@ -2,7 +2,7 @@ package FS::Record; use strict; use vars qw( $dbdef_file $dbdef $setup_hack $AUTOLOAD @ISA @EXPORT_OK $DEBUG - $me %dbdef_cache %virtual_fields_cache ); + $me %dbdef_cache %virtual_fields_cache $nowarn_identical ); use subs qw(reload_dbdef); use Exporter; use Carp qw(carp cluck croak confess); @@ -25,6 +25,8 @@ use Tie::IxHash; $DEBUG = 0; $me = '[FS::Record]'; +$nowarn_identical = 0; + my $conf; my $rsa_module; my $rsa_loaded; @@ -922,7 +924,8 @@ sub replace { ? ($_, $new->getfield($_)) : () } $old->fields; unless ( keys(%diff) ) { - carp "[warning]$me $new -> replace $old: records identical"; + carp "[warning]$me $new -> replace $old: records identical" + unless $nowarn_identical; return ''; } diff --git a/FS/FS/cust_svc.pm b/FS/FS/cust_svc.pm index e98695376..2bc20ff58 100644 --- a/FS/FS/cust_svc.pm +++ b/FS/FS/cust_svc.pm @@ -178,6 +178,7 @@ sub replace { if ( $new->svcpart != $old->svcpart ) { my $svc_x = $new->svc_x; my $new_svc_x = ref($svc_x)->new({$svc_x->hash, svcpart=>$new->svcpart }); + local($FS::Record::nowarn_identical) = 1; my $error = $new_svc_x->replace($svc_x); if ( $error ) { $dbh->rollback if $oldAutoCommit; |