[freeside-commits] freeside/FS/FS Schema.pm, 1.239.2.34, 1.239.2.35 cust_pkg.pm, 1.179.2.21, 1.179.2.22

Erik Levinson levinse at wavetail.420.am
Sun Apr 24 21:37:13 PDT 2011


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

Modified Files:
      Tag: FREESIDE_2_1_BRANCH
	Schema.pm cust_pkg.pm 
Log Message:
add waive setup fee upon package order feature, RT12568

Index: Schema.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Schema.pm,v
retrieving revision 1.239.2.34
retrieving revision 1.239.2.35
diff -u -w -d -r1.239.2.34 -r1.239.2.35
--- Schema.pm	25 Apr 2011 04:00:04 -0000	1.239.2.34
+++ Schema.pm	25 Apr 2011 04:37:10 -0000	1.239.2.35
@@ -1339,6 +1339,7 @@
         'no_auto',            'char', 'NULL',  1, '', '', 
         'quantity',            'int', 'NULL', '', '', '',
         'agent_pkgid',         'int', 'NULL', '', '', '',
+        'waive_setup',        'char', 'NULL',  1, '', '', 
       ],
       'primary_key' => 'pkgnum',
       'unique' => [],

Index: cust_pkg.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/cust_pkg.pm,v
retrieving revision 1.179.2.21
retrieving revision 1.179.2.22
diff -u -w -d -r1.179.2.21 -r1.179.2.22
--- cust_pkg.pm	10 Mar 2011 09:42:09 -0000	1.179.2.21
+++ cust_pkg.pm	25 Apr 2011 04:37:11 -0000	1.179.2.22
@@ -194,6 +194,8 @@
 
 Previous locationnum
 
+=item waive_setup
+
 =back
 
 Note: setup, last_bill, bill, adjourn, susp, expire, cancel and change_date
@@ -594,6 +596,7 @@
     || $self->ut_numbern('adjourn')
     || $self->ut_numbern('expire')
     || $self->ut_enum('no_auto', [ '', 'Y' ])
+    || $self->ut_enum('waive_setup', [ '', 'Y' ])
     || $self->ut_numbern('agent_pkgid')
   ;
   return $error if $error;



More information about the freeside-commits mailing list