[freeside-commits] branch FREESIDE_3_BRANCH updated. 6959e1e35908df64676d9626711e70b66715575d
Ivan
ivan at 420.am
Tue Aug 12 15:31:02 PDT 2014
The branch, FREESIDE_3_BRANCH has been updated
via 6959e1e35908df64676d9626711e70b66715575d (commit)
from bd876bcd42a0ce8d1e44d87ba6c517cf6106ca37 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 6959e1e35908df64676d9626711e70b66715575d
Author: Ivan Kohler <ivan at freeside.biz>
Date: Tue Aug 12 15:31:01 2014 -0700
agent wholesale bulk billing: respect date_format setting for details, RT#30484
diff --git a/FS/FS/part_pkg/agent.pm b/FS/FS/part_pkg/agent.pm
index 187b2ba..62cf185 100644
--- a/FS/FS/part_pkg/agent.pm
+++ b/FS/FS/part_pkg/agent.pm
@@ -59,6 +59,7 @@ sub calc_recur {
my $conf = new FS::Conf;
my $money_char = $conf->config('money_char') || '$';
+ my $date_format = $conf->config('date_format') || '%m/%d/%Y';
my $total_agent_charge = 0;
@@ -140,8 +141,8 @@ sub calc_recur {
my $recur_charge += $pkg_recur_charge;
$pkg_details .= $money_char. sprintf('%.2f', $recur_charge ).
- ' ('. time2str('%x', $pkg_start).
- ' - '. time2str('%x', $pkg_end ). ')'
+ ' ('. time2str($date_format, $pkg_start).
+ ' - '. time2str($date_format, $pkg_end ). ')'
if $recur_charge;
$pkg_charge += $recur_charge;
-----------------------------------------------------------------------
Summary of changes:
FS/FS/part_pkg/agent.pm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
More information about the freeside-commits
mailing list