X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=htdocs%2Fedit%2Fcust_main.cgi;h=612d137b289f4bc9cb30aa2fe414a93a76ca93dc;hb=40e0a5460891d0b9e49233a1717b5914318a4289;hp=35b80fa148a21ecbb332d5d09b10c909e994e475;hpb=37dcdd94962587d6dbc3225439c91e46b0b623c5;p=freeside.git diff --git a/htdocs/edit/cust_main.cgi b/htdocs/edit/cust_main.cgi index 35b80fa14..612d137b2 100755 --- a/htdocs/edit/cust_main.cgi +++ b/htdocs/edit/cust_main.cgi @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: cust_main.cgi,v 1.10 1999-02-28 00:03:34 ivan Exp $ +# $Id: cust_main.cgi,v 1.17 1999-08-10 11:15:45 ivan Exp $ # # Usage: cust_main.cgi custnum # http://server.name/path/cust_main.cgi?custnum @@ -38,7 +38,27 @@ # fixed one missed day->daytime ivan@sisd.com 98-jul-13 # # $Log: cust_main.cgi,v $ -# Revision 1.10 1999-02-28 00:03:34 ivan +# Revision 1.17 1999-08-10 11:15:45 ivan +# corrected a misleading comment +# +# Revision 1.15 1999/04/14 13:14:54 ivan +# configuration option to edit referrals of existing customers +# +# Revision 1.14 1999/04/14 07:47:53 ivan +# i18n fixes +# +# Revision 1.13 1999/04/09 03:52:55 ivan +# explicit & for table/itable/ntable +# +# Revision 1.12 1999/04/06 11:16:16 ivan +# give a meaningful error message if you try to create a customer before you've +# created an agent +# +# Revision 1.11 1999/03/25 13:55:10 ivan +# one-screen new customer entry (including package and service) for simple +# packages with one svc_acct service +# +# Revision 1.10 1999/02/28 00:03:34 ivan # removed misleading comments # # Revision 1.9 1999/02/23 08:09:20 ivan @@ -83,8 +103,6 @@ use FS::part_referral; use FS::cust_main_county; #for misplaced logic below - use FS::pkg_svc; - use FS::part_svc; use FS::part_pkg; #for false laziness below @@ -97,6 +115,8 @@ use FS::cust_main_county; $cgi = new CGI; cgisuidsetup($cgi); +$conf = new FS::Conf; + #get record if ( $cgi->param('error') ) { @@ -104,7 +124,12 @@ if ( $cgi->param('error') ) { map { $_, scalar($cgi->param($_)) } fields('cust_main') } ); $custnum = $cust_main->custnum; - $pkgpart = $cgi->param('pkgpart'); + $pkgpart = $cgi->param('pkgpart_svcpart') || ''; + if ( $pkgpart =~ /^(\d+)_/ ) { + $pkgpart = $1; + } else { + $pkgpart = ''; + } $username = $cgi->param('username'); $password = $cgi->param('_password'); $popnum = $cgi->param('popnum'); @@ -146,6 +171,7 @@ print qq!
!, $r = qq!*!; @agents = qsearch( 'agent', {} ); +die "No agents created!" unless @agents; $agentnum = $cust_main->agentnum || $agents[0]->agentnum; #default to first if ( scalar(@agents) == 1 ) { print qq!!; @@ -165,7 +191,7 @@ if ( scalar(@agents) == 1 ) { #referral $refnum = $cust_main->refnum || 0; -if ( $custnum ) { +if ( $custnum && ! $conf->exists('editreferrals') ) { print qq!!; } else { my(@referrals) = qsearch('part_referral',{}); @@ -174,7 +200,7 @@ if ( $custnum ) { print qq!!; } else { print qq!

${r}Referral , SS# Company ${r}Address @@ -263,7 +289,7 @@ sub expselect { $return; } -print "
Billing information", itable("#c0c0c0"), +print "
Billing information", &itable("#c0c0c0"), qq!tax eq "Y"; print qq!>Tax Exempt!; @@ -277,7 +303,7 @@ print qq!Email invoice Billing type", "", - table("#c0c0c0"), ""; + &table("#c0c0c0"), ""; ($payinfo, $payname)=( $cust_main->payinfo, @@ -307,65 +333,40 @@ print "$r required fields for each billing type"; unless ( $custnum ) { # pry the wrong place for this logic. also pretty expensive - #use FS::pkg_svc; - #use FS::part_svc; #use FS::part_pkg; #false laziness, copied from FS::cust_pkg::order - my %part_pkg; + my $pkgpart; if ( scalar(@agents) == 1 ) { - # generate %part_pkg - # $part_pkg{$pkgpart} is true iff $custnum may purchase $pkgpart - #my($cust_main)=qsearchs('cust_main',{'custnum'=>$custnum}); - #my($agent)=qsearchs('agent',{'agentnum'=> $cust_main->agentnum }); + # $pkgpart->{PKGPART} is true iff $custnum may purchase $pkgpart my($agent)=qsearchs('agent',{'agentnum'=> $agentnum }); - - my($type_pkgs); - foreach $type_pkgs ( qsearch('type_pkgs',{'typenum'=> $agent->typenum }) ) { - my($pkgpart)=$type_pkgs->pkgpart; - $part_pkg{$pkgpart}++; - } + $pkgpart = $agent->pkgpart_hashref; } else { #can't know (agent not chosen), so, allow all my %typenum; foreach my $agent ( @agents ) { next if $typenum{$agent->typenum}++; - foreach my $type_pkgs ( qsearch('type_pkgs',{'typenum'=> $agent->typenum }) ) { - my($pkgpart)=$type_pkgs->pkgpart; - $part_pkg{$pkgpart}++; - } + $pkgpart->{$_}++ foreach keys %{ $agent->pkgpart_hashref } } - } #eslaf - my %pkgpart; - #foreach ( @pkg_svc ) { - foreach ( qsearch( 'pkg_svc', {} ) ) { - my $part_svc = qsearchs ( 'part_svc', { 'svcpart' => $_->svcpart } ); - $pkgpart{ $_->pkgpart } = 9999 # never will == 1 below - if ( $part_svc->svcdb ne 'svc_acct' ); - $pkgpart{ $_->pkgpart }++; - } - - my @part_pkg = - #grep { $pkgpart{ $_->pkgpart } == 1 } qsearch( 'part_pkg', {} ); - grep { - ( $pkgpart{ $_->pkgpart } || 0 ) == 1 - && $part_pkg{ $_->pkgpart } - } qsearch( 'part_pkg', {} ); + my @part_pkg = grep { $_->svcpart('svc_acct') && $pkgpart->{ $_->pkgpart } } + qsearch( 'part_pkg', {} ); if ( @part_pkg ) { - print "

First package", itable("#c0c0c0"), - qq!!; print qq!