[freeside-commits] freeside/FS/FS Conf.pm, 1.397.2.42, 1.397.2.43 cust_main.pm, 1.568.2.6, 1.568.2.7 Schema.pm, 1.239.2.32, 1.239.2.33

Erik Levinson levinse at wavetail.420.am
Sun Apr 24 10:04:42 PDT 2011


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

Modified Files:
      Tag: FREESIDE_2_1_BRANCH
	Conf.pm cust_main.pm Schema.pm 
Log Message:
add per-customer configurable billing date, RT10813

Index: Schema.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Schema.pm,v
retrieving revision 1.239.2.32
retrieving revision 1.239.2.33
diff -u -w -d -r1.239.2.32 -r1.239.2.33
--- Schema.pm	19 Apr 2011 23:49:41 -0000	1.239.2.32
+++ Schema.pm	24 Apr 2011 17:04:40 -0000	1.239.2.33
@@ -772,6 +772,7 @@
         'archived', 'char', 'NULL', 1, '', '',
         'email_csv_cdr', 'char', 'NULL', 1, '', '',
         'accountcode_cdr', 'char', 'NULL', 1, '', '',
+        'billday',   'int', 'NULL', '', '', '',
       ],
       'primary_key' => 'custnum',
       'unique' => [ [ 'agentnum', 'agent_custid' ] ],

Index: Conf.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Conf.pm,v
retrieving revision 1.397.2.42
retrieving revision 1.397.2.43
diff -u -w -d -r1.397.2.42 -r1.397.2.43
--- Conf.pm	13 Apr 2011 04:24:55 -0000	1.397.2.42
+++ Conf.pm	24 Apr 2011 17:04:39 -0000	1.397.2.43
@@ -676,6 +676,13 @@
   },
 
   {
+    'key'         => 'cust_main-select-billday',
+    'section'     => 'billing',
+    'description' => 'When used with a specific billing event, allows the selection of the day of month on which to charge credit card / bank account automatically, on a per-customer basis',
+    'type'        => 'checkbox',
+  },
+
+  {
     'key'         => 'encryption',
     'section'     => 'billing',
     'description' => 'Enable encryption of credit cards.',

Index: cust_main.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/cust_main.pm,v
retrieving revision 1.568.2.6
retrieving revision 1.568.2.7
diff -u -w -d -r1.568.2.6 -r1.568.2.7
--- cust_main.pm	27 Jan 2011 05:10:08 -0000	1.568.2.6
+++ cust_main.pm	24 Apr 2011 17:04:39 -0000	1.568.2.7
@@ -1652,6 +1652,7 @@
     || $self->ut_alphan('geocode')
     || $self->ut_floatn('cdr_termination_percentage')
     || $self->ut_floatn('credit_limit')
+    || $self->ut_numbern('billday')
   ;
 
   #barf.  need message catalogs.  i18n.  etc.



More information about the freeside-commits mailing list