[freeside-commits] freeside/FS/FS Schema.pm, 1.317.2.11, 1.317.2.12 cust_main.pm, 1.586.2.3, 1.586.2.4 Conf.pm, 1.468.2.9, 1.468.2.10
Ivan,,,
ivan at wavetail.420.am
Sat Oct 15 18:17:59 PDT 2011
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv25125/FS/FS
Modified Files:
Tag: FREESIDE_2_3_BRANCH
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.317.2.11
retrieving revision 1.317.2.12
diff -u -w -d -r1.317.2.11 -r1.317.2.12
--- Schema.pm 14 Oct 2011 08:56:11 -0000 1.317.2.11
+++ Schema.pm 16 Oct 2011 01:17:56 -0000 1.317.2.12
@@ -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.468.2.9
retrieving revision 1.468.2.10
diff -u -w -d -r1.468.2.9 -r1.468.2.10
--- Conf.pm 7 Oct 2011 23:30:39 -0000 1.468.2.9
+++ Conf.pm 16 Oct 2011 01:17:57 -0000 1.468.2.10
@@ -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.586.2.3
retrieving revision 1.586.2.4
diff -u -w -d -r1.586.2.3 -r1.586.2.4
--- cust_main.pm 27 Sep 2011 23:01:32 -0000 1.586.2.3
+++ cust_main.pm 16 Oct 2011 01:17:57 -0000 1.586.2.4
@@ -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