From 93ef7394a93db7b5543d60e93a074db52fa5ddfa Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 16 Apr 2008 04:43:00 +0000 Subject: [PATCH] add plan & pricing to package browse... --- httemplate/browse/part_pkg.cgi | 56 +++++++++++++++++++++++++++++++++++------- httemplate/edit/part_pkg.cgi | 3 --- 2 files changed, 47 insertions(+), 12 deletions(-) diff --git a/httemplate/browse/part_pkg.cgi b/httemplate/browse/part_pkg.cgi index 78cb77d26..77f6261d6 100755 --- a/httemplate/browse/part_pkg.cgi +++ b/httemplate/browse/part_pkg.cgi @@ -6,7 +6,7 @@ 'disabled_statuspos' => 3, 'agent_virt' => 1, 'agent_null_right' => 'Edit global package definitions', - 'agent_pos' => 4, + 'agent_pos' => 5, 'query' => { 'select' => $select, 'table' => 'part_pkg', 'hashref' => {}, @@ -55,6 +55,7 @@ if ( $cgi->param('active') ) { my $conf = new FS::Conf; my $taxclasses = $conf->exists('enable_taxclasses'); +my $money_char = $conf->config('money_char') || '$'; my $html_init; #unless ( $cgi->param('active') ) { @@ -82,6 +83,49 @@ unless ( 0 ) { #already showing only one class or something? $align .= 'l'; } +tie my %plans, 'Tie::IxHash', %{ FS::part_pkg::plan_info() }; + +tie my %plan_labels, 'Tie::IxHash', + map { $_ => ( $plans{$_}->{'shortname'} || $plans{$_}->{'name'} ) } + keys %plans; + +push @header, 'Pricing'; +$align .= 'r'; #? +push @fields, sub { + my $part_pkg = shift; + + [ + [ + { data=>$plan_labels{$part_pkg->plan}, + align=>'center' + }, + ], + [ + { data=>$money_char. + sprintf('%.2f setup', $part_pkg->option('setup_fee') ), + align=>'right' + }, + ], + [ + { data=>( $part_pkg->freq ne '0' + ? $money_char.sprintf('%.2f ', $part_pkg->option('recur_fee') ) + : '' + ). + $part_pkg->freq_pretty, + align=>'right' + }, + ], + ]; + +# $plan_labels{$part_pkg->plan}.'
'. +# $money_char.sprintf('%.2f setup
', $part_pkg->option('setup_fee') ). +# ( $part_pkg->freq ne '0' +# ? $money_char.sprintf('%.2f ', $part_pkg->option('recur_fee') ) +# : '' +# ). +# $part_pkg->freq_pretty; #.'
' +}; + #if ( $cgi->param('active') ) { push @header, 'Customer
packages'; my %col = ( @@ -131,23 +175,17 @@ unless ( 0 ) { #already showing only one class or something? $align .= 'r'; #} -push @header, 'Frequency'; -push @fields, sub { shift->freq_pretty; }; -$align .= 'l'; - if ( $taxclasses ) { push @header, 'Taxclass'; push @fields, sub { shift->taxclass() || ' '; }; $align .= 'l'; } -push @header, 'Plan', - 'Data', +push @header, 'Plan options', 'Services'; #'Service', 'Quan', 'Primary'; -push @fields, sub { shift->plan || '(legacy)' }, - +push @fields, sub { my $part_pkg = shift; if ( $part_pkg->plan ) { diff --git a/httemplate/edit/part_pkg.cgi b/httemplate/edit/part_pkg.cgi index bc165cf9d..2468f304a 100755 --- a/httemplate/edit/part_pkg.cgi +++ b/httemplate/edit/part_pkg.cgi @@ -148,9 +148,6 @@ die "access denied" #XXX # - tr-part_pkg_freq: month_increments_only (from price plans) -# - test editing -# - write edit bits for new m2ms -# - display add-ons in (existing) edit # - display add-ons in browse... yeah # -QIS- thank goodness # - test cloning -- 2.11.0