[freeside-commits] freeside/FS/FS/part_event/Action fee.pm, 1.7, 1.8 cust_bill_fee_percent.pm, 1.7, 1.8
Ivan,,,
ivan at wavetail.420.am
Sun Oct 11 19:30:36 PDT 2009
Update of /home/cvs/cvsroot/freeside/FS/FS/part_event/Action
In directory wavetail.420.am:/tmp/cvs-serv3272
Modified Files:
fee.pm cust_bill_fee_percent.pm
Log Message:
fix for no finance_pkgclass set
Index: fee.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/part_event/Action/fee.pm,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- fee.pm 5 Oct 2009 00:49:34 -0000 1.7
+++ fee.pm 12 Oct 2009 02:30:34 -0000 1.8
@@ -32,7 +32,7 @@
'amount' => $self->option('charge'),
'pkg' => $self->option('reason'),
'taxclass' => $self->option('taxclass'),
- 'classnum' => $conf->config('finance_pkgclass'),
+ 'classnum' => scalar($conf->config('finance_pkgclass')),
'setuptax' => $self->option('setuptax'),
);
Index: cust_bill_fee_percent.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/part_event/Action/cust_bill_fee_percent.pm,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- cust_bill_fee_percent.pm 5 Oct 2009 00:49:34 -0000 1.7
+++ cust_bill_fee_percent.pm 12 Oct 2009 02:30:34 -0000 1.8
@@ -40,7 +40,7 @@
'amount' => $amount,
'pkg' => $self->option('reason'),
'taxclass' => $self->option('taxclass'),
- 'classnum' => $conf->config('finance_pkgclass'),
+ 'classnum' => scalar($conf->config('finance_pkgclass')),
'setuptax' => $self->option('setuptax'),
);
More information about the freeside-commits
mailing list