From e03f1de6578f009f306d92ec713b533e799330cd Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Tue, 12 Aug 2014 15:31:00 -0700 Subject: [PATCH] agent wholesale bulk billing: respect date_format setting for details, RT#30484 --- FS/FS/part_pkg/agent.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/FS/FS/part_pkg/agent.pm b/FS/FS/part_pkg/agent.pm index b122ff19c..bc3c37409 100644 --- a/FS/FS/part_pkg/agent.pm +++ b/FS/FS/part_pkg/agent.pm @@ -56,6 +56,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; @@ -137,8 +138,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; -- 2.11.0