[freeside-commits] freeside/FS/FS Schema.pm, 1.331, 1.332 cust_main.pm, 1.590, 1.591 Conf.pm, 1.477, 1.478

Ivan,,, ivan at wavetail.420.am
Sat Oct 15 18:17:51 PDT 2011


Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv25106/FS/FS

Modified Files:
	Schema.pm cust_main.pm Conf.pm 
Log Message:
add do_not_call, RT#12981

Index: Schema.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Schema.pm,v
retrieving revision 1.331
retrieving revision 1.332
diff -u -w -d -r1.331 -r1.332
--- Schema.pm	14 Oct 2011 08:56:03 -0000	1.331
+++ Schema.pm	16 Oct 2011 01:17:48 -0000	1.332
@@ -887,6 +887,7 @@
         'billday',   'int', 'NULL', '', '', '',
         'edit_subject', 'char', 'NULL', 1, '', '',
         'locale', 'varchar', 'NULL', 16, '', '', 
+        'calling_list_exempt', 'char', 'NULL', 1, '', '',
       ],
       'primary_key' => 'custnum',
       'unique' => [ [ 'agentnum', 'agent_custid' ] ],

Index: Conf.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Conf.pm,v
retrieving revision 1.477
retrieving revision 1.478
diff -u -w -d -r1.477 -r1.478
--- Conf.pm	8 Oct 2011 21:55:19 -0000	1.477
+++ Conf.pm	16 Oct 2011 01:17:49 -0000	1.478
@@ -3341,6 +3341,13 @@
   },
 
   {
+    'key'         => 'cust_main-edit_calling_list_exempt',
+    'section'     => 'UI',
+    'description' => 'Display the "calling_list_exempt" checkbox on customer edit.',
+    'type'        => 'checkbox',
+  },
+
+  {
     'key'         => 'support-key',
     'section'     => '',
     'description' => 'A support key enables access to commercial services delivered over the network, such as the payroll module, access to the internal ticket system, priority support and optional backups.',

Index: cust_main.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/cust_main.pm,v
retrieving revision 1.590
retrieving revision 1.591
diff -u -w -d -r1.590 -r1.591
--- cust_main.pm	27 Sep 2011 23:01:23 -0000	1.590
+++ cust_main.pm	16 Oct 2011 01:17:48 -0000	1.591
@@ -337,6 +337,10 @@
 
 Allow self-service editing of ticket subjects, empty or 'Y'
 
+=item calling_list_exempt
+
+Do not call, empty or 'Y'
+
 =back
 
 =head1 METHODS
@@ -1701,6 +1705,7 @@
     || $self->ut_floatn('credit_limit')
     || $self->ut_numbern('billday')
     || $self->ut_enum('edit_subject', [ '', 'Y' ] )
+    || $self->ut_enum('calling_list_exempt', [ '', 'Y' ] )
     || $self->ut_enum('locale', [ '', FS::Locales->locales ])
   ;
 



More information about the freeside-commits mailing list