diff options
Diffstat (limited to 'FS-Test')
52 files changed, 2682 insertions, 13427 deletions
diff --git a/FS-Test/Makefile.PL b/FS-Test/Makefile.PL deleted file mode 100644 index cea088a4c..000000000 --- a/FS-Test/Makefile.PL +++ /dev/null @@ -1,34 +0,0 @@ -use 5.006; -use strict; -use warnings FATAL => 'all'; -use ExtUtils::MakeMaker; -use File::ShareDir::Install; - -install_share dist => 'share'; - -WriteMakefile( - NAME => 'FS::Test', - AUTHOR => q{Mark Wells <mark@freeside.biz>}, - VERSION_FROM => 'lib/FS/Test.pm', - ABSTRACT => 'Freeside test suite', - LICENSE => 'agpl_3', - PL_FILES => {}, - EXE_FILES => [ glob 'bin/*' ], - MIN_PERL_VERSION => 5.006, - CONFIGURE_REQUIRES => { - 'ExtUtils::MakeMaker' => 0, - 'File::ShareDir::Install' => 0, - }, - BUILD_REQUIRES => { - 'Test::More' => 0, - }, - PREREQ_PM => { - 'WWW::Mechanize' => 0, - }, - dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, - clean => { FILES => 'FS-Test-*' }, -); - -package MY; -use File::ShareDir::Install qw(postamble); - diff --git a/FS-Test/README b/FS-Test/README index b1518bd6f..8e9681cef 100644 --- a/FS-Test/README +++ b/FS-Test/README @@ -2,42 +2,36 @@ FS-Test INSTALLATION -To install this module, install Freeside as usual. Then run the following -commands: - - perl Makefile.PL - make - make install - -INITIALIZATION - -Run "freeside-test-start" from an account that can sudo to root. This will -create a database with the test image and set the system clock to one day -after the last bill. If there's an existing Freeside database, it will be -renamed to "freeside_YYYYMMDD" (the current date). - -To restore the system clock and put the existing database back in place, -run "freeside-test-stop". +This module no longer needs to be installed. Run it directly from the source +tree. RUNNING TESTS -"freeside-test-run" is the main test script. Currently there's only one -test plan, "ui_tests". freeside-test-run will: +"freeside-test-run" is the main test script. Currently there's only one test +plan, "ui_tests". freeside-test-run will: - download all the URLs listed in the test plan into a directory in /tmp - compare them to the reference versions with "diff -ur" - write the output to "freeside_test.YYYYMMDD.diff" -- display the results of "diffstat" on that diff The raw output directory will not be deleted, so you can examine the results -yourself. This is recommended for files that don't diff nicely like Excel -versions of reports and PDF invoices. +yourself. + +If you want to do anything with the database besides compare the test results +to reference, run "freeside-test-start" by hand first. This will create a +database with the test image and start Apache with a fake time of one day after +the last bill. If there's an existing Freeside database, it will be renamed to +"freeside_YYYYMMDD" (the current date). + +To put the existing database back in place, run "freeside-test-stop", then +restart Apache and any Freeside services. UPDATING THE REFERENCE PAGES The simplest way to update the reference copies of the test pages is -freeside-test-fetch -d ./share/output +bin/freeside-test-start +bin/freeside-test-fetch -d ./share/output (from the FS-Test source directory). If you're installing from a git repo, this will overwrite the working tree with the newly downloaded test pages. diff --git a/FS-Test/bin/freeside-test-fetch b/FS-Test/bin/freeside-test-fetch index ccc8528ff..953005704 100755 --- a/FS-Test/bin/freeside-test-fetch +++ b/FS-Test/bin/freeside-test-fetch @@ -1,8 +1,14 @@ #!/usr/bin/perl use strict; -use FS::Test; use Getopt::Std; +use File::Spec; + +my @dirs = File::Spec->splitdir(File::Spec->rel2abs(__FILE__)); +splice @dirs, -2; # bin/freeside-test-run +push @INC, File::Spec->catdir( @dirs, 'lib' ); +eval "use FS::Test;"; +die $@ if $@; my %opt; diff --git a/FS-Test/bin/freeside-test-run b/FS-Test/bin/freeside-test-run index add1e9b25..853bdc9a8 100644..100755 --- a/FS-Test/bin/freeside-test-run +++ b/FS-Test/bin/freeside-test-run @@ -2,18 +2,20 @@ set -ae -tempdir=$( mktemp -d freeside-test.XXXX ) -sharedir=$(perl -MFS::Test -e "print FS::Test::share_dir()") +tempdir=$( mktemp -d --tmpdir freeside-test.XXXX ) +# get the parent directory of bin/(this script) +testroot=$( dirname ${BASH_SOURCE[0]} ) +testroot=$( cd $testroot; cd ..; pwd ) echo "Starting test mode." -freeside-test-start +$testroot/bin/freeside-test-start echo "Saving results to $tempdir." -freeside-test-fetch -d $tempdir +$testroot/bin/freeside-test-fetch -d $tempdir echo "Exiting test mode." -freeside-test-stop || true +$testroot/bin/freeside-test-stop || true diffname=freeside-test.`date +%Y%m%d`.diff echo "Writing diff to $diffname." -diff -urb "$sharedir/output" "$tempdir" > $diffname +diff -urb "$testroot/share/output" "$tempdir" > $diffname diffstat -C $diffname diff --git a/FS-Test/bin/freeside-test-start b/FS-Test/bin/freeside-test-start index 4f12e325b..ed8e131a9 100755 --- a/FS-Test/bin/freeside-test-start +++ b/FS-Test/bin/freeside-test-start @@ -4,12 +4,15 @@ VERSION='5.0.1' set -ae +# get the parent directory of bin/(this script) +testroot=$( dirname ${BASH_SOURCE[0]} ) +testroot=$( cd $testroot; cd ..; pwd ) + echo "Stopping services." sudo service freeside stop sudo service apache2 stop newname=freeside_`date +%Y%m%d` -sharedir=$(perl -MFS::Test -e "print FS::Test::share_dir()") # get company_name from existing DB, strip whitespace # (if there is no existing DB, continue anyway) @@ -34,7 +37,7 @@ fi if [ $createdb = YES ]; then echo "Creating new database from stock schema." createdb --owner=freeside freeside - sudo -u freeside psql freeside -q -f $sharedir/test.sql > /dev/null + sudo -u freeside psql freeside -q -f $testroot/share/test.sql > /dev/null fi newtime=$(sudo -u freeside \ diff --git a/FS-Test/bin/freeside-test-stop b/FS-Test/bin/freeside-test-stop index 7c67f54ec..6ec505a1f 100755 --- a/FS-Test/bin/freeside-test-stop +++ b/FS-Test/bin/freeside-test-stop @@ -24,9 +24,6 @@ oldname=$( psql -tl | \ if [ -n "$oldname" ]; then echo "Renaming $oldname to freeside." psql postgres -c "ALTER DATABASE $oldname RENAME TO freeside" - echo "Restarting services." - sudo service apache2 restart - sudo service freeside restart fi echo "Done." diff --git a/FS-Test/lib/FS/Test.pm b/FS-Test/lib/FS/Test.pm index aedf502b5..bc9797779 100644 --- a/FS-Test/lib/FS/Test.pm +++ b/FS-Test/lib/FS/Test.pm @@ -4,14 +4,15 @@ use 5.006; use strict; use warnings FATAL => 'all'; -use File::ShareDir 'dist_dir'; +#use File::ShareDir 'dist_dir'; use WWW::Mechanize; use File::chdir; use URI; use File::Slurp qw(write_file); use Class::Accessor 'antlers'; +use File::Spec; -our $VERSION = '0.01'; +our $VERSION = '0.02'; =head1 NAME @@ -29,7 +30,11 @@ database image, the test plan, and probably other stuff. =cut sub share_dir { - dist_dir('FS-Test') +# dist_dir('FS-Test') +# we no longer install this anywhere + my @dirs = File::Spec->splitdir(File::Spec->rel2abs(__FILE__)); + splice @dirs, -3; # lib/FS/Test.pm + File::Spec->catdir( @dirs, 'share' ); } =item new OPTIONS diff --git a/FS-Test/share/output/browse/part_pkg.cgi/active=1 b/FS-Test/share/output/browse/part_pkg.cgi/active=1 index 6eeffd57a..5f5f8a313 100644 --- a/FS-Test/share/output/browse/part_pkg.cgi/active=1 +++ b/FS-Test/share/output/browse/part_pkg.cgi/active=1 @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -1131,7 +1131,7 @@ function filter_change() { window.location = 'http://localhost/freeside/browse/ - <TD CLASS="grid" ALIGN=left ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">prorate_round_day: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">prorate_verbose: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">cutoff_day: </td><TD ALIGN="left">1</td></tr></table></TD> + <TD CLASS="grid" ALIGN=left ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">cutoff_day: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">prorate_round_day: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">prorate_verbose: </td><TD ALIGN="left">1</td></tr></table></TD> @@ -1185,7 +1185,7 @@ function filter_change() { window.location = 'http://localhost/freeside/browse/ - <TD CLASS="grid" ALIGN=left ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">prorate_round_day: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">prorate_verbose: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">cutoff_day: </td><TD ALIGN="left">1</td></tr></table></TD> + <TD CLASS="grid" ALIGN=left ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">cutoff_day: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">prorate_round_day: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">prorate_verbose: </td><TD ALIGN="left">1</td></tr></table></TD> diff --git a/FS-Test/share/output/browse/part_svc.cgi/orderby=active b/FS-Test/share/output/browse/part_svc.cgi/orderby=active index 3ce994cf8..ce7d11994 100644 --- a/FS-Test/share/output/browse/part_svc.cgi/orderby=active +++ b/FS-Test/share/output/browse/part_svc.cgi/orderby=active @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -962,7 +962,7 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">sec_phrase</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">blocknum</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"></TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -974,8 +974,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">popnum</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Access number</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">cf_privatekey</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee"></TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -986,8 +986,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">sectornum</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Tower sector</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">dir</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Home directory</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -998,20 +998,21 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">uid</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">UID</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">domsvc</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Domain</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> - + 1 </TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> + Yes </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">gid</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">GID</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">finger</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Real name</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1022,8 +1023,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">finger</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Real name</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">gid</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">GID</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1034,8 +1035,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">dir</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Home directory</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">pbxsvc</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">PBX</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1046,8 +1047,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">shell</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Shell</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">popnum</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Access number</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1070,8 +1071,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">slipip</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">IP address</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">routernum</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee"></TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1082,7 +1083,7 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">routernum</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">sec_phrase</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"></TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1094,8 +1095,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">blocknum</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee"></TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">sectornum</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Tower sector</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1106,21 +1107,20 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">domsvc</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Domain</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">shell</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Shell</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> - 1 + </TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> - Yes </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">pbxsvc</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">PBX</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">slipip</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">IP address</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1131,8 +1131,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">cf_privatekey</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee"></TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">uid</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">UID</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1188,8 +1188,8 @@ function part_export_areyousure(href) { - <TD CLASS="grid" BGCOLOR="#ffffff">suffix</TD> - <TD CLASS="grid" BGCOLOR="#ffffff"></TD> + <TD CLASS="grid" BGCOLOR="#ffffff">au_eligibility_type</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">AU Eligibility Type</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1200,8 +1200,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">catchall</TD> - <TD CLASS="grid" BGCOLOR="#ffffff"></TD> + <TD CLASS="grid" BGCOLOR="#ffffff">au_registrant_name</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">AU Registrant Name</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1212,8 +1212,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">quota</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">Quota</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">catchall</TD> + <TD CLASS="grid" BGCOLOR="#ffffff"></TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1224,7 +1224,7 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">registrarnum</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">expiration_date</TD> <TD CLASS="grid" BGCOLOR="#ffffff"></TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1236,8 +1236,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">registrarkey</TD> - <TD CLASS="grid" BGCOLOR="#ffffff"></TD> + <TD CLASS="grid" BGCOLOR="#ffffff">quota</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">Quota</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1248,7 +1248,7 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">setup_date</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">registrarkey</TD> <TD CLASS="grid" BGCOLOR="#ffffff"></TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1260,7 +1260,7 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">renewal_interval</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">registrarnum</TD> <TD CLASS="grid" BGCOLOR="#ffffff"></TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1272,7 +1272,7 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">expiration_date</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">renewal_interval</TD> <TD CLASS="grid" BGCOLOR="#ffffff"></TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1284,8 +1284,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">au_registrant_name</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">AU Registrant Name</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">setup_date</TD> + <TD CLASS="grid" BGCOLOR="#ffffff"></TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1296,8 +1296,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">au_eligibility_type</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">AU Eligibility Type</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">suffix</TD> + <TD CLASS="grid" BGCOLOR="#ffffff"></TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1341,8 +1341,8 @@ function part_export_areyousure(href) { - <TD CLASS="grid" BGCOLOR="#eeeeee">description</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Descriptive label</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">altitude</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Altitude</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1353,8 +1353,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">routernum</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Router/block</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">authkey</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Authentication key</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1377,8 +1377,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">sectornum</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Tower/sector</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">description</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Descriptive label</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1389,32 +1389,32 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">speed_up</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Upload speed (Kbps)</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">latitude</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Latitude</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> - 1024 + </TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">speed_down</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Download speed (Kbps)</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">longitude</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Longitude</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> - 1024 + </TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">authkey</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Authentication key</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">performance_profile</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Peformance Profile</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1425,8 +1425,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">latitude</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Latitude</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">plan_id</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Service Plan Id</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1437,8 +1437,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">longitude</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Longitude</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">poe_location</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">POE Location</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1449,8 +1449,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">altitude</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Altitude</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">radio_location</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Radio Location</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1461,8 +1461,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">vlan_profile</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">VLAN profile</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">radio_serialnum</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Radio Serial Number</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1473,8 +1473,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">performance_profile</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Peformance Profile</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">routernum</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Router/block</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1485,8 +1485,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">plan_id</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Service Plan Id</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">rssi</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">RSSI</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1497,8 +1497,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">radio_serialnum</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Radio Serial Number</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">sectornum</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Tower/sector</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1509,8 +1509,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">radio_location</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Radio Location</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">serviceid</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Torrus serviceid</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1521,8 +1521,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">poe_location</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">POE Location</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">shared_svcnum</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Shared Service</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1533,32 +1533,32 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">rssi</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">RSSI</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">speed_down</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Download speed (Kbps)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> - + 1024 </TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">suid</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">SUID</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">speed_up</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">Upload speed (Kbps)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> - + 1024 </TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">shared_svcnum</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Shared Service</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">suid</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">SUID</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1569,8 +1569,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#eeeeee">serviceid</TD> - <TD CLASS="grid" BGCOLOR="#eeeeee">Torrus serviceid</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">vlan_profile</TD> + <TD CLASS="grid" BGCOLOR="#eeeeee">VLAN profile</TD> <TD CLASS="grid" BGCOLOR="#eeeeee">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#eeeeee"> @@ -1614,8 +1614,8 @@ function part_export_areyousure(href) { - <TD CLASS="grid" BGCOLOR="#ffffff">countrycode</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">Country code</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">circuit_svcnum</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">Circuit</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1626,20 +1626,20 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">sim_imsi</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">IMSI</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">countrycode</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">Country code</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> - + 1 </TD> <TD CLASS="grid" BGCOLOR="#ffffff"> </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">phone_name</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">Name</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">domsvc</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">Domain</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1650,8 +1650,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">pbxsvc</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">PBX</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">e911_class</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">E911 Service Class</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1662,8 +1662,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">domsvc</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">Domain</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">e911_type</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">E911 Service Type</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1674,8 +1674,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">forwarddst</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">Forward Destination</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">email</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">Email</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1686,8 +1686,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">email</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">Email</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">forwarddst</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">Forward Destination</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1698,8 +1698,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">lnp_status</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">LNP Status</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">lnp_desired_due_date</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">LNP Desired Due Date</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1710,8 +1710,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">portable</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">Portable?</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">lnp_due_date</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">LNP Due Date</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1722,8 +1722,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">lrn</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">LRN</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">lnp_other_provider</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">LNP Other Provider</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1734,8 +1734,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">lnp_desired_due_date</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">LNP Desired Due Date</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">lnp_other_provider_account</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">LNP Other Provider Account #</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1746,8 +1746,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">lnp_due_date</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">LNP Due Date</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">lnp_reject_reason</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">LNP Reject Reason</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1758,8 +1758,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">lnp_other_provider</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">LNP Other Provider</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">lnp_status</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">LNP Status</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1770,8 +1770,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">lnp_other_provider_account</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">LNP Other Provider Account #</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">lrn</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">LRN</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1782,8 +1782,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">lnp_reject_reason</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">LNP Reject Reason</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">max_simultaneous</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">Maximum number of simultaneous users</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1794,8 +1794,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">sms_carrierid</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">SMS Carrier</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">pbxsvc</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">PBX</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1806,8 +1806,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">sms_account</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">SMS Carrier Account</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">phone_name</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">Name</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1818,8 +1818,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">max_simultaneous</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">Maximum number of simultaneous users</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">portable</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">Portable?</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1830,8 +1830,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">e911_class</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">E911 Service Class</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">sim_imsi</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">IMSI</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1842,8 +1842,8 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">e911_type</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">E911 Service Type</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">sip_server</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">SIP Host</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> @@ -1854,20 +1854,20 @@ function part_export_areyousure(href) { </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">circuit_svcnum</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">Circuit</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">sms_account</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">SMS Carrier Account</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> - 1 + </TD> <TD CLASS="grid" BGCOLOR="#ffffff"> </TD> </TR><TR> - <TD CLASS="grid" BGCOLOR="#ffffff">sip_server</TD> - <TD CLASS="grid" BGCOLOR="#ffffff">SIP Host</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">sms_carrierid</TD> + <TD CLASS="grid" BGCOLOR="#ffffff">SMS Carrier</TD> <TD CLASS="grid" BGCOLOR="#ffffff">Fixed (unchangeable)</TD> <TD CLASS="grid" BGCOLOR="#ffffff"> diff --git a/FS-Test/share/output/edit/cust_main-contacts.html/135 b/FS-Test/share/output/edit/cust_main-contacts.html/135 index 6dd5bd895..ae160d6f1 100644 --- a/FS-Test/share/output/edit/cust_main-contacts.html/135 +++ b/FS-Test/share/output/edit/cust_main-contacts.html/135 @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/edit/cust_main.cgi/135 b/FS-Test/share/output/edit/cust_main.cgi/135 index 84196c7cc..3f60d0069 100644 --- a/FS-Test/share/output/edit/cust_main.cgi/135 +++ b/FS-Test/share/output/edit/cust_main.cgi/135 @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/edit/part_pkg.cgi/2 b/FS-Test/share/output/edit/part_pkg.cgi/2 index 8a9f1fc00..798351f2d 100644 --- a/FS-Test/share/output/edit/part_pkg.cgi/2 +++ b/FS-Test/share/output/edit/part_pkg.cgi/2 @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -1325,11 +1325,6 @@ function confirm_submit(f) { >Anniversary, with intro price</OPTION> - <OPTION VALUE="prorate_calendar" - - >Prorate (calendar cycle)</OPTION> - - <OPTION VALUE="prorate" SELECTED >Prorate (Nth of month billing)</OPTION> @@ -1340,6 +1335,11 @@ function confirm_submit(f) { >Prorate (Nth of month billing), with intro period</OPTION> + <OPTION VALUE="prorate_calendar" + + >Prorate (calendar cycle)</OPTION> + + <OPTION VALUE="prepaid" >Prepaid, no automatic cycle</OPTION> @@ -3742,10 +3742,15 @@ spawn_bill_dst_pkgpart(this);" <TR> <TD CLASS="background" COLSPAN=99> +<SCRIPT> +var provision_hold_td = []; +var provision_hold_input = []; +</SCRIPT> + <TABLE BORDER=0 CELLSPACING=4 ><TR><TD VALIGN="top"> -<TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Quan.</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Primary</FONT></TH><TH BGCOLOR="#dcdcdc">Service</TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Hide<BR>from<BR>Invoices</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Bulk<BR>Charge</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Hold<BR>Until<BR>Provision</FONT></TH></TR> +<TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Quan.</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Primary</FONT></TH><TH BGCOLOR="#dcdcdc">Service</TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Hide<BR>from<BR>Invoices</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Bulk<BR>Charge</FONT></TH><TH BGCOLOR="#dcdcdc" ID="th_provision_hold1"><FONT SIZE=-1>Remove Hold After Provisioning</FONT></TH></TR><SCRIPT>provision_hold_td.push(document.getElementById('th_provision_hold1'))</SCRIPT> <TR> @@ -3769,9 +3774,13 @@ spawn_bill_dst_pkgpart(this);" <INPUT TYPE="checkbox" NAME="no_bulk_skip1" VALUE="Y" CHECKED> </TD> - <TD ALIGN="center"> - <INPUT TYPE="checkbox" NAME="provision_hold1" VALUE="Y"> + <TD ALIGN="center" ID="td_provision_hold1"> + <INPUT TYPE="checkbox" ID="input_provision_hold1" NAME="provision_hold1" VALUE="Y"> </TD> +<SCRIPT> +provision_hold_td.push(document.getElementById('td_provision_hold1')); +provision_hold_input.push(document.getElementById('input_provision_hold1')); +</SCRIPT> </TR> @@ -3796,15 +3805,19 @@ spawn_bill_dst_pkgpart(this);" <INPUT TYPE="checkbox" NAME="no_bulk_skip2" VALUE="Y" CHECKED> </TD> - <TD ALIGN="center"> - <INPUT TYPE="checkbox" NAME="provision_hold2" VALUE="Y"> + <TD ALIGN="center" ID="td_provision_hold2"> + <INPUT TYPE="checkbox" ID="input_provision_hold2" NAME="provision_hold2" VALUE="Y"> </TD> +<SCRIPT> +provision_hold_td.push(document.getElementById('td_provision_hold2')); +provision_hold_input.push(document.getElementById('input_provision_hold2')); +</SCRIPT> </TR> </TABLE></TD><TD VALIGN="top"> -<TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Quan.</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Primary</FONT></TH><TH BGCOLOR="#dcdcdc">Service</TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Hide<BR>from<BR>Invoices</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Bulk<BR>Charge</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Hold<BR>Until<BR>Provision</FONT></TH></TR> +<TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Quan.</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Primary</FONT></TH><TH BGCOLOR="#dcdcdc">Service</TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Hide<BR>from<BR>Invoices</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Bulk<BR>Charge</FONT></TH><TH BGCOLOR="#dcdcdc" ID="th_provision_hold2"><FONT SIZE=-1>Remove Hold After Provisioning</FONT></TH></TR><SCRIPT>provision_hold_td.push(document.getElementById('th_provision_hold2'))</SCRIPT> <TR> <TD> @@ -3827,9 +3840,13 @@ spawn_bill_dst_pkgpart(this);" <INPUT TYPE="checkbox" NAME="no_bulk_skip3" VALUE="Y" CHECKED> </TD> - <TD ALIGN="center"> - <INPUT TYPE="checkbox" NAME="provision_hold3" VALUE="Y"> + <TD ALIGN="center" ID="td_provision_hold3"> + <INPUT TYPE="checkbox" ID="input_provision_hold3" NAME="provision_hold3" VALUE="Y"> </TD> +<SCRIPT> +provision_hold_td.push(document.getElementById('td_provision_hold3')); +provision_hold_input.push(document.getElementById('input_provision_hold3')); +</SCRIPT> </TR> @@ -3854,15 +3871,19 @@ spawn_bill_dst_pkgpart(this);" <INPUT TYPE="checkbox" NAME="no_bulk_skip4" VALUE="Y" CHECKED> </TD> - <TD ALIGN="center"> - <INPUT TYPE="checkbox" NAME="provision_hold4" VALUE="Y"> + <TD ALIGN="center" ID="td_provision_hold4"> + <INPUT TYPE="checkbox" ID="input_provision_hold4" NAME="provision_hold4" VALUE="Y"> </TD> +<SCRIPT> +provision_hold_td.push(document.getElementById('td_provision_hold4')); +provision_hold_input.push(document.getElementById('input_provision_hold4')); +</SCRIPT> </TR> </TABLE></TD><TD VALIGN="top"> -<TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Quan.</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Primary</FONT></TH><TH BGCOLOR="#dcdcdc">Service</TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Hide<BR>from<BR>Invoices</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Bulk<BR>Charge</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Hold<BR>Until<BR>Provision</FONT></TH></TR> +<TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Quan.</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Primary</FONT></TH><TH BGCOLOR="#dcdcdc">Service</TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Hide<BR>from<BR>Invoices</FONT></TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Bulk<BR>Charge</FONT></TH><TH BGCOLOR="#dcdcdc" ID="th_provision_hold3"><FONT SIZE=-1>Remove Hold After Provisioning</FONT></TH></TR><SCRIPT>provision_hold_td.push(document.getElementById('th_provision_hold3'))</SCRIPT> <TR> <TD> @@ -3885,14 +3906,42 @@ spawn_bill_dst_pkgpart(this);" <INPUT TYPE="checkbox" NAME="no_bulk_skip5" VALUE="Y" CHECKED> </TD> - <TD ALIGN="center"> - <INPUT TYPE="checkbox" NAME="provision_hold5" VALUE="Y"> + <TD ALIGN="center" ID="td_provision_hold5"> + <INPUT TYPE="checkbox" ID="input_provision_hold5" NAME="provision_hold5" VALUE="Y"> </TD> +<SCRIPT> +provision_hold_td.push(document.getElementById('td_provision_hold5')); +provision_hold_input.push(document.getElementById('input_provision_hold5')); +</SCRIPT> </TR> </TR></TABLE></TD></TR></TABLE> +<SCRIPT> +// start_on_hold from edit/part_pkg.cgi +// toggles display of provision_hold checkboxes when that changes +function provision_hold_check () { + var start_on_hold = document.getElementById('start_on_hold'); + if (start_on_hold) { + for (i = 0; i < provision_hold_td.length; i++) { + provision_hold_td[i].style.display = start_on_hold.checked ? '' : 'none'; + } + for (i = 0; i < provision_hold_input.length; i++) { + provision_hold_input[i].disabled = start_on_hold.checked ? false : true; + } + } +} +function provision_hold_init () { + var start_on_hold = document.getElementById('start_on_hold'); + if (start_on_hold) { + start_on_hold.onchange = provision_hold_check; + provision_hold_check(); + } +} +provision_hold_init(); +</SCRIPT> + </TD> </TR> @@ -4261,7 +4310,39 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD><SELECT NAME="flat__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Auto-add a start date to the 1st, ignoring the current month.</TD><TD><INPUT TYPE="checkbox" NAME="flat__start_1st" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Prorate first month to synchronize with the customer's other packages</TD><TD><INPUT TYPE="checkbox" NAME="flat__sync_bill_date" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, defer the bill until the customer's next bill date</TD><TD><INPUT TYPE="checkbox" NAME="flat__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, round the prorated period to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="flat__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD><INPUT TYPE="checkbox" NAME="flat__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Adjust next bill date forward when unsuspending</TD><TD><INPUT TYPE="checkbox" NAME="flat__unsuspend_adjust_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill the last period on cancellation</TD><TD><INPUT TYPE="checkbox" NAME="flat__bill_recur_on_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill immediately upon suspension</TD><TD><INPUT TYPE="checkbox" NAME="flat__bill_suspend_as_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD><INPUT TYPE="text" NAME="flat__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD><INPUT TYPE="checkbox" NAME="flat__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Time limit for this package</TD><TD><INPUT TYPE="text" NAME="flat__seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Upload limit for this package</TD><TD><INPUT TYPE="text" NAME="flat__upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Download limit for this package</TD><TD><INPUT TYPE="text" NAME="flat__downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Transfer limit for this package</TD><TD><INPUT TYPE="text" NAME="flat__totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Cost of recharge for this package</TD><TD><INPUT TYPE="text" NAME="flat__recharge_amount" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge time for this package</TD><TD><INPUT TYPE="text" NAME="flat__recharge_seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge upload for this package</TD><TD><INPUT TYPE="text" NAME="flat__recharge_upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge download for this package</TD><TD><INPUT TYPE="text" NAME="flat__recharge_downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge transfer for this package</TD><TD><INPUT TYPE="text" NAME="flat__recharge_totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Allow usage from previous period to roll over into current period</TD><TD><INPUT TYPE="checkbox" NAME="flat__usage_rollover" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Reset usage to these values on manual package recharge</TD><TD><INPUT TYPE="checkbox" NAME="flat__recharge_reset" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="flat__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="flat__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="flat__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="flat__OPTIONS" VALUE="recharge_downbytes,unused_credit_change,a2billing_carrer_initblock_offp,add_full_period,a2billing_tariff,prorate_defer_bill,unsuspend_adjust_bill,upbytes,recharge_seconds,recharge_upbytes,unused_credit_cancel,sync_bill_date,recharge_totalbytes,bill_recur_on_cancel,unused_credit_suspend,a2billing_carrier_cost_min,prorate_verbose,recharge_amount,a2billing_type,a2billing_retail_cost_min_offp,setup_fee,a2billing_simultaccess,downbytes,recur_fee,externalid,delay_cancel,usage_rollover,recur_temporality,bill_suspend_as_cancel,start_1st,a2billing_retail_initblock_offp,suspend_bill,prorate_round_day,seconds,totalbytes,recharge_reset,a2billing_carrier_increment_offp,a2billing_retail_increment_offp"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD> + <SELECT NAME="flat__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Auto-add a start date to the 1st, ignoring the current month.</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__start_1st" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Prorate first month to synchronize with the customer's other packages</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__sync_bill_date" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, defer the bill until the customer's next bill date</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, round the prorated period to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Adjust next bill date forward when unsuspending</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__unsuspend_adjust_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill the last period on cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__bill_recur_on_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill immediately upon suspension</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__bill_suspend_as_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD> + <INPUT TYPE="text" NAME="flat__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Time limit for this package</TD><TD> + <INPUT TYPE="text" NAME="flat__seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Upload limit for this package</TD><TD> + <INPUT TYPE="text" NAME="flat__upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Download limit for this package</TD><TD> + <INPUT TYPE="text" NAME="flat__downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Transfer limit for this package</TD><TD> + <INPUT TYPE="text" NAME="flat__totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Cost of recharge for this package</TD><TD> + <INPUT TYPE="text" NAME="flat__recharge_amount" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge time for this package</TD><TD> + <INPUT TYPE="text" NAME="flat__recharge_seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge upload for this package</TD><TD> + <INPUT TYPE="text" NAME="flat__recharge_upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge download for this package</TD><TD> + <INPUT TYPE="text" NAME="flat__recharge_downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge transfer for this package</TD><TD> + <INPUT TYPE="text" NAME="flat__recharge_totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Allow usage from previous period to roll over into current period</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__usage_rollover" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Reset usage to these values on manual package recharge</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__recharge_reset" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="flat__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "flat__OPTIONS" + ID = "flat__OPTIONS" + VALUE = "recur_temporality,start_1st,sync_bill_date,prorate_defer_bill,prorate_round_day,suspend_bill,unsuspend_adjust_bill,bill_recur_on_cancel,bill_suspend_as_cancel,externalid,prorate_verbose,seconds,upbytes,downbytes,totalbytes,recharge_amount,recharge_seconds,recharge_upbytes,recharge_downbytes,recharge_totalbytes,usage_rollover,recharge_reset,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4270,7 +4351,21 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD><INPUT TYPE="checkbox" NAME="flat_delayed__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="flat_delayed__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="flat_delayed__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="flat_delayed__delay_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Initial free days</TD><TD><INPUT TYPE="text" NAME="flat_delayed__free_days" VALUE="0"></TD></TR><TR><TD ALIGN="right">Delay setup fee in addition to recurring fee</TD><TD><INPUT TYPE="checkbox" NAME="flat_delayed__delay_setup" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Number of days before recurring billing commences to notify customer. (0 means no warning)</TD><TD><INPUT TYPE="text" NAME="flat_delayed__recur_notify" VALUE="0"></TD></TR></TABLE><INPUT TYPE="hidden" NAME="flat_delayed__OPTIONS" VALUE="free_days,a2billing_tariff,delay_cancel,recur_notify,a2billing_simultaccess,recur_fee,delay_setup,a2billing_carrer_initblock_offp,setup_fee,unused_credit_change,a2billing_retail_increment_offp,a2billing_type,a2billing_retail_cost_min_offp,a2billing_carrier_increment_offp,unused_credit_suspend,a2billing_carrier_cost_min,a2billing_retail_initblock_offp,suspend_bill,unused_credit_cancel"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_delayed__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_delayed__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_delayed__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_delayed__delay_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Initial free days</TD><TD> + <INPUT TYPE="text" NAME="flat_delayed__free_days" VALUE="0"></TD></TR><TR><TD ALIGN="right">Delay setup fee in addition to recurring fee</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_delayed__delay_setup" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Number of days before recurring billing commences to notify customer. (0 means no warning)</TD><TD> + <INPUT TYPE="text" NAME="flat_delayed__recur_notify" VALUE="0"></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "flat_delayed__OPTIONS" + ID = "flat_delayed__OPTIONS" + VALUE = "suspend_bill,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp,free_days,delay_setup,recur_notify" +> + + </DIV> @@ -4279,34 +4374,143 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Duration of the introductory period, in number of months</TD><TD><INPUT TYPE="text" NAME="flat_introrate__intro_duration" VALUE="0"></TD></TR><TR><TD ALIGN="right">Introductory recurring fee for this package</TD><TD><INPUT TYPE="text" NAME="flat_introrate__intro_fee" VALUE="0"></TD></TR><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD><SELECT NAME="flat_introrate__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Auto-add a start date to the 1st, ignoring the current month.</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__start_1st" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Prorate first month to synchronize with the customer's other packages</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__sync_bill_date" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, defer the bill until the customer's next bill date</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, round the prorated period to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Adjust next bill date forward when unsuspending</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__unsuspend_adjust_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill the last period on cancellation</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__bill_recur_on_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill immediately upon suspension</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__bill_suspend_as_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD><INPUT TYPE="text" NAME="flat_introrate__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Time limit for this package</TD><TD><INPUT TYPE="text" NAME="flat_introrate__seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Upload limit for this package</TD><TD><INPUT TYPE="text" NAME="flat_introrate__upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Download limit for this package</TD><TD><INPUT TYPE="text" NAME="flat_introrate__downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Transfer limit for this package</TD><TD><INPUT TYPE="text" NAME="flat_introrate__totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Cost of recharge for this package</TD><TD><INPUT TYPE="text" NAME="flat_introrate__recharge_amount" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge time for this package</TD><TD><INPUT TYPE="text" NAME="flat_introrate__recharge_seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge upload for this package</TD><TD><INPUT TYPE="text" NAME="flat_introrate__recharge_upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge download for this package</TD><TD><INPUT TYPE="text" NAME="flat_introrate__recharge_downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge transfer for this package</TD><TD><INPUT TYPE="text" NAME="flat_introrate__recharge_totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Allow usage from previous period to roll over into current period</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__usage_rollover" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Reset usage to these values on manual package recharge</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__recharge_reset" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="flat_introrate__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="flat_introrate__OPTIONS" VALUE="usage_rollover,intro_fee,recur_temporality,downbytes,recur_fee,a2billing_simultaccess,delay_cancel,externalid,intro_duration,setup_fee,a2billing_carrier_increment_offp,a2billing_retail_increment_offp,totalbytes,recharge_reset,suspend_bill,a2billing_retail_initblock_offp,start_1st,seconds,prorate_round_day,bill_suspend_as_cancel,prorate_defer_bill,upbytes,unsuspend_adjust_bill,recharge_seconds,a2billing_tariff,a2billing_carrer_initblock_offp,add_full_period,unused_credit_change,recharge_downbytes,a2billing_retail_cost_min_offp,recharge_amount,a2billing_type,bill_recur_on_cancel,a2billing_carrier_cost_min,unused_credit_suspend,recharge_totalbytes,recharge_upbytes,unused_credit_cancel,sync_bill_date"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Duration of the introductory period, in number of months</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__intro_duration" VALUE="0"></TD></TR><TR><TD ALIGN="right">Introductory recurring fee for this package</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__intro_fee" VALUE="0"></TD></TR><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD> + <SELECT NAME="flat_introrate__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Auto-add a start date to the 1st, ignoring the current month.</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__start_1st" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Prorate first month to synchronize with the customer's other packages</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__sync_bill_date" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, defer the bill until the customer's next bill date</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, round the prorated period to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Adjust next bill date forward when unsuspending</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__unsuspend_adjust_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill the last period on cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__bill_recur_on_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill immediately upon suspension</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__bill_suspend_as_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Time limit for this package</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Upload limit for this package</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Download limit for this package</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Transfer limit for this package</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Cost of recharge for this package</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__recharge_amount" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge time for this package</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__recharge_seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge upload for this package</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__recharge_upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge download for this package</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__recharge_downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge transfer for this package</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__recharge_totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Allow usage from previous period to roll over into current period</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__usage_rollover" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Reset usage to these values on manual package recharge</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__recharge_reset" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_introrate__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "flat_introrate__OPTIONS" + ID = "flat_introrate__OPTIONS" + VALUE = "intro_duration,intro_fee,recur_temporality,start_1st,sync_bill_date,prorate_defer_bill,prorate_round_day,suspend_bill,unsuspend_adjust_bill,bill_recur_on_cancel,bill_suspend_as_cancel,externalid,seconds,upbytes,downbytes,totalbytes,recharge_amount,recharge_seconds,recharge_upbytes,recharge_downbytes,recharge_totalbytes,usage_rollover,recharge_reset,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> - <DIV ID="plandprorate_calendar" - STYLE="display: none; z-index: 0" + <DIV ID="plandprorate" + STYLE="display: block; z-index: 1" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Billing day (1 - end of cycle)</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">Defer the first bill until the billing day</TD><TD><INPUT TYPE="checkbox" NAME="prorate_calendar__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD><INPUT TYPE="checkbox" NAME="prorate_calendar__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Auto-add a start date to the 1st, ignoring the current month.</TD><TD><INPUT TYPE="checkbox" NAME="prorate_calendar__start_1st" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD><INPUT TYPE="checkbox" NAME="prorate_calendar__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Adjust next bill date forward when unsuspending</TD><TD><INPUT TYPE="checkbox" NAME="prorate_calendar__unsuspend_adjust_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill the last period on cancellation</TD><TD><INPUT TYPE="checkbox" NAME="prorate_calendar__bill_recur_on_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill immediately upon suspension</TD><TD><INPUT TYPE="checkbox" NAME="prorate_calendar__bill_suspend_as_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Time limit for this package</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Upload limit for this package</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Download limit for this package</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Transfer limit for this package</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Cost of recharge for this package</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__recharge_amount" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge time for this package</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__recharge_seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge upload for this package</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__recharge_upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge download for this package</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__recharge_downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge transfer for this package</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__recharge_totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Allow usage from previous period to roll over into current period</TD><TD><INPUT TYPE="checkbox" NAME="prorate_calendar__usage_rollover" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Reset usage to these values on manual package recharge</TD><TD><INPUT TYPE="checkbox" NAME="prorate_calendar__recharge_reset" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="prorate_calendar__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="prorate_calendar__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="prorate_calendar__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="prorate_calendar__OPTIONS" VALUE="usage_rollover,recur_temporality,recur_fee,downbytes,a2billing_simultaccess,delay_cancel,externalid,setup_fee,a2billing_carrier_increment_offp,a2billing_retail_increment_offp,totalbytes,recharge_reset,suspend_bill,start_1st,a2billing_retail_initblock_offp,seconds,prorate_round_day,bill_suspend_as_cancel,cutoff_day,unsuspend_adjust_bill,prorate_defer_bill,upbytes,recharge_seconds,a2billing_tariff,a2billing_carrer_initblock_offp,add_full_period,unused_credit_change,recharge_downbytes,a2billing_retail_cost_min_offp,recharge_amount,prorate_verbose,a2billing_type,bill_recur_on_cancel,a2billing_carrier_cost_min,unused_credit_suspend,recharge_totalbytes,recharge_upbytes,unused_credit_cancel,sync_bill_date"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Billing Day (1 - 28)</TD><TD> + <INPUT TYPE="text" NAME="prorate__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">Defer the first bill until the billing day</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Round the prorated period to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Auto-add a start date to the 1st, ignoring the current month.</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__start_1st" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Adjust next bill date forward when unsuspending</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__unsuspend_adjust_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill the last period on cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__bill_recur_on_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill immediately upon suspension</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__bill_suspend_as_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD> + <INPUT TYPE="text" NAME="prorate__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Time limit for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate__seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Upload limit for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate__upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Download limit for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate__downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Transfer limit for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate__totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Cost of recharge for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate__recharge_amount" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge time for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate__recharge_seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge upload for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate__recharge_upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge download for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate__recharge_downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge transfer for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate__recharge_totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Allow usage from previous period to roll over into current period</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__usage_rollover" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Reset usage to these values on manual package recharge</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__recharge_reset" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "prorate__OPTIONS" + ID = "prorate__OPTIONS" + VALUE = "cutoff_day,prorate_defer_bill,add_full_period,prorate_round_day,prorate_verbose,start_1st,suspend_bill,unsuspend_adjust_bill,bill_recur_on_cancel,bill_suspend_as_cancel,externalid,seconds,upbytes,downbytes,totalbytes,recharge_amount,recharge_seconds,recharge_upbytes,recharge_downbytes,recharge_totalbytes,usage_rollover,recharge_reset,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> - <DIV ID="plandprorate" - STYLE="display: block; z-index: 1" + <DIV ID="plandprorate_delayed" + STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Billing Day (1 - 28)</TD><TD><INPUT TYPE="text" NAME="prorate__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">Defer the first bill until the billing day</TD><TD><INPUT TYPE="checkbox" NAME="prorate__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD><INPUT TYPE="checkbox" NAME="prorate__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Round the prorated period to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="prorate__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD><INPUT TYPE="checkbox" NAME="prorate__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Auto-add a start date to the 1st, ignoring the current month.</TD><TD><INPUT TYPE="checkbox" NAME="prorate__start_1st" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD><INPUT TYPE="checkbox" NAME="prorate__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Adjust next bill date forward when unsuspending</TD><TD><INPUT TYPE="checkbox" NAME="prorate__unsuspend_adjust_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill the last period on cancellation</TD><TD><INPUT TYPE="checkbox" NAME="prorate__bill_recur_on_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill immediately upon suspension</TD><TD><INPUT TYPE="checkbox" NAME="prorate__bill_suspend_as_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD><INPUT TYPE="text" NAME="prorate__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Time limit for this package</TD><TD><INPUT TYPE="text" NAME="prorate__seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Upload limit for this package</TD><TD><INPUT TYPE="text" NAME="prorate__upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Download limit for this package</TD><TD><INPUT TYPE="text" NAME="prorate__downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Transfer limit for this package</TD><TD><INPUT TYPE="text" NAME="prorate__totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Cost of recharge for this package</TD><TD><INPUT TYPE="text" NAME="prorate__recharge_amount" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge time for this package</TD><TD><INPUT TYPE="text" NAME="prorate__recharge_seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge upload for this package</TD><TD><INPUT TYPE="text" NAME="prorate__recharge_upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge download for this package</TD><TD><INPUT TYPE="text" NAME="prorate__recharge_downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge transfer for this package</TD><TD><INPUT TYPE="text" NAME="prorate__recharge_totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Allow usage from previous period to roll over into current period</TD><TD><INPUT TYPE="checkbox" NAME="prorate__usage_rollover" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Reset usage to these values on manual package recharge</TD><TD><INPUT TYPE="checkbox" NAME="prorate__recharge_reset" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="prorate__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="prorate__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="prorate__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="prorate__OPTIONS" VALUE="recharge_downbytes,unused_credit_change,a2billing_carrer_initblock_offp,add_full_period,a2billing_tariff,prorate_defer_bill,unsuspend_adjust_bill,upbytes,cutoff_day,recharge_seconds,recharge_upbytes,unused_credit_cancel,sync_bill_date,recharge_totalbytes,bill_recur_on_cancel,unused_credit_suspend,a2billing_carrier_cost_min,recharge_amount,prorate_verbose,a2billing_type,a2billing_retail_cost_min_offp,setup_fee,a2billing_simultaccess,recur_fee,downbytes,externalid,delay_cancel,usage_rollover,recur_temporality,bill_suspend_as_cancel,a2billing_retail_initblock_offp,start_1st,suspend_bill,prorate_round_day,seconds,totalbytes,recharge_reset,a2billing_carrier_increment_offp,a2billing_retail_increment_offp"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_delayed__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_delayed__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_delayed__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_delayed__delay_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Initial free days</TD><TD> + <INPUT TYPE="text" NAME="prorate_delayed__free_days" VALUE="0"></TD></TR><TR><TD ALIGN="right">Delay setup fee in addition to recurring fee</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_delayed__delay_setup" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Number of days before recurring billing commences to notify customer. (0 means no warning)</TD><TD> + <INPUT TYPE="text" NAME="prorate_delayed__recur_notify" VALUE="0"></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "prorate_delayed__OPTIONS" + ID = "prorate_delayed__OPTIONS" + VALUE = "suspend_bill,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp,free_days,delay_setup,recur_notify" +> + + </DIV> - <DIV ID="plandprorate_delayed" + <DIV ID="plandprorate_calendar" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD><INPUT TYPE="checkbox" NAME="prorate_delayed__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="prorate_delayed__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="prorate_delayed__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="prorate_delayed__delay_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Initial free days</TD><TD><INPUT TYPE="text" NAME="prorate_delayed__free_days" VALUE="0"></TD></TR><TR><TD ALIGN="right">Delay setup fee in addition to recurring fee</TD><TD><INPUT TYPE="checkbox" NAME="prorate_delayed__delay_setup" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Number of days before recurring billing commences to notify customer. (0 means no warning)</TD><TD><INPUT TYPE="text" NAME="prorate_delayed__recur_notify" VALUE="0"></TD></TR></TABLE><INPUT TYPE="hidden" NAME="prorate_delayed__OPTIONS" VALUE="setup_fee,unused_credit_change,delay_setup,a2billing_carrer_initblock_offp,free_days,a2billing_tariff,delay_cancel,a2billing_simultaccess,recur_notify,recur_fee,unused_credit_cancel,a2billing_retail_initblock_offp,suspend_bill,unused_credit_suspend,a2billing_carrier_cost_min,a2billing_retail_increment_offp,a2billing_type,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Billing day (1 - end of cycle)</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">Defer the first bill until the billing day</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_calendar__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_calendar__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Auto-add a start date to the 1st, ignoring the current month.</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_calendar__start_1st" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_calendar__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Adjust next bill date forward when unsuspending</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_calendar__unsuspend_adjust_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill the last period on cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_calendar__bill_recur_on_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill immediately upon suspension</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_calendar__bill_suspend_as_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Time limit for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Upload limit for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Download limit for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Transfer limit for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Cost of recharge for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__recharge_amount" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge time for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__recharge_seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge upload for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__recharge_upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge download for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__recharge_downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge transfer for this package</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__recharge_totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Allow usage from previous period to roll over into current period</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_calendar__usage_rollover" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Reset usage to these values on manual package recharge</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_calendar__recharge_reset" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_calendar__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_calendar__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="prorate_calendar__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "prorate_calendar__OPTIONS" + ID = "prorate_calendar__OPTIONS" + VALUE = "cutoff_day,prorate_defer_bill,prorate_verbose,start_1st,suspend_bill,unsuspend_adjust_bill,bill_recur_on_cancel,bill_suspend_as_cancel,externalid,seconds,upbytes,downbytes,totalbytes,recharge_amount,recharge_seconds,recharge_upbytes,recharge_downbytes,recharge_totalbytes,usage_rollover,recharge_reset,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4315,7 +4519,23 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Action to take upon reaching end of prepaid period</TD><TD><SELECT NAME="prepaid__recur_action"><OPTION VALUE="suspend">suspend<OPTION VALUE="cancel">cancel</SELECT></TD></TR><TR><TD ALIGN="right">Action to take upon reaching a usage limit.</TD><TD><SELECT NAME="prepaid__overlimit_action"><OPTION VALUE="overlimit">Default overlimit processing<OPTION VALUE="cancel">Cancel</SELECT></TD></TR><TR><TD ALIGN="right">Time limit for this package</TD><TD><INPUT TYPE="text" NAME="prepaid__seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Upload limit for this package</TD><TD><INPUT TYPE="text" NAME="prepaid__upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Download limit for this package</TD><TD><INPUT TYPE="text" NAME="prepaid__downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Transfer limit for this package</TD><TD><INPUT TYPE="text" NAME="prepaid__totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="prepaid__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="prepaid__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="prepaid__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="prepaid__OPTIONS" VALUE="a2billing_retail_initblock_offp,recharge_totalbytes,seconds,unused_credit_cancel,recharge_upbytes,recur_action,recharge_amount,a2billing_type,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_increment_offp,totalbytes,recharge_reset,overlimit_action,unused_credit_suspend,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,recharge_downbytes,setup_fee,unused_credit_change,usage_rollover,recharge_seconds,upbytes,a2billing_simultaccess,downbytes,recur_fee,delay_cancel,a2billing_tariff"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Action to take upon reaching end of prepaid period</TD><TD> + <SELECT NAME="prepaid__recur_action"><OPTION VALUE="suspend">suspend<OPTION VALUE="cancel">cancel</SELECT></TD></TR><TR><TD ALIGN="right">Action to take upon reaching a usage limit.</TD><TD> + <SELECT NAME="prepaid__overlimit_action"><OPTION VALUE="overlimit">Default overlimit processing<OPTION VALUE="cancel">Cancel</SELECT></TD></TR><TR><TD ALIGN="right">Time limit for this package</TD><TD> + <INPUT TYPE="text" NAME="prepaid__seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Upload limit for this package</TD><TD> + <INPUT TYPE="text" NAME="prepaid__upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Download limit for this package</TD><TD> + <INPUT TYPE="text" NAME="prepaid__downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Transfer limit for this package</TD><TD> + <INPUT TYPE="text" NAME="prepaid__totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="prepaid__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="prepaid__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="prepaid__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "prepaid__OPTIONS" + ID = "prepaid__OPTIONS" + VALUE = "recur_action,overlimit_action,seconds,upbytes,downbytes,totalbytes,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4324,7 +4544,30 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Billing day</TD><TD><INPUT TYPE="text" NAME="subscription__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">Time limit for this package</TD><TD><INPUT TYPE="text" NAME="subscription__seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Upload limit for this package</TD><TD><INPUT TYPE="text" NAME="subscription__upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Download limit for this package</TD><TD><INPUT TYPE="text" NAME="subscription__downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Transfer limit for this package</TD><TD><INPUT TYPE="text" NAME="subscription__totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Cost of recharge for this package</TD><TD><INPUT TYPE="text" NAME="subscription__recharge_amount" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge time for this package</TD><TD><INPUT TYPE="text" NAME="subscription__recharge_seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge upload for this package</TD><TD><INPUT TYPE="text" NAME="subscription__recharge_upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge download for this package</TD><TD><INPUT TYPE="text" NAME="subscription__recharge_downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge transfer for this package</TD><TD><INPUT TYPE="text" NAME="subscription__recharge_totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Allow usage from previous period to roll over into current period</TD><TD><INPUT TYPE="checkbox" NAME="subscription__usage_rollover" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Reset usage to these values on manual package recharge</TD><TD><INPUT TYPE="checkbox" NAME="subscription__recharge_reset" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD><INPUT TYPE="text" NAME="subscription__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="subscription__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="subscription__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="subscription__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="subscription__OPTIONS" VALUE="recharge_totalbytes,seconds,a2billing_retail_initblock_offp,recharge_upbytes,unused_credit_cancel,a2billing_retail_increment_offp,a2billing_type,recharge_amount,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,unused_credit_suspend,a2billing_carrier_cost_min,recharge_reset,totalbytes,a2billing_carrer_initblock_offp,setup_fee,recharge_downbytes,unused_credit_change,recharge_seconds,upbytes,cutoff_day,usage_rollover,externalid,a2billing_tariff,delay_cancel,a2billing_simultaccess,recur_fee,downbytes"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Billing day</TD><TD> + <INPUT TYPE="text" NAME="subscription__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">Time limit for this package</TD><TD> + <INPUT TYPE="text" NAME="subscription__seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Upload limit for this package</TD><TD> + <INPUT TYPE="text" NAME="subscription__upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Download limit for this package</TD><TD> + <INPUT TYPE="text" NAME="subscription__downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Transfer limit for this package</TD><TD> + <INPUT TYPE="text" NAME="subscription__totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Cost of recharge for this package</TD><TD> + <INPUT TYPE="text" NAME="subscription__recharge_amount" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge time for this package</TD><TD> + <INPUT TYPE="text" NAME="subscription__recharge_seconds" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge upload for this package</TD><TD> + <INPUT TYPE="text" NAME="subscription__recharge_upbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge download for this package</TD><TD> + <INPUT TYPE="text" NAME="subscription__recharge_downbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Recharge transfer for this package</TD><TD> + <INPUT TYPE="text" NAME="subscription__recharge_totalbytes" VALUE=""></TD></TR><TR><TD ALIGN="right">Allow usage from previous period to roll over into current period</TD><TD> + <INPUT TYPE="checkbox" NAME="subscription__usage_rollover" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Reset usage to these values on manual package recharge</TD><TD> + <INPUT TYPE="checkbox" NAME="subscription__recharge_reset" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD> + <INPUT TYPE="text" NAME="subscription__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="subscription__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="subscription__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="subscription__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "subscription__OPTIONS" + ID = "subscription__OPTIONS" + VALUE = "cutoff_day,seconds,upbytes,downbytes,totalbytes,recharge_amount,recharge_seconds,recharge_upbytes,recharge_downbytes,recharge_totalbytes,usage_rollover,recharge_reset,externalid,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4333,7 +4576,30 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Hours included</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_hours" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per hour</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_hourly_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum overage charge for hours (0 means no cap)</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_hourly_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Upload gigabytes included</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_input" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per gigabyte upload</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_input_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum overage charge for upload (0 means no cap)</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_input_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Download gigabytes included</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_output" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per gigabyte download</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_output_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum overage charge for download (0 means no cap)</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_output_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Total gigabytes included</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_total" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per gigabyte total</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_total_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum overage charge for total gigabytes (0 means no cap)</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_total_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Global cap on all overage charges (0 means no cap)</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__global_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="sqlradacct_hour__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="sqlradacct_hour__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="sqlradacct_hour__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="sqlradacct_hour__OPTIONS" VALUE="a2billing_retail_increment_offp,a2billing_type,a2billing_carrier_increment_offp,recur_output_charge,a2billing_retail_cost_min_offp,unused_credit_suspend,a2billing_carrier_cost_min,recur_total_cap,a2billing_retail_initblock_offp,unused_credit_cancel,recur_included_hours,global_cap,delay_cancel,a2billing_tariff,recur_hourly_cap,recur_hourly_charge,recur_total_charge,a2billing_simultaccess,recur_included_output,recur_input_cap,recur_fee,recur_input_charge,a2billing_carrer_initblock_offp,recur_included_input,recur_output_cap,setup_fee,recur_included_total,unused_credit_change"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Hours included</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_hours" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per hour</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_hourly_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum overage charge for hours (0 means no cap)</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_hourly_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Upload gigabytes included</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_input" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per gigabyte upload</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_input_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum overage charge for upload (0 means no cap)</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_input_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Download gigabytes included</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_output" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per gigabyte download</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_output_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum overage charge for download (0 means no cap)</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_output_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Total gigabytes included</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_total" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per gigabyte total</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_total_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum overage charge for total gigabytes (0 means no cap)</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_total_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Global cap on all overage charges (0 means no cap)</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__global_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="sqlradacct_hour__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="sqlradacct_hour__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="sqlradacct_hour__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "sqlradacct_hour__OPTIONS" + ID = "sqlradacct_hour__OPTIONS" + VALUE = "recur_included_hours,recur_hourly_charge,recur_hourly_cap,recur_included_input,recur_input_charge,recur_input_cap,recur_included_output,recur_output_charge,recur_output_cap,recur_included_total,recur_total_charge,recur_total_cap,global_cap,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4342,7 +4608,31 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Hours included per day</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__recur_included_hours" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per hour</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__recur_hourly_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum daily charge for hours (0 means no cap)</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__recur_hourly_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Upload megabytes included per day</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__recur_included_input" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per megabyte upload</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__recur_input_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum daily charge for upload (0 means no cap)</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__recur_input_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Download megabytes included per day</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__recur_included_output" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per megabyte download</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__recur_output_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum daily charge for download (0 means no cap)</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__recur_output_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Total megabytes included per day</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__recur_included_total" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per megabyte total</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__recur_total_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum daily charge for total megabytes (0 means no cap)</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__recur_total_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Daily cap on all overage charges (0 means no cap)</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__global_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Monthly (billing frequency) cap on all overage charges (0 means no cap)</TD><TD><INPUT TYPE="text" NAME="sqlradacct_daily__monthly_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="sqlradacct_daily__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="sqlradacct_daily__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="sqlradacct_daily__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="sqlradacct_daily__OPTIONS" VALUE="recur_input_charge,recur_included_input,a2billing_carrer_initblock_offp,recur_output_cap,setup_fee,unused_credit_change,recur_included_total,global_cap,delay_cancel,a2billing_tariff,recur_hourly_charge,recur_total_charge,recur_hourly_cap,a2billing_simultaccess,recur_fee,recur_included_output,recur_input_cap,recur_total_cap,a2billing_retail_initblock_offp,monthly_cap,recur_included_hours,unused_credit_cancel,a2billing_retail_increment_offp,a2billing_type,a2billing_carrier_increment_offp,recur_output_charge,a2billing_retail_cost_min_offp,unused_credit_suspend,a2billing_carrier_cost_min"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Hours included per day</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__recur_included_hours" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per hour</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__recur_hourly_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum daily charge for hours (0 means no cap)</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__recur_hourly_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Upload megabytes included per day</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__recur_included_input" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per megabyte upload</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__recur_input_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum daily charge for upload (0 means no cap)</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__recur_input_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Download megabytes included per day</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__recur_included_output" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per megabyte download</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__recur_output_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum daily charge for download (0 means no cap)</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__recur_output_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Total megabytes included per day</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__recur_included_total" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per megabyte total</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__recur_total_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">Maximum daily charge for total megabytes (0 means no cap)</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__recur_total_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Daily cap on all overage charges (0 means no cap)</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__global_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Monthly (billing frequency) cap on all overage charges (0 means no cap)</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_daily__monthly_cap" VALUE="0"></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="sqlradacct_daily__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="sqlradacct_daily__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="sqlradacct_daily__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "sqlradacct_daily__OPTIONS" + ID = "sqlradacct_daily__OPTIONS" + VALUE = "recur_included_hours,recur_hourly_charge,recur_hourly_cap,recur_included_input,recur_input_charge,recur_input_cap,recur_included_output,recur_output_charge,recur_output_cap,recur_included_total,recur_total_charge,recur_total_cap,global_cap,monthly_cap,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4351,7 +4641,18 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD><SELECT NAME="voip_cdr__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Recurring fee method</TD><TD><SELECT NAME="voip_cdr__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD><INPUT TYPE="text" NAME="voip_cdr__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">CDR service matching method</TD><TD><SELECT NAME="voip_cdr__cdr_svc_method"><OPTION VALUE="svc_phone.phonenum">Phone numbers (svc_phone.phonenum)<OPTION VALUE="svc_pbx.title">PBX name (svc_pbx.title)<OPTION VALUE="svc_pbx.svcnum">Freeside service # (svc_pbx.svcnum)<OPTION VALUE="svc_pbx.ip.src">PBX name to source IP address<OPTION VALUE="svc_pbx.ip.dst">PBX name to destination IP address<OPTION VALUE="svc_acct.username">Username (svc_acct.username)</SELECT></TD></TR><TR><TD ALIGN="right">Rating method</TD><TD><INPUT TYPE="radio" NAME="voip_cdr__rating_method" VALUE="prefix"> Rate calls by using destination prefix to look up a region and rate according to the internal prefix and rate tables<BR><INPUT TYPE="radio" NAME="voip_cdr__rating_method" VALUE="upstream_simple"> Simply pass through and charge the "upstream_price" amount.<BR><INPUT TYPE="radio" NAME="voip_cdr__rating_method" VALUE="single_price"> A single price per minute for all calls.<BR></TD></TR><TR><TD ALIGN="right">Rounding for destination prefix rating</TD><TD><SELECT NAME="voip_cdr__rounding"><OPTION VALUE="2">Two decimal places (cent)<OPTION VALUE="4">Four decimal places (100th of a cent)</SELECT></TD></TR><TR><TD ALIGN="right">Rate plan</TD><TD> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD> + <SELECT NAME="voip_cdr__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Recurring fee method</TD><TD> + <SELECT NAME="voip_cdr__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">CDR service matching method</TD><TD> + <SELECT NAME="voip_cdr__cdr_svc_method"><OPTION VALUE="svc_phone.phonenum">Phone numbers (svc_phone.phonenum)<OPTION VALUE="svc_pbx.title">PBX name (svc_pbx.title)<OPTION VALUE="svc_pbx.svcnum">Freeside service # (svc_pbx.svcnum)<OPTION VALUE="svc_pbx.ip.src">PBX name to source IP address<OPTION VALUE="svc_pbx.ip.dst">PBX name to destination IP address<OPTION VALUE="svc_acct.username">Username (svc_acct.username)</SELECT></TD></TR><TR><TD ALIGN="right">Rating method</TD><TD> + <INPUT TYPE="radio" NAME="voip_cdr__rating_method" VALUE="prefix"> Rate calls by using destination prefix to look up a region and rate according to the internal prefix and rate tables<BR><INPUT TYPE="radio" NAME="voip_cdr__rating_method" VALUE="upstream_simple"> Simply pass through and charge the "upstream_price" amount.<BR><INPUT TYPE="radio" NAME="voip_cdr__rating_method" VALUE="single_price"> A single price per minute for all calls.<BR></TD></TR><TR><TD ALIGN="right">Rounding for destination prefix rating</TD><TD> + <SELECT NAME="voip_cdr__rounding"><OPTION VALUE="2">Two decimal places (cent)<OPTION VALUE="4">Four decimal places (100th of a cent)</SELECT></TD></TR><TR><TD ALIGN="right">Rate plan</TD><TD> + <SELECT NAME = "voip_cdr__ratenum" ID = "ratenum" @@ -4369,6 +4670,7 @@ spawn_supp_dst_pkgpart(this);" </TD></TR><TR><TD ALIGN="right">Optional alternate intrastate rate plan</TD><TD> + <SELECT NAME = "voip_cdr__intrastate_ratenum" ID = "ratenum" @@ -4385,7 +4687,61 @@ spawn_supp_dst_pkgpart(this);" </SELECT> -</TD></TR><TR><TD ALIGN="right">Number of calls included at no usage charge</TD><TD><INPUT TYPE="text" NAME="voip_cdr__calls_included" VALUE=""></TD></TR><TR><TD ALIGN="right">Charge per minute when using "single price per minute" rating method</TD><TD><INPUT TYPE="text" NAME="voip_cdr__min_charge" VALUE=""></TD></TR><TR><TD ALIGN="right">Minutes included when using the "single price per minute" or "prefix" rating method</TD><TD><INPUT TYPE="text" NAME="voip_cdr__min_included" VALUE=""></TD></TR><TR><TD ALIGN="right">Granularity when using "single price per minute" rating method</TD><TD><SELECT NAME="voip_cdr__sec_granularity"><OPTION VALUE="1">1 second<OPTION VALUE="6">6 second<OPTION VALUE="30">30 second<OPTION VALUE="60">minute<OPTION VALUE="0">call</SELECT></TD></TR><TR><TD ALIGN="right">Handling of calls without a rate in the rate table</TD><TD><SELECT NAME="voip_cdr__ignore_unrateable"><OPTION VALUE="" SELECTED>Exit with a fatal error<OPTION VALUE="1">Ignore and continue<OPTION VALUE="2">Flag for later review</SELECT></TD></TR><TR><TD ALIGN="right">Default prefix optionally prepended to customer DID numbers when searching for CDR records</TD><TD><INPUT TYPE="text" NAME="voip_cdr__default_prefix" VALUE="+1"></TD></TR><TR><TD ALIGN="right">Disable rating of CDR records based on the "src" field in addition to "charged_party"</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__disable_src" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Destination prefix for domestic CDR records</TD><TD><INPUT TYPE="text" NAME="voip_cdr__domestic_prefix" VALUE="1"></TD></TR><TR><TD ALIGN="right">Destination prefix for international CDR records</TD><TD><INPUT TYPE="text" NAME="voip_cdr__international_prefix" VALUE="011"></TD></TR><TR><TD ALIGN="right">Disable automatic toll-free processing</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__disable_tollfree" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the amaflags field is set to "2" ("BILL"/"BILLING").</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__use_amaflags" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the Carrier ID is set to any of these (comma-separated) values: </TD><TD><INPUT TYPE="text" NAME="voip_cdr__use_carrierid" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the CDR Type is set to this cdrtypenum: </TD><TD><INPUT TYPE="text" NAME="voip_cdr__use_cdrtypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the CDR Type is set to this cdrtypenum: </TD><TD><INPUT TYPE="text" NAME="voip_cdr__ignore_cdrtypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the CDR Call Type is set to this calltypenum: </TD><TD><INPUT TYPE="text" NAME="voip_cdr__use_calltypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the CDR Call Type is set to this calltypenum: </TD><TD><INPUT TYPE="text" NAME="voip_cdr__ignore_calltypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the Disposition is set to any of these (comma-separated) values: </TD><TD><INPUT TYPE="text" NAME="voip_cdr__ignore_disposition" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the Disposition is set to any of these (comma-separated) values: </TD><TD><INPUT TYPE="text" NAME="voip_cdr__disposition_in" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the dcontext is set to any of these (comma-separated) values: </TD><TD><INPUT TYPE="text" NAME="voip_cdr__skip_dcontext" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the destination number starts with any of these values: </TD><TD><INPUT TYPE="text" NAME="voip_cdr__skip_dst_prefix" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the dstchannel starts with:</TD><TD><INPUT TYPE="text" NAME="voip_cdr__skip_dstchannel_prefix" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the source is more than this many digits:</TD><TD><INPUT TYPE="text" NAME="voip_cdr__skip_src_length_more" VALUE=""></TD></TR><TR><TD ALIGN="right">Do charge for CDRs where source is equal or greater than the specified digits, when accountcode is toll free</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__noskip_src_length_accountcode_tollfree" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional alternate rate plan when accountcode is toll free: </TD><TD><SELECT NAME="voip_cdr__accountcode_tollfree_ratenum"><OPTION VALUE=""></SELECT></TD></TR><TR><TD ALIGN="right">When using an alternate rate plan for toll-free accountcodes, the CDR field to use in rating calculations</TD><TD><SELECT NAME="voip_cdr__accountcode_tollfree_field"><OPTION VALUE="dst">Destination (dst)<OPTION VALUE="src">Source (src)</SELECT></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the destination is less than this many digits:</TD><TD><INPUT TYPE="text" NAME="voip_cdr__skip_dst_length_less" VALUE=""></TD></TR><TR><TD ALIGN="right">Do charge for CDRs where dst is less than the specified digits, when accountcode is toll free</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__noskip_dst_length_accountcode_tollfree" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the lastapp matches this value: </TD><TD><INPUT TYPE="text" NAME="voip_cdr__skip_lastapp" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where max_callers is less than or equal to this value: </TD><TD><INPUT TYPE="text" NAME="voip_cdr__skip_max_callers" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for calls between numbers belonging to the same customer</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__skip_same_customer" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Calculate usage based on the duration field instead of the billsec field</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__use_duration" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Rewrite these (comma-separated) destination numbers to 411 for rating purposes (also ignore any carrierid check): </TD><TD><INPUT TYPE="text" NAME="voip_cdr__411_rewrite" VALUE=""></TD></TR><TR><TD ALIGN="right">CDR display format for invoices</TD><TD><SELECT NAME="voip_cdr__output_format"><OPTION VALUE="" SELECTED><OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="source_default">Default with source<OPTION VALUE="basic">Basic<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="simple">Simple<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="simple2">Simple with source<OPTION VALUE="default">Default</SELECT></TD></TR><TR><TD ALIGN="right">CDR display format for selfservice</TD><TD><SELECT NAME="voip_cdr__selfservice_format"><OPTION VALUE="" SELECTED><OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="source_default">Default with source<OPTION VALUE="basic">Basic<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="simple">Simple<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="simple2">Simple with source<OPTION VALUE="default">Default</SELECT></TD></TR><TR><TD ALIGN="right">Inbound CDR display format for selfservice</TD><TD><SELECT NAME="voip_cdr__selfservice_inbound_format"><OPTION VALUE="" SELECTED><OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="source_default">Default with source<OPTION VALUE="basic">Basic<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="simple">Simple<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="simple2">Simple with source<OPTION VALUE="default">Default</SELECT></TD></TR><TR><TD ALIGN="right">Always put usage details in separate section. The section is defined in the next option.</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__usage_mandate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Section in which to place usage charges (whether separated or not): </TD><TD><INPUT TYPE="text" NAME="voip_cdr__usage_section" VALUE=""></TD></TR><TR><TD ALIGN="right">Include usage summary with recurring charges when usage is in separate section</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__summarize_usage" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show details for included / no-charge calls.</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__usage_showzero" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Generate an invoice immediately for every call (as well any setup fee, upon first payment). Useful for prepaid.</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__bill_every_call" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill for all phone numbers that were active during the billing period</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__bill_inactive_svcs" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only bill CDRs with a date during the package billing period</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__bill_only_pkg_dates" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Consider for tax purposes the number of lines to be svc_phones that may be provisioned rather than those that actually are.</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__count_available_phones" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="voip_cdr__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="voip_cdr__OPTIONS" VALUE="disable_tollfree,summarize_usage,prorate_round_day,international_prefix,recur_temporality,selfservice_format,skip_max_callers,delay_cancel,skip_same_customer,setup_fee,usage_mandate,count_available_phones,recur_method,use_amaflags,rating_method,noskip_src_length_accountcode_tollfree,a2billing_retail_cost_min_offp,a2billing_carrier_cost_min,bill_every_call,use_duration,skip_src_length_more,skip_dst_prefix,unused_credit_cancel,ignore_disposition,skip_dcontext,ignore_cdrtypenum,calls_included,cdr_svc_method,a2billing_tariff,ignore_calltypenum,min_charge,domestic_prefix,disposition_in,skip_dst_length_less,a2billing_retail_increment_offp,disable_src,a2billing_carrier_increment_offp,usage_showzero,skip_lastapp,noskip_dst_length_accountcode_tollfree,a2billing_retail_initblock_offp,sec_granularity,suspend_bill,rounding,a2billing_simultaccess,recur_fee,bill_inactive_svcs,accountcode_tollfree_field,min_included,ratenum,intrastate_ratenum,a2billing_type,prorate_verbose,unused_credit_suspend,usage_section,ignore_unrateable,output_format,use_calltypenum,prorate_defer_bill,cutoff_day,use_cdrtypenum,default_prefix,411_rewrite,accountcode_tollfree_ratenum,selfservice_inbound_format,bill_only_pkg_dates,add_full_period,use_carrierid,skip_dstchannel_prefix,a2billing_carrer_initblock_offp,unused_credit_change"> +</TD></TR><TR><TD ALIGN="right">Number of calls included at no usage charge</TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__calls_included" VALUE=""></TD></TR><TR><TD ALIGN="right">Charge per minute when using "single price per minute" rating method</TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__min_charge" VALUE=""></TD></TR><TR><TD ALIGN="right">Minutes included when using the "single price per minute" or "prefix" rating method</TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__min_included" VALUE=""></TD></TR><TR><TD ALIGN="right">Granularity when using "single price per minute" rating method</TD><TD> + <SELECT NAME="voip_cdr__sec_granularity"><OPTION VALUE="1">1 second<OPTION VALUE="6">6 second<OPTION VALUE="30">30 second<OPTION VALUE="60">minute<OPTION VALUE="0">call</SELECT></TD></TR><TR><TD ALIGN="right">Handling of calls without a rate in the rate table</TD><TD> + <SELECT NAME="voip_cdr__ignore_unrateable"><OPTION VALUE="" SELECTED>Exit with a fatal error<OPTION VALUE="1">Ignore and continue<OPTION VALUE="2">Flag for later review</SELECT></TD></TR><TR><TD ALIGN="right">Default prefix optionally prepended to customer DID numbers when searching for CDR records</TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__default_prefix" VALUE="+1"></TD></TR><TR><TD ALIGN="right">Disable rating of CDR records based on the "src" field in addition to "charged_party"</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__disable_src" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Destination prefix for domestic CDR records</TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__domestic_prefix" VALUE="1"></TD></TR><TR><TD ALIGN="right">Destination prefix for international CDR records</TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__international_prefix" VALUE="011"></TD></TR><TR><TD ALIGN="right">Disable automatic toll-free processing</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__disable_tollfree" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the amaflags field is set to "2" ("BILL"/"BILLING").</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__use_amaflags" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the Carrier ID is set to any of these (comma-separated) values: </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__use_carrierid" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the CDR Type is set to this cdrtypenum: </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__use_cdrtypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the CDR Type is set to this cdrtypenum: </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__ignore_cdrtypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the CDR Call Type is set to this calltypenum: </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__use_calltypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the CDR Call Type is set to this calltypenum: </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__ignore_calltypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the Disposition is set to any of these (comma-separated) values: </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__ignore_disposition" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the Disposition is set to any of these (comma-separated) values: </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__disposition_in" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the dcontext is set to any of these (comma-separated) values: </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__skip_dcontext" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the destination number starts with any of these values: </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__skip_dst_prefix" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the dstchannel starts with:</TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__skip_dstchannel_prefix" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the source is more than this many digits:</TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__skip_src_length_more" VALUE=""></TD></TR><TR><TD ALIGN="right">Do charge for CDRs where source is equal or greater than the specified digits, when accountcode is toll free</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__noskip_src_length_accountcode_tollfree" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional alternate rate plan when accountcode is toll free: </TD><TD> + <SELECT NAME="voip_cdr__accountcode_tollfree_ratenum"><OPTION VALUE=""></SELECT></TD></TR><TR><TD ALIGN="right">When using an alternate rate plan for toll-free accountcodes, the CDR field to use in rating calculations</TD><TD> + <SELECT NAME="voip_cdr__accountcode_tollfree_field"><OPTION VALUE="dst">Destination (dst)<OPTION VALUE="src">Source (src)</SELECT></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the destination is less than this many digits:</TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__skip_dst_length_less" VALUE=""></TD></TR><TR><TD ALIGN="right">Do charge for CDRs where dst is less than the specified digits, when accountcode is toll free</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__noskip_dst_length_accountcode_tollfree" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the lastapp matches this value: </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__skip_lastapp" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where max_callers is less than or equal to this value: </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__skip_max_callers" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for calls between numbers belonging to the same customer</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__skip_same_customer" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Calculate usage based on the duration field instead of the billsec field</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__use_duration" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Rewrite these (comma-separated) destination numbers to 411 for rating purposes (also ignore any carrierid check): </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__411_rewrite" VALUE=""></TD></TR><TR><TD ALIGN="right">CDR display format for invoices</TD><TD> + <SELECT NAME="voip_cdr__output_format"><OPTION VALUE="" SELECTED><OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="basic">Basic<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="default">Default<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="simple">Simple<OPTION VALUE="simple2">Simple with source<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix</SELECT></TD></TR><TR><TD ALIGN="right">CDR display format for selfservice</TD><TD> + <SELECT NAME="voip_cdr__selfservice_format"><OPTION VALUE="" SELECTED><OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="basic">Basic<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="default">Default<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="simple">Simple<OPTION VALUE="simple2">Simple with source<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix</SELECT></TD></TR><TR><TD ALIGN="right">Inbound CDR display format for selfservice</TD><TD> + <SELECT NAME="voip_cdr__selfservice_inbound_format"><OPTION VALUE="" SELECTED><OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="basic">Basic<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="default">Default<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="simple">Simple<OPTION VALUE="simple2">Simple with source<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix</SELECT></TD></TR><TR><TD ALIGN="right">Always put usage details in separate section. The section is defined in the next option.</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__usage_mandate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Section in which to place usage charges (whether separated or not): </TD><TD> + <INPUT TYPE="text" NAME="voip_cdr__usage_section" VALUE=""></TD></TR><TR><TD ALIGN="right">Include usage summary with recurring charges when usage is in separate section</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__summarize_usage" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show details for included / no-charge calls.</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__usage_showzero" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Generate an invoice immediately for every call (as well any setup fee, upon first payment). Useful for prepaid.</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__bill_every_call" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill for all phone numbers that were active during the billing period</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__bill_inactive_svcs" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only bill CDRs with a date during the package billing period</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__bill_only_pkg_dates" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Consider for tax purposes the number of lines to be svc_phones that may be provisioned rather than those that actually are.</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__count_available_phones" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_cdr__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "voip_cdr__OPTIONS" + ID = "voip_cdr__OPTIONS" + VALUE = "recur_temporality,recur_method,cutoff_day,prorate_defer_bill,prorate_round_day,add_full_period,prorate_verbose,cdr_svc_method,rating_method,rounding,ratenum,intrastate_ratenum,calls_included,min_charge,min_included,sec_granularity,ignore_unrateable,default_prefix,disable_src,domestic_prefix,international_prefix,disable_tollfree,use_amaflags,use_carrierid,use_cdrtypenum,ignore_cdrtypenum,use_calltypenum,ignore_calltypenum,ignore_disposition,disposition_in,skip_dcontext,skip_dst_prefix,skip_dstchannel_prefix,skip_src_length_more,noskip_src_length_accountcode_tollfree,accountcode_tollfree_ratenum,accountcode_tollfree_field,skip_dst_length_less,noskip_dst_length_accountcode_tollfree,skip_lastapp,skip_max_callers,skip_same_customer,use_duration,411_rewrite,output_format,selfservice_format,selfservice_inbound_format,usage_mandate,usage_section,summarize_usage,usage_showzero,bill_every_call,bill_inactive_svcs,bill_only_pkg_dates,count_available_phones,suspend_bill,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4394,7 +4750,46 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD><SELECT NAME="voip_inbound__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Recurring fee method</TD><TD><SELECT NAME="voip_inbound__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD><INPUT TYPE="text" NAME="voip_inbound__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD><INPUT TYPE="checkbox" NAME="voip_inbound__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="voip_inbound__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD><INPUT TYPE="checkbox" NAME="voip_inbound__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD><INPUT TYPE="checkbox" NAME="voip_inbound__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Charge per minute</TD><TD><INPUT TYPE="text" NAME="voip_inbound__min_charge" VALUE=""></TD></TR><TR><TD ALIGN="right">Minutes included</TD><TD><INPUT TYPE="text" NAME="voip_inbound__min_included" VALUE=""></TD></TR><TR><TD ALIGN="right">Granularity</TD><TD><SELECT NAME="voip_inbound__sec_granularity"><OPTION VALUE="1">1 second<OPTION VALUE="6">6 second<OPTION VALUE="30">30 second<OPTION VALUE="60">minute<OPTION VALUE="0">call</SELECT></TD></TR><TR><TD ALIGN="right">Default prefix optionally prepended to customer DID numbers when searching for CDR records</TD><TD><INPUT TYPE="text" NAME="voip_inbound__default_prefix" VALUE="+1"></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the amaflags field is set to "2" ("BILL"/"BILLING").</TD><TD><INPUT TYPE="checkbox" NAME="voip_inbound__use_amaflags" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the Carrier ID is set to any of these (comma-separated) values: </TD><TD><INPUT TYPE="text" NAME="voip_inbound__use_carrierid" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the CDR Type is set to this cdrtypenum: </TD><TD><INPUT TYPE="text" NAME="voip_inbound__use_cdrtypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the CDR Type is set to this cdrtypenum: </TD><TD><INPUT TYPE="text" NAME="voip_inbound__ignore_cdrtypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the CDR Call Type is set to this cdrtypenum: </TD><TD><INPUT TYPE="text" NAME="voip_inbound__use_calltypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the CDR Call Type is set to this cdrtypenum: </TD><TD><INPUT TYPE="text" NAME="voip_inbound__ignore_calltypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the Disposition is set to any of these (comma-separated) values: </TD><TD><INPUT TYPE="text" NAME="voip_inbound__ignore_disposition" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the Disposition is set to any of these (comma-separated) values: </TD><TD><INPUT TYPE="text" NAME="voip_inbound__disposition_in" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the dcontext is set to any of these (comma-separated) values:</TD><TD><INPUT TYPE="text" NAME="voip_inbound__skip_dcontext" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the dstchannel starts with:</TD><TD><INPUT TYPE="text" NAME="voip_inbound__skip_dstchannel_prefix" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the destination is less than this many digits:</TD><TD><INPUT TYPE="text" NAME="voip_inbound__skip_dst_length_less" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the lastapp matches this value</TD><TD><INPUT TYPE="text" NAME="voip_inbound__skip_lastapp" VALUE=""></TD></TR><TR><TD ALIGN="right">Calculate usage based on the duration field instead of the billsec field</TD><TD><INPUT TYPE="checkbox" NAME="voip_inbound__use_duration" VALUE=1 ></TD></TR><TR><TD ALIGN="right">CDR invoice display format</TD><TD><SELECT NAME="voip_inbound__output_format"><OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="source_default">Default with source<OPTION VALUE="basic">Basic<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="simple">Simple<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="simple2">Simple with source<OPTION VALUE="default">Default<OPTION VALUE="sum_count_class">Summary, one line per usage class</SELECT></TD></TR><TR><TD ALIGN="right">Always put usage details in separate section</TD><TD><INPUT TYPE="checkbox" NAME="voip_inbound__usage_mandate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Include usage summary with recurring charges when usage is in separate section</TD><TD><INPUT TYPE="checkbox" NAME="voip_inbound__summarize_usage" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Section in which to place usage charges (whether separated or not)</TD><TD><INPUT TYPE="text" NAME="voip_inbound__usage_section" VALUE=""></TD></TR><TR><TD ALIGN="right">Generate an invoice immediately for every call. Useful for prepaid.</TD><TD><INPUT TYPE="checkbox" NAME="voip_inbound__bill_every_call" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="voip_inbound__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="voip_inbound__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="voip_inbound__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="voip_inbound__OPTIONS" VALUE="a2billing_carrier_increment_offp,a2billing_retail_increment_offp,summarize_usage,skip_lastapp,sec_granularity,a2billing_retail_initblock_offp,prorate_round_day,recur_temporality,a2billing_simultaccess,recur_fee,delay_cancel,min_included,setup_fee,usage_mandate,use_amaflags,recur_method,prorate_verbose,a2billing_type,a2billing_retail_cost_min_offp,bill_every_call,unused_credit_suspend,usage_section,a2billing_carrier_cost_min,use_duration,use_calltypenum,unused_credit_cancel,output_format,ignore_disposition,use_cdrtypenum,cutoff_day,prorate_defer_bill,ignore_calltypenum,min_charge,skip_dcontext,ignore_cdrtypenum,default_prefix,a2billing_tariff,disposition_in,a2billing_carrer_initblock_offp,use_carrierid,add_full_period,skip_dstchannel_prefix,skip_dst_length_less,unused_credit_change"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD> + <SELECT NAME="voip_inbound__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Recurring fee method</TD><TD> + <SELECT NAME="voip_inbound__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_inbound__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_inbound__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_inbound__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_inbound__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Charge per minute</TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__min_charge" VALUE=""></TD></TR><TR><TD ALIGN="right">Minutes included</TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__min_included" VALUE=""></TD></TR><TR><TD ALIGN="right">Granularity</TD><TD> + <SELECT NAME="voip_inbound__sec_granularity"><OPTION VALUE="1">1 second<OPTION VALUE="6">6 second<OPTION VALUE="30">30 second<OPTION VALUE="60">minute<OPTION VALUE="0">call</SELECT></TD></TR><TR><TD ALIGN="right">Default prefix optionally prepended to customer DID numbers when searching for CDR records</TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__default_prefix" VALUE="+1"></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the amaflags field is set to "2" ("BILL"/"BILLING").</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_inbound__use_amaflags" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the Carrier ID is set to any of these (comma-separated) values: </TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__use_carrierid" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the CDR Type is set to this cdrtypenum: </TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__use_cdrtypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the CDR Type is set to this cdrtypenum: </TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__ignore_cdrtypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the CDR Call Type is set to this cdrtypenum: </TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__use_calltypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the CDR Call Type is set to this cdrtypenum: </TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__ignore_calltypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the Disposition is set to any of these (comma-separated) values: </TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__ignore_disposition" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the Disposition is set to any of these (comma-separated) values: </TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__disposition_in" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the dcontext is set to any of these (comma-separated) values:</TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__skip_dcontext" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the dstchannel starts with:</TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__skip_dstchannel_prefix" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the destination is less than this many digits:</TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__skip_dst_length_less" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the lastapp matches this value</TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__skip_lastapp" VALUE=""></TD></TR><TR><TD ALIGN="right">Calculate usage based on the duration field instead of the billsec field</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_inbound__use_duration" VALUE=1 ></TD></TR><TR><TD ALIGN="right">CDR invoice display format</TD><TD> + <SELECT NAME="voip_inbound__output_format"><OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple2">Simple with source<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="simple">Simple<OPTION VALUE="source_default">Default with source<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="basic">Basic<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="default">Default</SELECT></TD></TR><TR><TD ALIGN="right">Always put usage details in separate section</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_inbound__usage_mandate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Include usage summary with recurring charges when usage is in separate section</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_inbound__summarize_usage" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Section in which to place usage charges (whether separated or not)</TD><TD> + <INPUT TYPE="text" NAME="voip_inbound__usage_section" VALUE=""></TD></TR><TR><TD ALIGN="right">Generate an invoice immediately for every call. Useful for prepaid.</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_inbound__bill_every_call" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_inbound__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_inbound__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_inbound__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "voip_inbound__OPTIONS" + ID = "voip_inbound__OPTIONS" + VALUE = "recur_temporality,recur_method,cutoff_day,prorate_defer_bill,prorate_round_day,add_full_period,prorate_verbose,min_charge,min_included,sec_granularity,default_prefix,use_amaflags,use_carrierid,use_cdrtypenum,ignore_cdrtypenum,use_calltypenum,ignore_calltypenum,ignore_disposition,disposition_in,skip_dcontext,skip_dstchannel_prefix,skip_dst_length_less,skip_lastapp,use_duration,output_format,usage_mandate,summarize_usage,usage_section,bill_every_call,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4403,7 +4798,64 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD><SELECT NAME="voip_tiered__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Recurring fee method</TD><TD><SELECT NAME="voip_tiered__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD><INPUT TYPE="text" NAME="voip_tiered__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">CDR service matching method</TD><TD><SELECT NAME="voip_tiered__cdr_svc_method"><OPTION VALUE="svc_phone.phonenum">Phone numbers (svc_phone.phonenum)<OPTION VALUE="svc_pbx.title">PBX name (svc_pbx.title)<OPTION VALUE="svc_pbx.svcnum">Freeside service # (svc_pbx.svcnum)<OPTION VALUE="svc_pbx.ip.src">PBX name to source IP address<OPTION VALUE="svc_pbx.ip.dst">PBX name to destination IP address<OPTION VALUE="svc_acct.username">Username (svc_acct.username)</SELECT></TD></TR><TR><TD ALIGN="right">Call direction when using phone number matching</TD><TD><SELECT NAME="voip_tiered__cdr_inout"><OPTION VALUE="outbound">Outbound<OPTION VALUE="inbound">Inbound<OPTION VALUE="outbound_inbound">Outbound and Inbound</SELECT></TD></TR><TR><TD ALIGN="right">Tier plan</TD><TD><SELECT NAME="voip_tiered__tiernum"></SELECT></TD></TR><TR><TD ALIGN="right">Rounding for destination prefix rating</TD><TD><SELECT NAME="voip_tiered__rounding"><OPTION VALUE="2">Two decimal places (cent)<OPTION VALUE="4">Four decimal places (100th of a cent)</SELECT></TD></TR><TR><TD ALIGN="right">Number of calls included at no usage charge</TD><TD><INPUT TYPE="text" NAME="voip_tiered__calls_included" VALUE=""></TD></TR><TR><TD ALIGN="right">Minutes included</TD><TD><INPUT TYPE="text" NAME="voip_tiered__min_included" VALUE=""></TD></TR><TR><TD ALIGN="right">Granularity</TD><TD><SELECT NAME="voip_tiered__sec_granularity"><OPTION VALUE="1">1 second<OPTION VALUE="6">6 second<OPTION VALUE="30">30 second<OPTION VALUE="60">minute<OPTION VALUE="0">call</SELECT></TD></TR><TR><TD ALIGN="right">Default prefix optionally prepended to customer DID numbers when searching for CDR records</TD><TD><INPUT TYPE="text" NAME="voip_tiered__default_prefix" VALUE="+1"></TD></TR><TR><TD ALIGN="right">Disable rating of CDR records based on the "src" field in addition to "charged_party"</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__disable_src" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the amaflags field is set to "2" ("BILL"/"BILLING").</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__use_amaflags" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the Carrier ID is set to any of these (comma-separated) values: </TD><TD><INPUT TYPE="text" NAME="voip_tiered__use_carrierid" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the CDR Type is set to this cdrtypenum: </TD><TD><INPUT TYPE="text" NAME="voip_tiered__use_cdrtypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the CDR Type is set to this cdrtypenum: </TD><TD><INPUT TYPE="text" NAME="voip_tiered__ignore_cdrtypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the CDR Call Type is set to this calltypenum: </TD><TD><INPUT TYPE="text" NAME="voip_tiered__use_calltypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the CDR Call Type is set to this calltypenum: </TD><TD><INPUT TYPE="text" NAME="voip_tiered__ignore_calltypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the Disposition is set to any of these (comma-separated) values: </TD><TD><INPUT TYPE="text" NAME="voip_tiered__ignore_disposition" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the Disposition is set to any of these (comma-separated) values: </TD><TD><INPUT TYPE="text" NAME="voip_tiered__disposition_in" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the dcontext is set to any of these (comma-separated) values: </TD><TD><INPUT TYPE="text" NAME="voip_tiered__skip_dcontext" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the destination number starts with any of these values: </TD><TD><INPUT TYPE="text" NAME="voip_tiered__skip_dst_prefix" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the dstchannel starts with:</TD><TD><INPUT TYPE="text" NAME="voip_tiered__skip_dstchannel_prefix" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the source is more than this many digits:</TD><TD><INPUT TYPE="text" NAME="voip_tiered__skip_src_length_more" VALUE=""></TD></TR><TR><TD ALIGN="right">When using an alternate rate plan for toll-free accountcodes, the CDR field to use in rating calculations</TD><TD><SELECT NAME="voip_tiered__accountcode_tollfree_field"><OPTION VALUE="dst">Destination (dst)<OPTION VALUE="src">Source (src)</SELECT></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the destination is less than this many digits:</TD><TD><INPUT TYPE="text" NAME="voip_tiered__skip_dst_length_less" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the lastapp matches this value: </TD><TD><INPUT TYPE="text" NAME="voip_tiered__skip_lastapp" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where max_callers is less than or equal to this value: </TD><TD><INPUT TYPE="text" NAME="voip_tiered__skip_max_callers" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for calls between numbers belonging to the same customer</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__skip_same_customer" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Calculate usage based on the duration field instead of the billsec field</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__use_duration" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Rewrite these (comma-separated) destination numbers to 411 for rating purposes (also ignore any carrierid check): </TD><TD><INPUT TYPE="text" NAME="voip_tiered__411_rewrite" VALUE=""></TD></TR><TR><TD ALIGN="right">CDR display format for invoices</TD><TD><SELECT NAME="voip_tiered__output_format"><OPTION VALUE="" SELECTED><OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="source_default">Default with source<OPTION VALUE="basic">Basic<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="simple">Simple<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="simple2">Simple with source<OPTION VALUE="default">Default</SELECT></TD></TR><TR><TD ALIGN="right">CDR display format for selfservice</TD><TD><SELECT NAME="voip_tiered__selfservice_format"><OPTION VALUE="" SELECTED><OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="source_default">Default with source<OPTION VALUE="basic">Basic<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="simple">Simple<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="simple2">Simple with source<OPTION VALUE="default">Default</SELECT></TD></TR><TR><TD ALIGN="right">Inbound CDR display format for selfservice</TD><TD><SELECT NAME="voip_tiered__selfservice_inbound_format"><OPTION VALUE="" SELECTED><OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="source_default">Default with source<OPTION VALUE="basic">Basic<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="simple">Simple<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="simple2">Simple with source<OPTION VALUE="default">Default</SELECT></TD></TR><TR><TD ALIGN="right">Always put usage details in separate section. The section is defined in the next option.</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__usage_mandate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Section in which to place usage charges (whether separated or not): </TD><TD><INPUT TYPE="text" NAME="voip_tiered__usage_section" VALUE=""></TD></TR><TR><TD ALIGN="right">Include usage summary with recurring charges when usage is in separate section</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__summarize_usage" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show details for included / no-charge calls.</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__usage_showzero" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Generate an invoice immediately for every call (as well any setup fee, upon first payment). Useful for prepaid.</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__bill_every_call" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill for all phone numbers that were active during the billing period</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__bill_inactive_svcs" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only bill CDRs with a date during the package billing period</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__bill_only_pkg_dates" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Consider for tax purposes the number of lines to be svc_phones that may be provisioned rather than those that actually are.</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__count_available_phones" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="voip_tiered__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="voip_tiered__OPTIONS" VALUE="default_prefix,accountcode_tollfree_ratenum,411_rewrite,selfservice_inbound_format,bill_only_pkg_dates,prorate_defer_bill,cutoff_day,use_cdrtypenum,unused_credit_change,use_carrierid,add_full_period,skip_dstchannel_prefix,a2billing_carrer_initblock_offp,unused_credit_suspend,usage_section,prorate_verbose,a2billing_type,output_format,use_calltypenum,tiernum,ignore_unrateable,cdr_inout,a2billing_simultaccess,bill_inactive_svcs,recur_fee,ratenum,intrastate_ratenum,min_included,accountcode_tollfree_field,usage_showzero,skip_lastapp,disable_src,a2billing_retail_increment_offp,a2billing_carrier_increment_offp,rounding,noskip_dst_length_accountcode_tollfree,sec_granularity,a2billing_retail_initblock_offp,suspend_bill,calls_included,skip_dcontext,ignore_cdrtypenum,a2billing_tariff,cdr_svc_method,ignore_calltypenum,min_charge,ignore_disposition,skip_dst_length_less,domestic_prefix,disposition_in,a2billing_carrier_cost_min,bill_every_call,rating_method,a2billing_retail_cost_min_offp,noskip_src_length_accountcode_tollfree,skip_src_length_more,skip_dst_prefix,unused_credit_cancel,use_duration,delay_cancel,recur_temporality,selfservice_format,skip_max_callers,skip_same_customer,setup_fee,usage_mandate,count_available_phones,recur_method,use_amaflags,disable_tollfree,summarize_usage,international_prefix,prorate_round_day"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD> + <SELECT NAME="voip_tiered__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Recurring fee method</TD><TD> + <SELECT NAME="voip_tiered__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">CDR service matching method</TD><TD> + <SELECT NAME="voip_tiered__cdr_svc_method"><OPTION VALUE="svc_phone.phonenum">Phone numbers (svc_phone.phonenum)<OPTION VALUE="svc_pbx.title">PBX name (svc_pbx.title)<OPTION VALUE="svc_pbx.svcnum">Freeside service # (svc_pbx.svcnum)<OPTION VALUE="svc_pbx.ip.src">PBX name to source IP address<OPTION VALUE="svc_pbx.ip.dst">PBX name to destination IP address<OPTION VALUE="svc_acct.username">Username (svc_acct.username)</SELECT></TD></TR><TR><TD ALIGN="right">Call direction when using phone number matching</TD><TD> + <SELECT NAME="voip_tiered__cdr_inout"><OPTION VALUE="outbound">Outbound<OPTION VALUE="inbound">Inbound<OPTION VALUE="outbound_inbound">Outbound and Inbound</SELECT></TD></TR><TR><TD ALIGN="right">Tier plan</TD><TD> + <SELECT NAME="voip_tiered__tiernum"></SELECT></TD></TR><TR><TD ALIGN="right">Rounding for destination prefix rating</TD><TD> + <SELECT NAME="voip_tiered__rounding"><OPTION VALUE="2">Two decimal places (cent)<OPTION VALUE="4">Four decimal places (100th of a cent)</SELECT></TD></TR><TR><TD ALIGN="right">Number of calls included at no usage charge</TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__calls_included" VALUE=""></TD></TR><TR><TD ALIGN="right">Minutes included</TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__min_included" VALUE=""></TD></TR><TR><TD ALIGN="right">Granularity</TD><TD> + <SELECT NAME="voip_tiered__sec_granularity"><OPTION VALUE="1">1 second<OPTION VALUE="6">6 second<OPTION VALUE="30">30 second<OPTION VALUE="60">minute<OPTION VALUE="0">call</SELECT></TD></TR><TR><TD ALIGN="right">Default prefix optionally prepended to customer DID numbers when searching for CDR records</TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__default_prefix" VALUE="+1"></TD></TR><TR><TD ALIGN="right">Disable rating of CDR records based on the "src" field in addition to "charged_party"</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__disable_src" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the amaflags field is set to "2" ("BILL"/"BILLING").</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__use_amaflags" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the Carrier ID is set to any of these (comma-separated) values: </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__use_carrierid" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the CDR Type is set to this cdrtypenum: </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__use_cdrtypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the CDR Type is set to this cdrtypenum: </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__ignore_cdrtypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the CDR Call Type is set to this calltypenum: </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__use_calltypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the CDR Call Type is set to this calltypenum: </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__ignore_calltypenum" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the Disposition is set to any of these (comma-separated) values: </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__ignore_disposition" VALUE=""></TD></TR><TR><TD ALIGN="right">Only charge for CDRs where the Disposition is set to any of these (comma-separated) values: </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__disposition_in" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the dcontext is set to any of these (comma-separated) values: </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__skip_dcontext" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the destination number starts with any of these values: </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__skip_dst_prefix" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the dstchannel starts with:</TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__skip_dstchannel_prefix" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the source is more than this many digits:</TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__skip_src_length_more" VALUE=""></TD></TR><TR><TD ALIGN="right">When using an alternate rate plan for toll-free accountcodes, the CDR field to use in rating calculations</TD><TD> + <SELECT NAME="voip_tiered__accountcode_tollfree_field"><OPTION VALUE="dst">Destination (dst)<OPTION VALUE="src">Source (src)</SELECT></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the destination is less than this many digits:</TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__skip_dst_length_less" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where the lastapp matches this value: </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__skip_lastapp" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for CDRs where max_callers is less than or equal to this value: </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__skip_max_callers" VALUE=""></TD></TR><TR><TD ALIGN="right">Do not charge for calls between numbers belonging to the same customer</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__skip_same_customer" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Calculate usage based on the duration field instead of the billsec field</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__use_duration" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Rewrite these (comma-separated) destination numbers to 411 for rating purposes (also ignore any carrierid check): </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__411_rewrite" VALUE=""></TD></TR><TR><TD ALIGN="right">CDR display format for invoices</TD><TD> + <SELECT NAME="voip_tiered__output_format"><OPTION VALUE="" SELECTED><OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="basic">Basic<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="default">Default<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="simple">Simple<OPTION VALUE="simple2">Simple with source<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix</SELECT></TD></TR><TR><TD ALIGN="right">CDR display format for selfservice</TD><TD> + <SELECT NAME="voip_tiered__selfservice_format"><OPTION VALUE="" SELECTED><OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="basic">Basic<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="default">Default<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="simple">Simple<OPTION VALUE="simple2">Simple with source<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix</SELECT></TD></TR><TR><TD ALIGN="right">Inbound CDR display format for selfservice</TD><TD> + <SELECT NAME="voip_tiered__selfservice_inbound_format"><OPTION VALUE="" SELECTED><OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="basic">Basic<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="default">Default<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="simple">Simple<OPTION VALUE="simple2">Simple with source<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix</SELECT></TD></TR><TR><TD ALIGN="right">Always put usage details in separate section. The section is defined in the next option.</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__usage_mandate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Section in which to place usage charges (whether separated or not): </TD><TD> + <INPUT TYPE="text" NAME="voip_tiered__usage_section" VALUE=""></TD></TR><TR><TD ALIGN="right">Include usage summary with recurring charges when usage is in separate section</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__summarize_usage" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show details for included / no-charge calls.</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__usage_showzero" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Generate an invoice immediately for every call (as well any setup fee, upon first payment). Useful for prepaid.</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__bill_every_call" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill for all phone numbers that were active during the billing period</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__bill_inactive_svcs" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Only bill CDRs with a date during the package billing period</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__bill_only_pkg_dates" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Consider for tax purposes the number of lines to be svc_phones that may be provisioned rather than those that actually are.</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__count_available_phones" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="voip_tiered__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "voip_tiered__OPTIONS" + ID = "voip_tiered__OPTIONS" + VALUE = "recur_temporality,recur_method,cutoff_day,prorate_defer_bill,prorate_round_day,add_full_period,prorate_verbose,cdr_svc_method,cdr_inout,tiernum,rounding,calls_included,min_included,sec_granularity,default_prefix,disable_src,use_amaflags,use_carrierid,use_cdrtypenum,ignore_cdrtypenum,use_calltypenum,ignore_calltypenum,ignore_disposition,disposition_in,skip_dcontext,skip_dst_prefix,skip_dstchannel_prefix,skip_src_length_more,accountcode_tollfree_field,skip_dst_length_less,skip_lastapp,skip_max_callers,skip_same_customer,use_duration,411_rewrite,output_format,selfservice_format,selfservice_inbound_format,usage_mandate,usage_section,summarize_usage,usage_showzero,bill_every_call,bill_inactive_svcs,bill_only_pkg_dates,count_available_phones,suspend_bill,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4412,7 +4864,28 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD><SELECT NAME="cdr_termination__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Recurring fee method</TD><TD><SELECT NAME="cdr_termination__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD><INPUT TYPE="text" NAME="cdr_termination__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD><INPUT TYPE="checkbox" NAME="cdr_termination__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="cdr_termination__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD><INPUT TYPE="checkbox" NAME="cdr_termination__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD><INPUT TYPE="checkbox" NAME="cdr_termination__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">CDR invoice display format</TD><TD><SELECT NAME="cdr_termination__output_format"><OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="default">Default<OPTION VALUE="simple2">Simple with source<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="source_default">Default with source<OPTION VALUE="basic">Basic<OPTION VALUE="simple">Simple<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="sum_duration">Summary, one line per service</SELECT></TD></TR><TR><TD ALIGN="right">Section in which to place separate usage charges</TD><TD><INPUT TYPE="text" NAME="cdr_termination__usage_section" VALUE=""></TD></TR><TR><TD ALIGN="right">Include usage summary with recurring charges when usage is in separate section</TD><TD><INPUT TYPE="checkbox" NAME="cdr_termination__summarize_usage" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Always put usage details in separate section</TD><TD><INPUT TYPE="checkbox" NAME="cdr_termination__usage_mandate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="cdr_termination__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="cdr_termination__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="cdr_termination__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="cdr_termination__OPTIONS" VALUE="recur_temporality,cutoff_day,prorate_defer_bill,recur_fee,a2billing_simultaccess,delay_cancel,a2billing_tariff,a2billing_carrer_initblock_offp,add_full_period,usage_mandate,recur_method,unused_credit_change,setup_fee,a2billing_retail_cost_min_offp,a2billing_carrier_increment_offp,prorate_verbose,a2billing_type,a2billing_retail_increment_offp,summarize_usage,a2billing_carrier_cost_min,usage_section,unused_credit_suspend,a2billing_retail_initblock_offp,prorate_round_day,unused_credit_cancel,output_format"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD> + <SELECT NAME="cdr_termination__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Recurring fee method</TD><TD> + <SELECT NAME="cdr_termination__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD> + <INPUT TYPE="text" NAME="cdr_termination__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD> + <INPUT TYPE="checkbox" NAME="cdr_termination__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="cdr_termination__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD> + <INPUT TYPE="checkbox" NAME="cdr_termination__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD> + <INPUT TYPE="checkbox" NAME="cdr_termination__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">CDR invoice display format</TD><TD> + <SELECT NAME="cdr_termination__output_format"><OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="basic">Basic<OPTION VALUE="default">Default<OPTION VALUE="source_default">Default with source<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="simple">Simple<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="simple2">Simple with source<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="sum_duration">Summary, one line per service</SELECT></TD></TR><TR><TD ALIGN="right">Section in which to place separate usage charges</TD><TD> + <INPUT TYPE="text" NAME="cdr_termination__usage_section" VALUE=""></TD></TR><TR><TD ALIGN="right">Include usage summary with recurring charges when usage is in separate section</TD><TD> + <INPUT TYPE="checkbox" NAME="cdr_termination__summarize_usage" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Always put usage details in separate section</TD><TD> + <INPUT TYPE="checkbox" NAME="cdr_termination__usage_mandate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="cdr_termination__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="cdr_termination__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="cdr_termination__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "cdr_termination__OPTIONS" + ID = "cdr_termination__OPTIONS" + VALUE = "recur_temporality,recur_method,cutoff_day,prorate_defer_bill,prorate_round_day,add_full_period,prorate_verbose,output_format,usage_section,summarize_usage,usage_mandate,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4421,7 +4894,14 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Nibble rate</TD><TD><INPUT TYPE="text" NAME="prepaid_nibblebill__nibble_rate" VALUE=""></TD></TR></TABLE><INPUT TYPE="hidden" NAME="prepaid_nibblebill__OPTIONS" VALUE="nibble_rate,recur_fee,setup_fee"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Nibble rate</TD><TD> + <INPUT TYPE="text" NAME="prepaid_nibblebill__nibble_rate" VALUE=""></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "prepaid_nibblebill__OPTIONS" + ID = "prepaid_nibblebill__OPTIONS" + VALUE = "setup_fee,recur_fee,nibble_rate" +> + + </DIV> @@ -4430,7 +4910,21 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Setup fee for each new service</TD><TD><INPUT TYPE="text" NAME="bulk_simple__svc_setup_fee" VALUE="0"></TD></TR><TR><TD ALIGN="right">Recurring fee for each service</TD><TD><INPUT TYPE="text" NAME="bulk_simple__svc_recur_fee" VALUE="0"></TD></TR><TR><TD ALIGN="right">Only charge fees for these services</TD><TD><SELECT MULTIPLE NAME="bulk_simple__only_svcs"><OPTION VALUE="1">Domain<OPTION VALUE="2">Test svc_acct<OPTION VALUE="3">Test svc_domain<OPTION VALUE="4">Test svc_broadband<OPTION VALUE="5">Test svc_phone</SELECT></TD></TR><TR><TD ALIGN="right">Show a count of services on the invoice, instead of a detailed list</TD><TD><INPUT TYPE="checkbox" NAME="bulk_simple__summarize_svcs" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="bulk_simple__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="bulk_simple__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="bulk_simple__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="bulk_simple__OPTIONS" VALUE="svc_setup_fee,a2billing_simultaccess,recur_fee,delay_cancel,a2billing_tariff,a2billing_carrer_initblock_offp,setup_fee,svc_recur_fee,unused_credit_change,a2billing_type,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_increment_offp,summarize_svcs,unused_credit_suspend,a2billing_carrier_cost_min,a2billing_retail_initblock_offp,only_svcs,unused_credit_cancel"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Setup fee for each new service</TD><TD> + <INPUT TYPE="text" NAME="bulk_simple__svc_setup_fee" VALUE="0"></TD></TR><TR><TD ALIGN="right">Recurring fee for each service</TD><TD> + <INPUT TYPE="text" NAME="bulk_simple__svc_recur_fee" VALUE="0"></TD></TR><TR><TD ALIGN="right">Only charge fees for these services</TD><TD> + <SELECT MULTIPLE NAME="bulk_simple__only_svcs"><OPTION VALUE="1">Domain<OPTION VALUE="2">Test svc_acct<OPTION VALUE="3">Test svc_domain<OPTION VALUE="4">Test svc_broadband<OPTION VALUE="5">Test svc_phone</SELECT></TD></TR><TR><TD ALIGN="right">Show a count of services on the invoice, instead of a detailed list</TD><TD> + <INPUT TYPE="checkbox" NAME="bulk_simple__summarize_svcs" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="bulk_simple__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="bulk_simple__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="bulk_simple__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "bulk_simple__OPTIONS" + ID = "bulk_simple__OPTIONS" + VALUE = "svc_setup_fee,svc_recur_fee,only_svcs,summarize_svcs,no_prorate,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4439,7 +4933,22 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Don't prorate recurring fees on services active for a partial month</TD><TD><INPUT TYPE="checkbox" NAME="bulk__no_prorate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Setup fee for each new service</TD><TD><INPUT TYPE="text" NAME="bulk__svc_setup_fee" VALUE="0"></TD></TR><TR><TD ALIGN="right">Recurring fee for each service</TD><TD><INPUT TYPE="text" NAME="bulk__svc_recur_fee" VALUE="0"></TD></TR><TR><TD ALIGN="right">Only charge fees for these services</TD><TD><SELECT MULTIPLE NAME="bulk__only_svcs"><OPTION VALUE="1">Domain<OPTION VALUE="2">Test svc_acct<OPTION VALUE="3">Test svc_domain<OPTION VALUE="4">Test svc_broadband<OPTION VALUE="5">Test svc_phone</SELECT></TD></TR><TR><TD ALIGN="right">Show a count of services on the invoice, instead of a detailed list</TD><TD><INPUT TYPE="checkbox" NAME="bulk__summarize_svcs" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="bulk__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="bulk__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="bulk__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="bulk__OPTIONS" VALUE="a2billing_type,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_increment_offp,summarize_svcs,unused_credit_suspend,a2billing_carrier_cost_min,a2billing_retail_initblock_offp,only_svcs,unused_credit_cancel,svc_setup_fee,no_prorate,a2billing_simultaccess,recur_fee,delay_cancel,a2billing_tariff,a2billing_carrer_initblock_offp,setup_fee,svc_recur_fee,unused_credit_change"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Don't prorate recurring fees on services active for a partial month</TD><TD> + <INPUT TYPE="checkbox" NAME="bulk__no_prorate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Setup fee for each new service</TD><TD> + <INPUT TYPE="text" NAME="bulk__svc_setup_fee" VALUE="0"></TD></TR><TR><TD ALIGN="right">Recurring fee for each service</TD><TD> + <INPUT TYPE="text" NAME="bulk__svc_recur_fee" VALUE="0"></TD></TR><TR><TD ALIGN="right">Only charge fees for these services</TD><TD> + <SELECT MULTIPLE NAME="bulk__only_svcs"><OPTION VALUE="1">Domain<OPTION VALUE="2">Test svc_acct<OPTION VALUE="3">Test svc_domain<OPTION VALUE="4">Test svc_broadband<OPTION VALUE="5">Test svc_phone</SELECT></TD></TR><TR><TD ALIGN="right">Show a count of services on the invoice, instead of a detailed list</TD><TD> + <INPUT TYPE="checkbox" NAME="bulk__summarize_svcs" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="bulk__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="bulk__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="bulk__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "bulk__OPTIONS" + ID = "bulk__OPTIONS" + VALUE = "no_prorate,svc_setup_fee,svc_recur_fee,only_svcs,summarize_svcs,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4448,7 +4957,25 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Billing Day (1 - 28)</TD><TD><INPUT TYPE="text" NAME="agent__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD><INPUT TYPE="checkbox" NAME="agent__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Disable prorating bulk packages (charge full price for packages active only a portion of the month)</TD><TD><INPUT TYPE="checkbox" NAME="agent__no_pkg_prorate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Separate customer from package display on invoices</TD><TD><INPUT TYPE="checkbox" NAME="agent__display_separate_cust" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill wholesale on cost only, disabling the price fallback</TD><TD><INPUT TYPE="checkbox" NAME="agent__cost_only" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Defer the first bill until the billing day</TD><TD><INPUT TYPE="checkbox" NAME="agent__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Round the prorated period to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="agent__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD><INPUT TYPE="checkbox" NAME="agent__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="agent__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="agent__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="agent__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="agent__OPTIONS" VALUE="recur_fee,a2billing_simultaccess,delay_cancel,a2billing_tariff,cost_only,no_pkg_prorate,prorate_defer_bill,cutoff_day,recur_temporality,unused_credit_change,setup_fee,a2billing_carrer_initblock_offp,add_full_period,a2billing_carrier_cost_min,unused_credit_suspend,a2billing_retail_cost_min_offp,a2billing_carrier_increment_offp,prorate_verbose,a2billing_type,a2billing_retail_increment_offp,display_separate_cust,unused_credit_cancel,sync_bill_date,a2billing_retail_initblock_offp,prorate_round_day"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Billing Day (1 - 28)</TD><TD> + <INPUT TYPE="text" NAME="agent__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD> + <INPUT TYPE="checkbox" NAME="agent__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Disable prorating bulk packages (charge full price for packages active only a portion of the month)</TD><TD> + <INPUT TYPE="checkbox" NAME="agent__no_pkg_prorate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Separate customer from package display on invoices</TD><TD> + <INPUT TYPE="checkbox" NAME="agent__display_separate_cust" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill wholesale on cost only, disabling the price fallback</TD><TD> + <INPUT TYPE="checkbox" NAME="agent__cost_only" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Defer the first bill until the billing day</TD><TD> + <INPUT TYPE="checkbox" NAME="agent__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Round the prorated period to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="agent__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD> + <INPUT TYPE="checkbox" NAME="agent__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="agent__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="agent__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="agent__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "agent__OPTIONS" + ID = "agent__OPTIONS" + VALUE = "cutoff_day,add_full_period,no_pkg_prorate,display_separate_cust,cost_only,prorate_defer_bill,prorate_round_day,prorate_verbose,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4457,7 +4984,28 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD><SELECT NAME="agent_cdr__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Recurring fee method</TD><TD><SELECT NAME="agent_cdr__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD><INPUT TYPE="text" NAME="agent_cdr__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD><INPUT TYPE="checkbox" NAME="agent_cdr__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="agent_cdr__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD><INPUT TYPE="checkbox" NAME="agent_cdr__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD><INPUT TYPE="checkbox" NAME="agent_cdr__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">CDR invoice display format</TD><TD><SELECT NAME="agent_cdr__output_format"><OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="default">Default<OPTION VALUE="simple2">Simple with source<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="source_default">Default with source<OPTION VALUE="basic">Basic<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple">Simple<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name</SELECT></TD></TR><TR><TD ALIGN="right">Section in which to place separate usage charges</TD><TD><INPUT TYPE="text" NAME="agent_cdr__usage_section" VALUE=""></TD></TR><TR><TD ALIGN="right">Include usage summary with recurring charges when usage is in separate section</TD><TD><INPUT TYPE="checkbox" NAME="agent_cdr__summarize_usage" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Always put usage details in separate section</TD><TD><INPUT TYPE="checkbox" NAME="agent_cdr__usage_mandate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="agent_cdr__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="agent_cdr__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="agent_cdr__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="agent_cdr__OPTIONS" VALUE="add_full_period,a2billing_carrer_initblock_offp,setup_fee,unused_credit_change,recur_method,usage_mandate,cutoff_day,prorate_defer_bill,recur_temporality,a2billing_tariff,delay_cancel,a2billing_simultaccess,recur_fee,prorate_round_day,a2billing_retail_initblock_offp,output_format,unused_credit_cancel,a2billing_retail_increment_offp,a2billing_type,prorate_verbose,a2billing_retail_cost_min_offp,a2billing_carrier_increment_offp,usage_section,unused_credit_suspend,a2billing_carrier_cost_min,summarize_usage"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Charge recurring fee for period</TD><TD> + <SELECT NAME="agent_cdr__recur_temporality"><OPTION VALUE="upcoming">Upcoming (future)<OPTION VALUE="preceding">Preceding (past)</SELECT></TD></TR><TR><TD ALIGN="right">Recurring fee method</TD><TD> + <SELECT NAME="agent_cdr__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD> + <INPUT TYPE="text" NAME="agent_cdr__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD> + <INPUT TYPE="checkbox" NAME="agent_cdr__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="agent_cdr__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD> + <INPUT TYPE="checkbox" NAME="agent_cdr__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD> + <INPUT TYPE="checkbox" NAME="agent_cdr__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">CDR invoice display format</TD><TD> + <SELECT NAME="agent_cdr__output_format"><OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="simple">Simple<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="basic">Basic<OPTION VALUE="default">Default<OPTION VALUE="source_default">Default with source<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="simple2">Simple with source<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name</SELECT></TD></TR><TR><TD ALIGN="right">Section in which to place separate usage charges</TD><TD> + <INPUT TYPE="text" NAME="agent_cdr__usage_section" VALUE=""></TD></TR><TR><TD ALIGN="right">Include usage summary with recurring charges when usage is in separate section</TD><TD> + <INPUT TYPE="checkbox" NAME="agent_cdr__summarize_usage" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Always put usage details in separate section</TD><TD> + <INPUT TYPE="checkbox" NAME="agent_cdr__usage_mandate" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="agent_cdr__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="agent_cdr__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="agent_cdr__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "agent_cdr__OPTIONS" + ID = "agent_cdr__OPTIONS" + VALUE = "recur_temporality,recur_method,cutoff_day,prorate_defer_bill,prorate_round_day,add_full_period,prorate_verbose,output_format,usage_section,summarize_usage,usage_mandate,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4466,7 +5014,27 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Included megabytes/sec (95th percentile)</TD><TD><INPUT TYPE="text" NAME="torrus_bw_percentile__base_mbps" VALUE="0"></TD></TR><TR><TD ALIGN="right">Charge per megabyte/sec (95th percentile)</TD><TD><INPUT TYPE="text" NAME="torrus_bw_percentile__mbps_rate" VALUE="0"></TD></TR><TR><TD ALIGN="right">Auto-add a start date to the 1st, ignoring the current month.</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_percentile__start_1st" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, defer the bill until the customer's next bill date</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_percentile__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, round the prorated period to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_percentile__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_percentile__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Adjust next bill date forward when unsuspending</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_percentile__unsuspend_adjust_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill the last period on cancellation</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_percentile__bill_recur_on_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill immediately upon suspension</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_percentile__bill_suspend_as_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD><INPUT TYPE="text" NAME="torrus_bw_percentile__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_percentile__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_percentile__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_percentile__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="torrus_bw_percentile__OPTIONS" VALUE="cutoff_day,recur_temporality,prorate_defer_bill,unsuspend_adjust_bill,externalid,a2billing_tariff,delay_cancel,a2billing_simultaccess,recur_fee,add_full_period,a2billing_carrer_initblock_offp,setup_fee,base_mbps,unused_credit_change,a2billing_retail_increment_offp,a2billing_type,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,unused_credit_suspend,a2billing_carrier_cost_min,mbps_rate,bill_recur_on_cancel,prorate_round_day,a2billing_retail_initblock_offp,start_1st,suspend_bill,sync_bill_date,unused_credit_cancel,bill_suspend_as_cancel"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Included megabytes/sec (95th percentile)</TD><TD> + <INPUT TYPE="text" NAME="torrus_bw_percentile__base_mbps" VALUE="0"></TD></TR><TR><TD ALIGN="right">Charge per megabyte/sec (95th percentile)</TD><TD> + <INPUT TYPE="text" NAME="torrus_bw_percentile__mbps_rate" VALUE="0"></TD></TR><TR><TD ALIGN="right">Auto-add a start date to the 1st, ignoring the current month.</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_percentile__start_1st" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, defer the bill until the customer's next bill date</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_percentile__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, round the prorated period to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_percentile__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_percentile__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Adjust next bill date forward when unsuspending</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_percentile__unsuspend_adjust_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill the last period on cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_percentile__bill_recur_on_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill immediately upon suspension</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_percentile__bill_suspend_as_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD> + <INPUT TYPE="text" NAME="torrus_bw_percentile__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_percentile__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_percentile__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_percentile__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "torrus_bw_percentile__OPTIONS" + ID = "torrus_bw_percentile__OPTIONS" + VALUE = "base_mbps,mbps_rate,start_1st,prorate_defer_bill,prorate_round_day,suspend_bill,unsuspend_adjust_bill,bill_recur_on_cancel,bill_suspend_as_cancel,externalid,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4475,7 +5043,27 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Included gigabytes</TD><TD><INPUT TYPE="text" NAME="torrus_bw_usage__base_gb" VALUE="0"></TD></TR><TR><TD ALIGN="right">Charge per gigabyte</TD><TD><INPUT TYPE="text" NAME="torrus_bw_usage__gb_rate" VALUE="0"></TD></TR><TR><TD ALIGN="right">Auto-add a start date to the 1st, ignoring the current month.</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_usage__start_1st" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, defer the bill until the customer's next bill date</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_usage__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, round the prorated period to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_usage__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_usage__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Adjust next bill date forward when unsuspending</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_usage__unsuspend_adjust_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill the last period on cancellation</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_usage__bill_recur_on_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill immediately upon suspension</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_usage__bill_suspend_as_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD><INPUT TYPE="text" NAME="torrus_bw_usage__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_usage__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_usage__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="torrus_bw_usage__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="torrus_bw_usage__OPTIONS" VALUE="sync_bill_date,bill_suspend_as_cancel,unused_credit_cancel,prorate_round_day,start_1st,a2billing_retail_initblock_offp,suspend_bill,unused_credit_suspend,a2billing_carrier_cost_min,bill_recur_on_cancel,a2billing_retail_increment_offp,a2billing_type,a2billing_retail_cost_min_offp,a2billing_carrier_increment_offp,setup_fee,unused_credit_change,add_full_period,a2billing_carrer_initblock_offp,externalid,a2billing_tariff,delay_cancel,a2billing_simultaccess,recur_fee,base_gb,prorate_defer_bill,recur_temporality,cutoff_day,unsuspend_adjust_bill,gb_rate"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Included gigabytes</TD><TD> + <INPUT TYPE="text" NAME="torrus_bw_usage__base_gb" VALUE="0"></TD></TR><TR><TD ALIGN="right">Charge per gigabyte</TD><TD> + <INPUT TYPE="text" NAME="torrus_bw_usage__gb_rate" VALUE="0"></TD></TR><TR><TD ALIGN="right">Auto-add a start date to the 1st, ignoring the current month.</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_usage__start_1st" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, defer the bill until the customer's next bill date</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_usage__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When synchronizing, round the prorated period to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_usage__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Continue recurring billing while suspended</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_usage__suspend_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Adjust next bill date forward when unsuspending</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_usage__unsuspend_adjust_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill the last period on cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_usage__bill_recur_on_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Bill immediately upon suspension</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_usage__bill_suspend_as_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Optional External ID</TD><TD> + <INPUT TYPE="text" NAME="torrus_bw_usage__externalid" VALUE=""></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_usage__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_usage__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="torrus_bw_usage__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "torrus_bw_usage__OPTIONS" + ID = "torrus_bw_usage__OPTIONS" + VALUE = "base_gb,gb_rate,start_1st,prorate_defer_bill,prorate_round_day,suspend_bill,unsuspend_adjust_bill,bill_recur_on_cancel,bill_suspend_as_cancel,externalid,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4484,7 +5072,23 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Units included</TD><TD><INPUT TYPE="text" NAME="sql_generic__recur_included" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per unit</TD><TD><INPUT TYPE="text" NAME="sql_generic__recur_unit_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">DBI data source</TD><TD><INPUT TYPE="text" NAME="sql_generic__datasrc" VALUE=""></TD></TR><TR><TD ALIGN="right">Database username</TD><TD><INPUT TYPE="text" NAME="sql_generic__db_username" VALUE=""></TD></TR><TR><TD ALIGN="right">Database username</TD><TD><INPUT TYPE="text" NAME="sql_generic__db_password" VALUE=""></TD></TR><TR><TD ALIGN="right">SQL query</TD><TD><INPUT TYPE="text" NAME="sql_generic__query" VALUE=""></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="sql_generic__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="sql_generic__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="sql_generic__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="sql_generic__OPTIONS" VALUE="delay_cancel,a2billing_tariff,recur_fee,a2billing_simultaccess,a2billing_carrer_initblock_offp,unused_credit_change,setup_fee,a2billing_retail_increment_offp,recur_unit_charge,a2billing_retail_cost_min_offp,a2billing_carrier_increment_offp,a2billing_type,a2billing_carrier_cost_min,unused_credit_suspend,db_username,a2billing_retail_initblock_offp,datasrc,query,recur_included,unused_credit_cancel,db_password"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Units included</TD><TD> + <INPUT TYPE="text" NAME="sql_generic__recur_included" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per unit</TD><TD> + <INPUT TYPE="text" NAME="sql_generic__recur_unit_charge" VALUE="0"></TD></TR><TR><TD ALIGN="right">DBI data source</TD><TD> + <INPUT TYPE="text" NAME="sql_generic__datasrc" VALUE=""></TD></TR><TR><TD ALIGN="right">Database username</TD><TD> + <INPUT TYPE="text" NAME="sql_generic__db_username" VALUE=""></TD></TR><TR><TD ALIGN="right">Database username</TD><TD> + <INPUT TYPE="text" NAME="sql_generic__db_password" VALUE=""></TD></TR><TR><TD ALIGN="right">SQL query</TD><TD> + <INPUT TYPE="text" NAME="sql_generic__query" VALUE=""></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="sql_generic__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="sql_generic__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="sql_generic__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "sql_generic__OPTIONS" + ID = "sql_generic__OPTIONS" + VALUE = "recur_included,recur_unit_charge,datasrc,db_username,db_password,query,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4493,7 +5097,27 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Recurring fee method</TD><TD><SELECT NAME="sql_external__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD><INPUT TYPE="text" NAME="sql_external__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD><INPUT TYPE="checkbox" NAME="sql_external__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="sql_external__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD><INPUT TYPE="checkbox" NAME="sql_external__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD><INPUT TYPE="checkbox" NAME="sql_external__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">DBI data source</TD><TD><INPUT TYPE="text" NAME="sql_external__datasrc" VALUE=""></TD></TR><TR><TD ALIGN="right">Database username</TD><TD><INPUT TYPE="text" NAME="sql_external__db_username" VALUE=""></TD></TR><TR><TD ALIGN="right">Database password</TD><TD><INPUT TYPE="text" NAME="sql_external__db_password" VALUE=""></TD></TR><TR><TD ALIGN="right">SQL query</TD><TD><INPUT TYPE="text" NAME="sql_external__query" VALUE=""></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="sql_external__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="sql_external__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="sql_external__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="sql_external__OPTIONS" VALUE="cutoff_day,prorate_defer_bill,recur_fee,a2billing_simultaccess,a2billing_tariff,delay_cancel,a2billing_carrer_initblock_offp,add_full_period,unused_credit_change,recur_method,setup_fee,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,prorate_verbose,a2billing_type,a2billing_retail_increment_offp,a2billing_carrier_cost_min,unused_credit_suspend,db_username,a2billing_retail_initblock_offp,datasrc,prorate_round_day,unused_credit_cancel,db_password,query"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Recurring fee method</TD><TD> + <SELECT NAME="sql_external__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD> + <INPUT TYPE="text" NAME="sql_external__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD> + <INPUT TYPE="checkbox" NAME="sql_external__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="sql_external__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD> + <INPUT TYPE="checkbox" NAME="sql_external__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD> + <INPUT TYPE="checkbox" NAME="sql_external__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">DBI data source</TD><TD> + <INPUT TYPE="text" NAME="sql_external__datasrc" VALUE=""></TD></TR><TR><TD ALIGN="right">Database username</TD><TD> + <INPUT TYPE="text" NAME="sql_external__db_username" VALUE=""></TD></TR><TR><TD ALIGN="right">Database password</TD><TD> + <INPUT TYPE="text" NAME="sql_external__db_password" VALUE=""></TD></TR><TR><TD ALIGN="right">SQL query</TD><TD> + <INPUT TYPE="text" NAME="sql_external__query" VALUE=""></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="sql_external__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="sql_external__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="sql_external__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "sql_external__OPTIONS" + ID = "sql_external__OPTIONS" + VALUE = "recur_method,cutoff_day,prorate_defer_bill,prorate_round_day,add_full_period,prorate_verbose,datasrc,db_username,db_password,query,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4502,7 +5126,23 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Recurring fee method</TD><TD><SELECT NAME="currency_fixed__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD><INPUT TYPE="text" NAME="currency_fixed__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD><INPUT TYPE="checkbox" NAME="currency_fixed__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD><INPUT TYPE="checkbox" NAME="currency_fixed__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD><INPUT TYPE="checkbox" NAME="currency_fixed__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD><INPUT TYPE="checkbox" NAME="currency_fixed__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="currency_fixed__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD><span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD><INPUT TYPE="checkbox" NAME="currency_fixed__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="currency_fixed__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="currency_fixed__OPTIONS" VALUE="add_full_period,a2billing_carrer_initblock_offp,setup_fee,unused_credit_change,recur_method,cutoff_day,prorate_defer_bill,delay_cancel,a2billing_tariff,a2billing_simultaccess,recur_fee,prorate_round_day,a2billing_retail_initblock_offp,unused_credit_cancel,a2billing_retail_increment_offp,prorate_verbose,a2billing_type,a2billing_retail_cost_min_offp,a2billing_carrier_increment_offp,unused_credit_suspend,a2billing_carrier_cost_min"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Recurring fee method</TD><TD> + <SELECT NAME="currency_fixed__recur_method"><OPTION VALUE="anniversary">Charge the recurring fee at the frequency specified above<OPTION VALUE="prorate">Charge a prorated fee the first time (selectable billing date)<OPTION VALUE="subscription">Charge the full fee for the first partial period (selectable billing date)</SELECT></TD></TR><TR><TD ALIGN="right">Billing Day (1 - 28) for prorating or subscription</TD><TD> + <INPUT TYPE="text" NAME="currency_fixed__cutoff_day" VALUE="1"></TD></TR><TR><TD ALIGN="right">When prorating, defer the first bill until the billing day</TD><TD> + <INPUT TYPE="checkbox" NAME="currency_fixed__prorate_defer_bill" VALUE=1 ></TD></TR><TR><TD ALIGN="right">When prorating, round to the nearest full day</TD><TD> + <INPUT TYPE="checkbox" NAME="currency_fixed__prorate_round_day" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">When prorating first month, also bill for one full period after that</TD><TD> + <INPUT TYPE="checkbox" NAME="currency_fixed__add_full_period" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Show prorate details on the invoice</TD><TD> + <INPUT TYPE="checkbox" NAME="currency_fixed__prorate_verbose" VALUE=1 CHECKED></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="currency_fixed__unused_credit_cancel" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when suspending</TD><TD> + <span title="You must set the 'suspend_credit_type' option in Configuration->Settings to gain access to this option.">N/A</span></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service when changing packages</TD><TD> + <INPUT TYPE="checkbox" NAME="currency_fixed__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="currency_fixed__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "currency_fixed__OPTIONS" + ID = "currency_fixed__OPTIONS" + VALUE = "recur_method,cutoff_day,prorate_defer_bill,prorate_round_day,add_full_period,prorate_verbose,setup_fee,recur_fee,unused_credit_cancel,unused_credit_suspend,unused_credit_change,delay_cancel,a2billing_tariff,a2billing_type,a2billing_simultaccess,a2billing_carrier_cost_min,a2billing_carrer_initblock_offp,a2billing_carrier_increment_offp,a2billing_retail_cost_min_offp,a2billing_retail_initblock_offp,a2billing_retail_increment_offp" +> + + </DIV> @@ -4521,12 +5161,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -4574,12 +5214,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -4627,12 +5267,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat').style.zIndex = 0; document.getElementById('plandflat_delayed').style.display = "none"; document.getElementById('plandflat_delayed').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -4674,7 +5314,7 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_introrate').style.zIndex = 1; } - if (planlayer == "prorate_calendar" ) { + if (planlayer == "prorate" ) { document.getElementById('plandflat').style.display = "none"; document.getElementById('plandflat').style.zIndex = 0; @@ -4682,10 +5322,10 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate').style.display = "none"; - document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -4723,11 +5363,11 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandcurrency_fixed').style.display = "none"; document.getElementById('plandcurrency_fixed').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = ""; - document.getElementById('plandprorate_calendar').style.zIndex = 1; + document.getElementById('plandprorate').style.display = ""; + document.getElementById('plandprorate').style.zIndex = 1; } - if (planlayer == "prorate" ) { + if (planlayer == "prorate_delayed" ) { document.getElementById('plandflat').style.display = "none"; document.getElementById('plandflat').style.zIndex = 0; @@ -4735,10 +5375,10 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; + document.getElementById('plandprorate').style.display = "none"; + document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_calendar').style.display = "none"; document.getElementById('plandprorate_calendar').style.zIndex = 0; - document.getElementById('plandprorate_delayed').style.display = "none"; - document.getElementById('plandprorate_delayed').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -4776,11 +5416,11 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandcurrency_fixed').style.display = "none"; document.getElementById('plandcurrency_fixed').style.zIndex = 0; - document.getElementById('plandprorate').style.display = ""; - document.getElementById('plandprorate').style.zIndex = 1; + document.getElementById('plandprorate_delayed').style.display = ""; + document.getElementById('plandprorate_delayed').style.zIndex = 1; } - if (planlayer == "prorate_delayed" ) { + if (planlayer == "prorate_calendar" ) { document.getElementById('plandflat').style.display = "none"; document.getElementById('plandflat').style.zIndex = 0; @@ -4788,10 +5428,10 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; + document.getElementById('plandprorate_delayed').style.display = "none"; + document.getElementById('plandprorate_delayed').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -4829,8 +5469,8 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandcurrency_fixed').style.display = "none"; document.getElementById('plandcurrency_fixed').style.zIndex = 0; - document.getElementById('plandprorate_delayed').style.display = ""; - document.getElementById('plandprorate_delayed').style.zIndex = 1; + document.getElementById('plandprorate_calendar').style.display = ""; + document.getElementById('plandprorate_calendar').style.zIndex = 1; } if (planlayer == "prepaid" ) { @@ -4841,12 +5481,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; document.getElementById('plandsubscription').style.zIndex = 0; document.getElementById('plandsqlradacct_hour').style.display = "none"; @@ -4894,12 +5534,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsqlradacct_hour').style.display = "none"; @@ -4947,12 +5587,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5000,12 +5640,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5053,12 +5693,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5106,12 +5746,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5159,12 +5799,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5212,12 +5852,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5265,12 +5905,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5318,12 +5958,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5371,12 +6011,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5424,12 +6064,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5477,12 +6117,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5530,12 +6170,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5583,12 +6223,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5636,12 +6276,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5689,12 +6329,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; @@ -5742,12 +6382,12 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').style.zIndex = 0; document.getElementById('plandflat_introrate').style.display = "none"; document.getElementById('plandflat_introrate').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = "none"; - document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprorate').style.display = "none"; document.getElementById('plandprorate').style.zIndex = 0; document.getElementById('plandprorate_delayed').style.display = "none"; document.getElementById('plandprorate_delayed').style.zIndex = 0; + document.getElementById('plandprorate_calendar').style.display = "none"; + document.getElementById('plandprorate_calendar').style.zIndex = 0; document.getElementById('plandprepaid').style.display = "none"; document.getElementById('plandprepaid').style.zIndex = 0; document.getElementById('plandsubscription').style.display = "none"; diff --git a/FS-Test/share/output/edit/process/quick-charge.cgi/amount=100.00:custnum=2:pkg=Test%20one-time%20charge:quantity=1:bill_now=1 b/FS-Test/share/output/edit/process/quick-charge.cgi/amount=100.00:custnum=2:pkg=Test%20one-time%20charge:quantity=1:bill_now=1 index 038dde819..22d8b4224 100644 --- a/FS-Test/share/output/edit/process/quick-charge.cgi/amount=100.00:custnum=2:pkg=Test%20one-time%20charge:quantity=1:bill_now=1 +++ b/FS-Test/share/output/edit/process/quick-charge.cgi/amount=100.00:custnum=2:pkg=Test%20one-time%20charge:quantity=1:bill_now=1 @@ -1,328 +1,19 @@ - - - -<html><body> - -<p align="center"><font face="Verdana, Arial, Helvetica, sans-serif"><b>System error</b></font></p> -<table border="0" cellspacing="0" cellpadding="1"> - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>error:</b> </font></td> - <td align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2">Error during compilation of /var/www/html/freeside/edit/process/quick-charge.cgi:<br>syntax error at /var/www/html/freeside/edit/process/quick-charge.cgi line 126, near ")<br> ( "<br>Global symbol "$amount" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 132.<br>Global symbol "$setup_cost" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 133.<br>Global symbol "$quantity" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 134.<br>Global symbol "$override" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 147.<br>syntax error at /var/www/html/freeside/edit/process/quick-charge.cgi line 1, near "if"<br>Global symbol "$error" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 1.<br>Global symbol "$error" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 2.<br>syntax error at /var/www/html/freeside/edit/process/quick-charge.cgi line 4, near "}"<br> (Might be a runaway multi-line '' string starting on line 3)<br>Global symbol "$message" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 5.<br>syntax error at /var/www/html/freeside/edit/process/quick-charge.cgi line 10, near "}"<br> (Might be a runaway multi-line '' string starting on line 5)<br>/var/www/html/freeside/edit/process/quick-charge.cgi has too many errors.<br></font></td> - </tr> - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>context:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> - <table border="0" cellpadding="0" cellspacing="0"> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>1:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><font color=red>% if ( $error ) {</font></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>2:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><font color=red>% $cgi->param('error', $error );</font></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>3:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><% $cgi->redirect($p.'quick-charge.html?'. $cgi->query_string) %></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>4:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><font color=red>% } else {</font></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>5:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><font color=red><% header(emt($message)) %></font></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>6:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> <SCRIPT TYPE="text/javascript"></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>7:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> window.top.location.reload();</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>8:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> </SCRIPT></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>9:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> </BODY></HTML></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>10:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><font color=red>% }</font></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>11:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><%init></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>12:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>13:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2">my $curuser = $FS::CurrentUser::CurrentUser;</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>14:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2">die "access denied"</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>...</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>122:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>123:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> if ( $param->{'taxclass'} eq '(select)' ) {</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>124:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> $error .= "Must select a tax class. "</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>125:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> unless ($conf->config('tax_data_vendor'))</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>126:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><font color=red> ( $override || $param->{taxproductnum} )</font></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>127:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> );</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>128:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> $cgi->param('taxclass', '');</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>129:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> }</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>130:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>131:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> my %charge = (</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>132:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><font color=red> 'amount' => $amount,</font></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>133:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><font color=red> 'setup_cost' => $setup_cost,</font></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>134:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><font color=red> 'quantity' => $quantity,</font></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>135:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> 'bill_now' => scalar($cgi->param('bill_now')),</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>136:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> 'invoice_terms' => scalar($cgi->param('invoice_terms')),</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>137:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> 'start_date' => ( scalar($cgi->param('start_date'))</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>138:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> ? parse_datetime($cgi->param('start_date'))</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>...</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>143:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> 'pkg' => scalar($cgi->param('pkg')),</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>144:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> 'setuptax' => scalar($cgi->param('setuptax')),</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>145:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> 'taxclass' => scalar($cgi->param('taxclass')),</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>146:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> 'taxproductnum' => scalar($cgi->param('taxproductnum')),</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>147:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><font color=red> 'tax_override' => $override,</font></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>148:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> 'classnum' => scalar($cgi->param('classnum')),</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>149:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> 'additional' => \@description,</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>150:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> );</font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>151:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"></font></td> - </tr> - - <tr> - <td nowrap="nowrap" align="left" valign="top"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>...</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"></font></td> - </tr> - - - </table> - </font></td> - </tr> - <tr> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"><b>code stack:</b> </font></td> - <td align="left" valign="top" nowrap="nowrap"><font face="Verdana, Arial, Helvetica, sans-serif" size="-2"> - /usr/share/perl5/HTML/Mason/Interp.pm:453<br> - /usr/share/perl5/HTML/Mason/Request.pm:252<br> - /usr/share/perl5/HTML/Mason/Request.pm:215<br> - /usr/share/perl5/HTML/Mason/ApacheHandler.pm:94<br> - /usr/local/share/perl/5.20.2/FS/Mason/Request.pm:37<br> - /usr/share/perl5/Class/Container.pm:275<br> - /usr/share/perl5/Class/Container.pm:353<br> - /usr/share/perl5/HTML/Mason/Interp.pm:351<br> - /usr/share/perl5/HTML/Mason/ApacheHandler.pm:874<br> - /usr/share/perl5/HTML/Mason/ApacheHandler.pm:828<br> - /usr/local/etc/freeside/handler.pl:144<br> - -e:0<br> - </font></td> - </tr> -</table> - -<a href="#raw">raw error</a><br> - -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> -<br> - - -<a name="raw"></a> - -<pre>Error during compilation of /var/www/html/freeside/edit/process/quick-charge.cgi: -syntax error at /var/www/html/freeside/edit/process/quick-charge.cgi line 126, near ") - ( " -Global symbol "$amount" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 132. -Global symbol "$setup_cost" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 133. -Global symbol "$quantity" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 134. -Global symbol "$override" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 147. -syntax error at /var/www/html/freeside/edit/process/quick-charge.cgi line 1, near "if" -Global symbol "$error" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 1. -Global symbol "$error" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 2. -syntax error at /var/www/html/freeside/edit/process/quick-charge.cgi line 4, near "}" - (Might be a runaway multi-line '' string starting on line 3) -Global symbol "$message" requires explicit package name at /var/www/html/freeside/edit/process/quick-charge.cgi line 5. -syntax error at /var/www/html/freeside/edit/process/quick-charge.cgi line 10, near "}" - (Might be a runaway multi-line '' string starting on line 5) -/var/www/html/freeside/edit/process/quick-charge.cgi has too many errors. - - -Trace begun at /usr/share/perl5/HTML/Mason/Interp.pm line 854 -HTML::Mason::Interp::_compilation_error('HTML::Mason::Interp=HASH(0x7fbd843931b8)', '/var/www/html/freeside/edit/process/quick-charge.cgi', 'HTML::Mason::Exception::Compilation=HASH(0x7fbd8b2466a0)') called at /usr/share/perl5/HTML/Mason/Interp.pm line 453 -HTML::Mason::Interp::load('HTML::Mason::Interp=HASH(0x7fbd843931b8)', '/edit/process/quick-charge.cgi') called at /usr/share/perl5/HTML/Mason/Request.pm line 252 -eval {...} at /usr/share/perl5/HTML/Mason/Request.pm line 235 -HTML::Mason::Request::_initialize('FS::Mason::Request=HASH(0x7fbd8af54d08)') called at /usr/share/perl5/HTML/Mason/Request.pm line 215 -HTML::Mason::Request::new('FS::Mason::Request', 'error_mode', 'output', 'error_format', 'html', 'interp', 'HTML::Mason::Interp=HASH(0x7fbd843931b8)', 'comp', '/edit/process/quick-charge.cgi', 'args', 'ARRAY(0x7fbd8ba9b970)', 'ah', 'HTML::Mason::ApacheHandler=HASH(0x7fbd843be610)', 'apache_req', 'Apache2::RequestRec=SCALAR(0x7fbd8b414c40)', 'container', 'HASH(0x7fbd8ba9c9b8)') called at /usr/share/perl5/HTML/Mason/ApacheHandler.pm line 94 -HTML::Mason::Request::ApacheHandler::new('FS::Mason::Request', 'error_mode', 'output', 'error_format', 'html', 'interp', 'HTML::Mason::Interp=HASH(0x7fbd843931b8)', 'comp', '/edit/process/quick-charge.cgi', 'args', 'ARRAY(0x7fbd8ba9b970)', 'ah', 'HTML::Mason::ApacheHandler=HASH(0x7fbd843be610)', 'apache_req', 'Apache2::RequestRec=SCALAR(0x7fbd8b414c40)', 'container', 'HASH(0x7fbd8ba9c9b8)') called at /usr/local/share/perl/5.20.2/FS/Mason/Request.pm line 37 -FS::Mason::Request::new('FS::Mason::Request', 'error_mode', 'output', 'error_format', 'html', 'interp', 'HTML::Mason::Interp=HASH(0x7fbd843931b8)', 'comp', '/edit/process/quick-charge.cgi', 'args', 'ARRAY(0x7fbd8ba9b970)', 'ah', 'HTML::Mason::ApacheHandler=HASH(0x7fbd843be610)', 'apache_req', 'Apache2::RequestRec=SCALAR(0x7fbd8b414c40)', 'container', 'HASH(0x7fbd8ba9c9b8)') called at /usr/share/perl5/Class/Container.pm line 275 -Class::Container::call_method('HTML::Mason::Interp=HASH(0x7fbd843931b8)', 'request', 'new', 'interp', 'HTML::Mason::Interp=HASH(0x7fbd843931b8)', 'comp', '/edit/process/quick-charge.cgi', 'args', 'ARRAY(0x7fbd8ba9b970)', 'ah', 'HTML::Mason::ApacheHandler=HASH(0x7fbd843be610)', 'apache_req', 'Apache2::RequestRec=SCALAR(0x7fbd8b414c40)', 'container', 'HASH(0x7fbd8ba9c9b8)') called at /usr/share/perl5/Class/Container.pm line 353 -Class::Container::create_delayed_object('interp', 'HTML::Mason::Interp=HASH(0x7fbd843931b8)', 'comp', '/edit/process/quick-charge.cgi', 'args', 'ARRAY(0x7fbd8ba9b970)', 'ah', 'HTML::Mason::ApacheHandler=HASH(0x7fbd843be610)', 'apache_req', 'Apache2::RequestRec=SCALAR(0x7fbd8b414c40)', 'container', 'HASH(0x7fbd8ba9c9b8)') called at /usr/share/perl5/HTML/Mason/Interp.pm line 351 -HTML::Mason::Interp::make_request('HTML::Mason::Interp=HASH(0x7fbd843931b8)', 'comp', '/edit/process/quick-charge.cgi', 'args', 'ARRAY(0x7fbd8ba9b970)', 'ah', 'HTML::Mason::ApacheHandler=HASH(0x7fbd843be610)', 'apache_req', 'Apache2::RequestRec=SCALAR(0x7fbd8b414c40)') called at /usr/share/perl5/HTML/Mason/ApacheHandler.pm line 874 -eval {...} at /usr/share/perl5/HTML/Mason/ApacheHandler.pm line 873 -HTML::Mason::ApacheHandler::prepare_request('HTML::Mason::ApacheHandler=HASH(0x7fbd843be610)', 'Apache2::RequestRec=SCALAR(0x7fbd8b414c40)') called at /usr/share/perl5/HTML/Mason/ApacheHandler.pm line 828 -HTML::Mason::ApacheHandler::handle_request('HTML::Mason::ApacheHandler=HASH(0x7fbd843be610)', 'Apache2::RequestRec=SCALAR(0x7fbd8b414c40)') called at /usr/local/etc/freeside/handler.pl line 144 -eval {...} at /usr/local/etc/freeside/handler.pl line 144 -HTML::Mason::handler('Apache2::RequestRec=SCALAR(0x7fbd8b414c40)') called at -e line 0 -eval {...} at -e line 0 -</pre> - -</body></html> + <HTML> + <HEAD> + <TITLE> + One-time charge added + </TITLE> + <META HTTP-Equiv="Cache-Control" Content="no-cache"> + <META HTTP-Equiv="Pragma" Content="no-cache"> + <META HTTP-Equiv="Expires" Content="0"> + </HEAD> + <BODY BGCOLOR="#e8e8e8"> + <FONT SIZE=6> + <CENTER>One-time charge added</CENTER> + </FONT> + <BR><!--<BR>--> + + <SCRIPT TYPE="text/javascript"> + window.top.location.reload(); + </SCRIPT> + </BODY></HTML> diff --git a/FS-Test/share/output/graph/cust_bill_pkg.cgi/start_month=4:start_year=2015:end_month=3:end_year=2016:agentnum=1:cust_classnum=:refnum=1:class_mode=pkg:classnum=0:classnum=1:report_optionnum=0:class_agg_break=aggregate:use_setup=1:use_usage=0:use_discount=1 b/FS-Test/share/output/graph/cust_bill_pkg.cgi/start_month=4:start_year=2015:end_month=3:end_year=2016:agentnum=1:cust_classnum=:refnum=1:class_mode=pkg:classnum=0:classnum=1:report_optionnum=0:class_agg_break=aggregate:use_setup=1:use_usage=0:use_discount=1 index 0cd3f850c..e61ca51a1 100644 --- a/FS-Test/share/output/graph/cust_bill_pkg.cgi/start_month=4:start_year=2015:end_month=3:end_year=2016:agentnum=1:cust_classnum=:refnum=1:class_mode=pkg:classnum=0:classnum=1:report_optionnum=0:class_agg_break=aggregate:use_setup=1:use_usage=0:use_discount=1 +++ b/FS-Test/share/output/graph/cust_bill_pkg.cgi/start_month=4:start_year=2015:end_month=3:end_year=2016:agentnum=1:cust_classnum=:refnum=1:class_mode=pkg:classnum=0:classnum=1:report_optionnum=0:class_agg_break=aggregate:use_setup=1:use_usage=0:use_discount=1 @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/graph/cust_pkg.html/start_month=4:start_year=2015:end_month=3:end_year=2016 b/FS-Test/share/output/graph/cust_pkg.html/start_month=4:start_year=2015:end_month=3:end_year=2016 index 6d2242390..24ef4580a 100644 --- a/FS-Test/share/output/graph/cust_pkg.html/start_month=4:start_year=2015:end_month=3:end_year=2016 +++ b/FS-Test/share/output/graph/cust_pkg.html/start_month=4:start_year=2015:end_month=3:end_year=2016 @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/graph/money_time.cgi/start_month=4:start_year=2015:end_month=3:end_year=2016:agentnum=1:cust_classnum=:refnum=1 b/FS-Test/share/output/graph/money_time.cgi/start_month=4:start_year=2015:end_month=3:end_year=2016:agentnum=1:cust_classnum=:refnum=1 index 9ed8214dd..106bad477 100644 --- a/FS-Test/share/output/graph/money_time.cgi/start_month=4:start_year=2015:end_month=3:end_year=2016:agentnum=1:cust_classnum=:refnum=1 +++ b/FS-Test/share/output/graph/money_time.cgi/start_month=4:start_year=2015:end_month=3:end_year=2016:agentnum=1:cust_classnum=:refnum=1 @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/graph/money_time_daily.cgi/beginning=01%2F01%2F2016:ending=02%2F28%2F2016:agentnum=1 b/FS-Test/share/output/graph/money_time_daily.cgi/beginning=01%2F01%2F2016:ending=02%2F28%2F2016:agentnum=1 index bc1f09d27..9a0954667 100644 --- a/FS-Test/share/output/graph/money_time_daily.cgi/beginning=01%2F01%2F2016:ending=02%2F28%2F2016:agentnum=1 +++ b/FS-Test/share/output/graph/money_time_daily.cgi/beginning=01%2F01%2F2016:ending=02%2F28%2F2016:agentnum=1 @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/search/cust_bill.html/OPEN90_date b/FS-Test/share/output/search/cust_bill.html/keywords=OPEN90_date:order_by=invnum index bf1c2dd46..cb6d637f3 100644 --- a/FS-Test/share/output/search/cust_bill.html/OPEN90_date +++ b/FS-Test/share/output/search/cust_bill.html/keywords=OPEN90_date:order_by=invnum @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -973,7 +973,7 @@ function print_process () { var fieldName; for (var i = 0; i<document.print_form.elements.length; i++) { field = document.print_form.elements[i]; - if ( (field.name.indexOf('days') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('order_by') > -1) || (field.name.indexOf('open') > -1) || (field.name.indexOf('owed') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1018,9 +1018,6 @@ function print_myCallback( jobnum ) { <FORM NAME="print_form"> -<INPUT TYPE="hidden" NAME="days" VALUE="90"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> -<INPUT TYPE="hidden" NAME="open" VALUE="1"> </FORM> @@ -1131,7 +1128,7 @@ function email_process () { var fieldName; for (var i = 0; i<document.email_form.elements.length; i++) { field = document.email_form.elements[i]; - if ( (field.name.indexOf('days') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('order_by') > -1) || (field.name.indexOf('open') > -1) || (field.name.indexOf('owed') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1176,9 +1173,6 @@ function email_myCallback( jobnum ) { <FORM NAME="email_form"> -<INPUT TYPE="hidden" NAME="days" VALUE="90"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> -<INPUT TYPE="hidden" NAME="open" VALUE="1"> </FORM> @@ -1289,7 +1283,7 @@ function fax_process () { var fieldName; for (var i = 0; i<document.fax_form.elements.length; i++) { field = document.fax_form.elements[i]; - if ( (field.name.indexOf('days') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('order_by') > -1) || (field.name.indexOf('open') > -1) || (field.name.indexOf('owed') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1334,9 +1328,6 @@ function fax_myCallback( jobnum ) { <FORM NAME="fax_form"> -<INPUT TYPE="hidden" NAME="days" VALUE="90"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> -<INPUT TYPE="hidden" NAME="open" VALUE="1"> </FORM> @@ -1447,7 +1438,7 @@ function ftp_process () { var fieldName; for (var i = 0; i<document.ftp_form.elements.length; i++) { field = document.ftp_form.elements[i]; - if ( (field.name.indexOf('days') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('order_by') > -1) || (field.name.indexOf('open') > -1) || (field.name.indexOf('owed') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1492,9 +1483,6 @@ function ftp_myCallback( jobnum ) { <FORM NAME="ftp_form"> -<INPUT TYPE="hidden" NAME="days" VALUE="90"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> -<INPUT TYPE="hidden" NAME="open" VALUE="1"> </FORM> @@ -1605,7 +1593,7 @@ function spool_process () { var fieldName; for (var i = 0; i<document.spool_form.elements.length; i++) { field = document.spool_form.elements[i]; - if ( (field.name.indexOf('days') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('order_by') > -1) || (field.name.indexOf('open') > -1) || (field.name.indexOf('owed') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1650,9 +1638,6 @@ function spool_myCallback( jobnum ) { <FORM NAME="spool_form"> -<INPUT TYPE="hidden" NAME="days" VALUE="90"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> -<INPUT TYPE="hidden" NAME="open" VALUE="1"> </FORM><SCRIPT TYPE="text/javascript"> function confirm_print_process() { @@ -1697,10 +1682,10 @@ function confirm_spool_process() { <FORM> - 219 total invoices + 1584 total invoices - ( show <SELECT NAME="maxrecords" onChange="window.location = 'http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=' + this.options[this.selectedIndex].value;"> + ( show <SELECT NAME="maxrecords" onChange="window.location = 'http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=' + this.options[this.selectedIndex].value;"> <OPTION VALUE="100" SELECTED>100</OPTION> <OPTION VALUE="500" >500</OPTION> @@ -1712,11 +1697,11 @@ function confirm_spool_process() { <BR> - $20769.29 gross sales<BR> + $141620.74 gross sales<BR> − $0.00 discounted<BR> − $0.00 credited<BR> - = $20769.29 net sales<BR> - $20769.29 outstanding balance<BR> + = $141620.74 net sales<BR> + $48352.49 outstanding balance<BR> </FORM> </TD> @@ -1726,12 +1711,12 @@ function confirm_spool_process() { Download full results<BR> - as <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=invoices.xls">Excel spreadsheet</A><BR> + as <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=invoices.xls">Excel spreadsheet</A><BR> - as <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=csv">CSV file</A><BR> + as <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=csv">CSV file</A><BR> - as <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html-print">printable copy</A> + as <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html-print">printable copy</A> </TD> @@ -1744,12 +1729,45 @@ function confirm_spool_process() { <FONT SIZE="+2">1</FONT> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=100">2</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=100">2</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=200">3</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=200">3</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=100"><B><FONT SIZE="+1">Next</FONT></B></A> + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=300">4</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=400">5</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=500">6</A> + + ... + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=700">8</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=800">9</A> + + ... + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1000">11</A> + + ... + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1200">13</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1300">14</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1400">15</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1500">16</A> + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=100"><B><FONT SIZE="+1">Next</FONT></B></A> @@ -1772,7 +1790,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=COALESCE%28%20agent_invid%2C%20invnum%20%29">Invoice #</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=COALESCE%28%20agent_invid%2C%20invnum%20%29">Invoice #</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1781,7 +1799,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=gross">Gross Amount</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=gross">Gross Amount</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1790,7 +1808,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=discounted">Discount</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=discounted">Discount</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1799,7 +1817,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=credited">Credits</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=credited">Credits</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1808,7 +1826,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=net">Net Amount</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=net">Net Amount</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1817,7 +1835,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=owed">Balance</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=owed">Balance</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1826,7 +1844,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=_date">Date</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=_date">Date</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1899,31 +1917,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">4</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?3">3</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">$191.77</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?3">$194.68</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?3">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?3">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">$191.77</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?3">$194.68</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">$191.77</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?3">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">Aug 09 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?3">Aug 08 2015</A></TD> @@ -1931,7 +1949,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?119">Runolfsson, Roob and Hoppe (Bergstrom, Esteban)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?103">Roberts-Schinner (Flatley, Amelia)</A></TD> </TR> @@ -1940,31 +1958,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">10</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?2">2</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">$143.07</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?2">$177.91</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?2">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?2">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">$143.07</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?2">$177.91</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">$143.07</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?2">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">Aug 17 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?2">Aug 08 2015</A></TD> @@ -1972,7 +1990,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?74">Boyer, Lamont</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?18">Zemlak, Asia</A></TD> </TR> @@ -1981,31 +1999,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">12</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">4</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">$165.65</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">$191.77</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">$165.65</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">$191.77</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">$165.65</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">$191.77</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">Aug 18 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?4">Aug 09 2015</A></TD> @@ -2013,7 +2031,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?119">Runolfsson, Roob and Hoppe (Bergstrom, Esteban)</A></TD> </TR> @@ -2022,31 +2040,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">19</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?5">5</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">$158.71</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?5">$162.41</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?5">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?5">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">$158.71</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?5">$162.41</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">$158.71</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?5">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">Aug 22 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?5">Aug 12 2015</A></TD> @@ -2054,7 +2072,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?29">Lehner-Klein (Smitham, Pansy)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?46">Steuber, Ryley</A></TD> </TR> @@ -2063,31 +2081,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">20</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?6">6</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">$108.23</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?6">$158.55</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?6">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?6">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">$108.23</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?6">$158.55</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">$108.23</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?6">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">Aug 26 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?6">Aug 13 2015</A></TD> @@ -2095,7 +2113,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?38">Christiansen, Leone</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?138">Leuschke, Edd</A></TD> </TR> @@ -2104,31 +2122,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">23</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?7">7</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$105.97</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?7">$154.68</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?7">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?7">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$105.97</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?7">$154.68</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$105.97</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?7">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">Aug 31 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?7">Aug 14 2015</A></TD> @@ -2136,7 +2154,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?10">Grady, Aniya</A></TD> </TR> @@ -2145,31 +2163,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">35</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?8">8</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?8">$189.68</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?8">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?8">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?8">$189.68</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?8">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?8">Aug 14 2015</A></TD> @@ -2177,7 +2195,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?157">Weimann Inc (Cartwright, Judah)</A></TD> </TR> @@ -2186,31 +2204,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">33</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?9">9</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?9">$174.35</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?9">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?9">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?9">$174.35</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?9">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?9">Aug 15 2015</A></TD> @@ -2218,7 +2236,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?74">Boyer, Lamont</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?87">Kozey and Sons (Vandervort, Harmon)</A></TD> </TR> @@ -2227,31 +2245,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">39</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">10</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">$143.07</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">$143.07</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">$143.07</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?10">Aug 17 2015</A></TD> @@ -2259,7 +2277,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?92">Ruecker, Lucious</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?74">Boyer, Lamont</A></TD> </TR> @@ -2268,31 +2286,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">46</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?11">11</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?11">$143.07</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?11">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?11">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?11">$143.07</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?11">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?11">Aug 17 2015</A></TD> @@ -2300,7 +2318,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?114">Donnelly, Raleigh</A></TD> </TR> @@ -2309,31 +2327,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">26</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?13">13</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?13">$174.20</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?13">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?13">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?13">$174.20</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?13">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?13">Aug 18 2015</A></TD> @@ -2341,7 +2359,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?29">Lehner-Klein (Smitham, Pansy)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?97">Braun, Rath and Gutkowski (Wilderman, Reyes)</A></TD> </TR> @@ -2350,31 +2368,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">29</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">12</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">$165.65</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">$165.65</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">$165.65</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?12">Aug 18 2015</A></TD> @@ -2382,7 +2400,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?38">Christiansen, Leone</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> </TR> @@ -2391,31 +2409,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">43</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">16</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$162.74</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$162.74</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">Aug 19 2015</A></TD> @@ -2423,7 +2441,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?119">Runolfsson, Roob and Hoppe (Bergstrom, Esteban)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?91">Fay and Sons (Gerhold, Thora)</A></TD> </TR> @@ -2432,31 +2450,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">54</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">14</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$170.32</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$170.32</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">Sep 07 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">Aug 19 2015</A></TD> @@ -2464,7 +2482,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?92">Ruecker, Lucious</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?25">Kuhlman-Huels (Parisian, Cristopher)</A></TD> </TR> @@ -2473,31 +2491,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">55</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">15</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">$212.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$135.32</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">$212.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$135.32</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">$212.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">Sep 08 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">Aug 19 2015</A></TD> @@ -2505,7 +2523,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?65">O'Reilly-Mraz (Pagac, Kennedi)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?70">Brown, Danial</A></TD> </TR> @@ -2514,31 +2532,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">57</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?17">17</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?17">$159.84</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?17">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?17">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?17">$159.84</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?17">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">Sep 09 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?17">Aug 20 2015</A></TD> @@ -2546,7 +2564,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?119">Runolfsson, Roob and Hoppe (Bergstrom, Esteban)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?43">Leannon-Pfannerstill (O'Keefe, Bernie)</A></TD> </TR> @@ -2555,31 +2573,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">59</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?18">18</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">$182.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?18">$156.94</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?18">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?18">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">$182.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?18">$156.94</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">$182.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?18">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">Sep 12 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?18">Aug 21 2015</A></TD> @@ -2587,7 +2605,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?59">Simonis Inc (Runolfsson, Kareem)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?51">Medhurst Group (Medhurst, Rafaela)</A></TD> </TR> @@ -2596,31 +2614,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">60</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">19</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">$179.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">$158.71</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">$179.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">$158.71</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">$179.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">$158.71</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">Sep 13 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?19">Aug 22 2015</A></TD> @@ -2628,7 +2646,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?179">Conn-McLaughlin (O'Connell, Gayle)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?29">Lehner-Klein (Smitham, Pansy)</A></TD> </TR> @@ -2637,31 +2655,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">63</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">20</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">$188.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">$108.23</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">$188.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">$108.23</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">$188.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">$108.23</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">Sep 14 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?20">Aug 26 2015</A></TD> @@ -2669,7 +2687,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?149">O'Keefe Inc (Schamberger, Felix)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?38">Christiansen, Leone</A></TD> </TR> @@ -2678,31 +2696,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">65</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?21">21</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?21">$92.75</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?21">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?21">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?21">$92.75</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?21">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">Sep 18 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?21">Aug 30 2015</A></TD> @@ -2710,7 +2728,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?82">Kessler, Dana</A></TD> </TR> @@ -2719,31 +2737,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">69</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">22</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">$161.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$88.87</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">$161.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$88.87</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">$161.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">Sep 19 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">Aug 31 2015</A></TD> @@ -2751,7 +2769,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?155">Boyle-Schmeler (Maggio, Fay)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?58">Schultz, Colten</A></TD> </TR> @@ -2760,31 +2778,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">74</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">23</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">$129.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$105.97</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">$129.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$105.97</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">$129.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$105.97</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">Sep 20 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">Aug 31 2015</A></TD> @@ -2792,7 +2810,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?134">Stokes, Janelle</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> </TR> @@ -2801,31 +2819,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">73</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?25">25</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">$164.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?25">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?25">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?25">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">$164.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?25">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">$164.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?25">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">Sep 20 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?25">Sep 01 2015</A></TD> @@ -2833,7 +2851,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?101">Flatley, Yundt and Pacocha (Volkman, Tabitha)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?18">Zemlak, Asia</A></TD> </TR> @@ -2842,31 +2860,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">72</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">33</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">$164.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">$164.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">$164.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$120.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">Sep 20 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">Sep 01 2015</A></TD> @@ -2874,7 +2892,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?53">Balistreri-Schoen (Schultz, Jaylan)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?74">Boyer, Lamont</A></TD> </TR> @@ -2883,31 +2901,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">75</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">36</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$115.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$115.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$115.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">Sep 21 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">Sep 01 2015</A></TD> @@ -2915,7 +2933,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?32">Swaniawski, Adrienne</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?82">Kessler, Dana</A></TD> </TR> @@ -2924,31 +2942,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">79</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">45</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">Sep 22 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">Sep 01 2015</A></TD> @@ -2956,7 +2974,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?29">Lehner-Klein (Smitham, Pansy)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?157">Weimann Inc (Cartwright, Judah)</A></TD> </TR> @@ -2965,31 +2983,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">81</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">35</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">$113.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">$113.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">$113.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$90.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">Sep 23 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">Sep 01 2015</A></TD> @@ -2997,7 +3015,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?164">Bernhard, Kris</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> </TR> @@ -3006,31 +3024,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">83</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">24</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">$143.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">$143.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">$143.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">Sep 25 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">Sep 01 2015</A></TD> @@ -3038,7 +3056,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?95">Wolff Inc (Hessel, Brianne)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?10">Grady, Aniya</A></TD> </TR> @@ -3047,31 +3065,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">86</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">43</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$101.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$101.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$101.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$90.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">Sep 27 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">Sep 01 2015</A></TD> @@ -3079,7 +3097,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?98">Gleichner, Delmer</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?119">Runolfsson, Roob and Hoppe (Bergstrom, Esteban)</A></TD> </TR> @@ -3088,31 +3106,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">88</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">26</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$108.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$108.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$108.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$120.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">Sep 28 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">Sep 01 2015</A></TD> @@ -3120,7 +3138,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?8">Douglas, Willow</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?29">Lehner-Klein (Smitham, Pansy)</A></TD> </TR> @@ -3129,31 +3147,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">92</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">42</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">Sep 28 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">Sep 01 2015</A></TD> @@ -3161,7 +3179,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?114">Donnelly, Raleigh</A></TD> </TR> @@ -3170,31 +3188,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">94</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">29</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">$131.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">$131.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">$131.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$120.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">Sep 29 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">Sep 01 2015</A></TD> @@ -3202,7 +3220,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?47">Bernhard-Treutel (Shanahan, Kevin)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?38">Christiansen, Leone</A></TD> </TR> @@ -3211,31 +3229,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">96</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">27</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">$128.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">$128.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">$128.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">Sep 30 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">Sep 01 2015</A></TD> @@ -3243,7 +3261,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?11">Torp, Sawayn and Friesen (Pollich, Maritza)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?25">Kuhlman-Huels (Parisian, Cristopher)</A></TD> </TR> @@ -3252,31 +3270,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?122">122</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">38</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?122">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?122">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?122">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?122">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?122">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?122">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">Sep 01 2015</A></TD> @@ -3284,7 +3302,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?74">Boyer, Lamont</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?91">Fay and Sons (Gerhold, Thora)</A></TD> </TR> @@ -3293,31 +3311,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?104">104</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">32</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?104">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?104">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?104">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?104">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?104">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?104">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">Sep 01 2015</A></TD> @@ -3325,7 +3343,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?29">Lehner-Klein (Smitham, Pansy)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?58">Schultz, Colten</A></TD> </TR> @@ -3334,31 +3352,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?110">110</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">37</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?110">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?110">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?110">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?110">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?110">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?110">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">Sep 01 2015</A></TD> @@ -3366,7 +3384,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?47">Bernhard-Treutel (Shanahan, Kevin)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?87">Kozey and Sons (Vandervort, Harmon)</A></TD> </TR> @@ -3375,31 +3393,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">124</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">40</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">Sep 01 2015</A></TD> @@ -3407,7 +3425,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?97">Braun, Rath and Gutkowski (Wilderman, Reyes)</A></TD> </TR> @@ -3416,31 +3434,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?150">150</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">34</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?150">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?150">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?150">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?150">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?150">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?150">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">Sep 01 2015</A></TD> @@ -3448,7 +3466,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?164">Bernhard, Kris</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?70">Brown, Danial</A></TD> </TR> @@ -3457,31 +3475,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?100">100</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">46</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?100">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$30.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?100">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?100">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?100">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$30.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?100">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$30.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?100">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">Sep 01 2015</A></TD> @@ -3489,7 +3507,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?11">Torp, Sawayn and Friesen (Pollich, Maritza)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> </TR> @@ -3498,31 +3516,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?105">105</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">30</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?105">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?105">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?105">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?105">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?105">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?105">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">Sep 01 2015</A></TD> @@ -3530,7 +3548,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?32">Swaniawski, Adrienne</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?46">Steuber, Ryley</A></TD> </TR> @@ -3539,31 +3557,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?137">137</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?31">31</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?137">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?31">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?137">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?31">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?137">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?31">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?137">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?31">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?137">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?31">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?137">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?31">Sep 01 2015</A></TD> @@ -3571,7 +3589,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?119">Runolfsson, Roob and Hoppe (Bergstrom, Esteban)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?51">Medhurst Group (Medhurst, Rafaela)</A></TD> </TR> @@ -3580,31 +3598,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?117">117</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">39</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?117">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">$30.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?117">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?117">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?117">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">$30.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?117">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">$30.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?117">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?39">Sep 01 2015</A></TD> @@ -3612,7 +3630,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?65">O'Reilly-Mraz (Pagac, Kennedi)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?92">Ruecker, Lucious</A></TD> </TR> @@ -3621,31 +3639,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?143">143</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">44</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?143">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?143">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?143">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?143">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?143">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?143">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">Sep 01 2015</A></TD> @@ -3653,7 +3671,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?134">Stokes, Janelle</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?138">Leuschke, Edd</A></TD> </TR> @@ -3662,31 +3680,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?134">134</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">28</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?134">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?134">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?134">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?134">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?134">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?134">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">Sep 01 2015</A></TD> @@ -3694,7 +3712,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?101">Flatley, Yundt and Pacocha (Volkman, Tabitha)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?43">Leannon-Pfannerstill (O'Keefe, Bernie)</A></TD> </TR> @@ -3703,31 +3721,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?115">115</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">41</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?115">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?115">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?115">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?115">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?115">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?115">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">Sep 01 2015</A></TD> @@ -3735,7 +3753,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?59">Simonis Inc (Runolfsson, Kareem)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?103">Roberts-Schinner (Flatley, Amelia)</A></TD> </TR> @@ -3744,31 +3762,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?108">108</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?47">47</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?108">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?47">$236.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?108">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?47">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?108">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?47">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?108">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?47">$236.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?108">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?47">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?108">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?47">Sep 02 2015</A></TD> @@ -3776,7 +3794,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?38">Christiansen, Leone</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?69">Moore-Cummerata (DuBuque, Russ)</A></TD> </TR> @@ -3785,31 +3803,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?127">127</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?49">49</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?127">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?49">$212.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?127">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?49">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?127">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?49">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?127">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?49">$212.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?127">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?49">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?127">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?49">Sep 02 2015</A></TD> @@ -3817,7 +3835,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?92">Ruecker, Lucious</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?171">Mante LLC (Kessler, Enid)</A></TD> </TR> @@ -3826,31 +3844,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">151</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?48">48</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?48">$212.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?48">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?48">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?48">$212.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?48">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?48">Sep 02 2015</A></TD> @@ -3858,7 +3876,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?99">Luettgen-Jacobs (Hintz, Junior)</A></TD> </TR> @@ -3867,31 +3885,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?98">98</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?50">50</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?98">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?50">$209.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?98">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?50">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?98">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?50">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?98">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?50">$209.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?98">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?50">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?98">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?50">Sep 03 2015</A></TD> @@ -3899,7 +3917,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?8">Douglas, Willow</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?75">Hoeger-Brown (Shields, Serenity)</A></TD> </TR> @@ -3908,31 +3926,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">153</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?51">51</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?51">$228.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?51">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?51">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?51">$228.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?51">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?51">Sep 04 2015</A></TD> @@ -3940,7 +3958,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?179">Conn-McLaughlin (O'Connell, Gayle)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?109">Lind-Bahringer (Ratke, Roma)</A></TD> </TR> @@ -3949,31 +3967,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?114">114</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?53">53</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?114">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?53">$200.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?114">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?53">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?114">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?53">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?114">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?53">$200.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?114">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?53">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?114">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?53">Sep 06 2015</A></TD> @@ -3981,7 +3999,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?53">Balistreri-Schoen (Schultz, Jaylan)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?147">Pfeffer, Shanahan and Cruickshank (Kutch, Rosario)</A></TD> </TR> @@ -3990,31 +4008,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?131">131</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?52">52</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?131">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?52">$185.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?131">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?52">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?131">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?52">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?131">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?52">$185.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?131">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?52">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?131">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?52">Sep 06 2015</A></TD> @@ -4022,7 +4040,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?98">Gleichner, Delmer</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?94">McKenzie, Kareem</A></TD> </TR> @@ -4031,31 +4049,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?129">129</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">54</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?129">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?129">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?129">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?129">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?129">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">$60.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?129">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?54">Sep 07 2015</A></TD> @@ -4063,7 +4081,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?95">Wolff Inc (Hessel, Brianne)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?92">Ruecker, Lucious</A></TD> </TR> @@ -4072,31 +4090,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">147</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?56">56</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?56">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?56">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?56">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?56">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?56">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?56">Sep 08 2015</A></TD> @@ -4104,7 +4122,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?155">Boyle-Schmeler (Maggio, Fay)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?103">Roberts-Schinner (Flatley, Amelia)</A></TD> </TR> @@ -4113,31 +4131,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?146">146</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">55</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?146">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">$212.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?146">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?146">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?146">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">$212.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?146">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">$212.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?146">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?55">Sep 08 2015</A></TD> @@ -4145,7 +4163,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?149">O'Keefe Inc (Schamberger, Felix)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?65">O'Reilly-Mraz (Pagac, Kennedi)</A></TD> </TR> @@ -4154,31 +4172,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?161">161</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">57</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?161">$236.13</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?161">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?161">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?161">$236.13</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?161">$236.13</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">$60.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?161">Oct 02 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?57">Sep 09 2015</A></TD> @@ -4186,7 +4204,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?185">Christiansen LLC (Howe, Luis)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?119">Runolfsson, Roob and Hoppe (Bergstrom, Esteban)</A></TD> </TR> @@ -4195,31 +4213,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?165">165</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?58">58</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?165">$209.19</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?58">$188.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?165">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?58">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?165">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?58">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?165">$209.19</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?58">$188.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?165">$209.19</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?58">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?165">Oct 03 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?58">Sep 10 2015</A></TD> @@ -4227,7 +4245,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?131">Wolff and Sons (Heller, Dagmar)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?3">Flatley-Hagenes (Donnelly, Odessa)</A></TD> </TR> @@ -4236,31 +4254,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?167">167</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">59</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?167">$185.64</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">$182.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?167">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?167">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?167">$185.64</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">$182.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?167">$185.64</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">$182.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?167">Oct 06 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?59">Sep 12 2015</A></TD> @@ -4268,7 +4286,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?26">Romaguera, Tianna</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?59">Simonis Inc (Runolfsson, Kareem)</A></TD> </TR> @@ -4277,31 +4295,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?171">171</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">60</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?171">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">$179.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?171">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?171">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?171">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">$179.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?171">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">$179.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?171">Oct 07 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?60">Sep 13 2015</A></TD> @@ -4309,7 +4327,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?92">Ruecker, Lucious</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?179">Conn-McLaughlin (O'Connell, Gayle)</A></TD> </TR> @@ -4318,31 +4336,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?175">175</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?61">61</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?175">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?61">$153.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?175">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?61">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?175">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?61">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?175">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?61">$153.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?175">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?61">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?175">Oct 08 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?61">Sep 14 2015</A></TD> @@ -4350,7 +4368,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?65">O'Reilly-Mraz (Pagac, Kennedi)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?34">Kunde, Noemi</A></TD> </TR> @@ -4359,31 +4377,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?178">178</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">63</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?178">$128.23</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">$188.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?178">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?178">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?178">$128.23</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">$188.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?178">$128.23</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">$188.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?178">Oct 08 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?63">Sep 14 2015</A></TD> @@ -4391,7 +4409,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?128">Powlowski, Veda</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?149">O'Keefe Inc (Schamberger, Felix)</A></TD> </TR> @@ -4400,31 +4418,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?181">181</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?62">62</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?181">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?62">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?181">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?62">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?181">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?62">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?181">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?62">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?181">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?62">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?181">Oct 09 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?62">Sep 14 2015</A></TD> @@ -4432,7 +4450,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?119">Runolfsson, Roob and Hoppe (Bergstrom, Esteban)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?157">Weimann Inc (Cartwright, Judah)</A></TD> </TR> @@ -4441,31 +4459,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?180">180</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?64">64</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?180">$174.03</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?64">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?180">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?64">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?180">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?64">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?180">$174.03</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?64">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?180">$174.03</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?64">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?180">Oct 09 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?64">Sep 15 2015</A></TD> @@ -4473,7 +4491,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?2">Schowalter, Oswald</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?87">Kozey and Sons (Vandervort, Harmon)</A></TD> </TR> @@ -4482,31 +4500,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?184">184</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">65</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?184">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?184">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?184">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?184">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?184">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$60.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?184">Oct 12 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">Sep 18 2015</A></TD> @@ -4514,7 +4532,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?59">Simonis Inc (Runolfsson, Kareem)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> </TR> @@ -4523,31 +4541,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?188">188</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">66</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?188">$123.39</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?188">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?188">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?188">$123.39</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?188">$123.39</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?188">Oct 13 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">Sep 18 2015</A></TD> @@ -4555,7 +4573,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?80">Jakubowski, Jarrell</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?97">Braun, Rath and Gutkowski (Wilderman, Reyes)</A></TD> </TR> @@ -4564,31 +4582,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?189">189</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?70">70</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?189">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?70">$117.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?189">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?70">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?189">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?70">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?189">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?70">$117.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?189">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?70">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?189">Oct 13 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?70">Sep 19 2015</A></TD> @@ -4596,7 +4614,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?179">Conn-McLaughlin (O'Connell, Gayle)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?196">Turcotte, Janessa</A></TD> </TR> @@ -4605,31 +4623,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?191">191</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">69</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?191">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">$161.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?191">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?191">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?191">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">$161.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?191">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">$161.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?191">Oct 14 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?69">Sep 19 2015</A></TD> @@ -4637,7 +4655,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?149">O'Keefe Inc (Schamberger, Felix)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?155">Boyle-Schmeler (Maggio, Fay)</A></TD> </TR> @@ -4646,31 +4664,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?190">190</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?67">67</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?190">$154.68</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?67">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?190">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?67">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?190">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?67">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?190">$154.68</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?67">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?190">$154.68</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?67">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?190">Oct 14 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?67">Sep 19 2015</A></TD> @@ -4678,7 +4696,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?50">Marquardt, Abbey</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?25">Kuhlman-Huels (Parisian, Cristopher)</A></TD> </TR> @@ -4687,31 +4705,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?193">193</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?68">68</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?193">$154.68</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?68">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?193">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?68">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?193">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?68">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?193">$154.68</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?68">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?193">$154.68</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?68">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?193">Oct 14 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?68">Sep 19 2015</A></TD> @@ -4719,7 +4737,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?170">Wilderman, Annalise</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?91">Fay and Sons (Gerhold, Thora)</A></TD> </TR> @@ -4728,31 +4746,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?195">195</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?71">71</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?195">$171.45</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?71">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?195">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?71">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?195">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?71">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?195">$171.45</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?71">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?195">$171.45</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?71">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?195">Oct 16 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?71">Sep 20 2015</A></TD> @@ -4760,7 +4778,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?35">Bahringer LLC (Frami, Roslyn)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?43">Leannon-Pfannerstill (O'Keefe, Bernie)</A></TD> </TR> @@ -4769,31 +4787,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?198">198</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">74</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?198">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">$129.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?198">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?198">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?198">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">$129.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?198">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">$129.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?198">Oct 18 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?74">Sep 20 2015</A></TD> @@ -4801,7 +4819,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?134">Stokes, Janelle</A></TD> </TR> @@ -4810,31 +4828,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?200">200</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">72</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?200">$118.55</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">$164.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?200">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?200">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?200">$118.55</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">$164.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?200">$118.55</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">$164.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?200">Oct 18 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?72">Sep 20 2015</A></TD> @@ -4842,7 +4860,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?116">Konopelski, Barry</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?53">Balistreri-Schoen (Schultz, Jaylan)</A></TD> </TR> @@ -4851,31 +4869,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?206">206</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">73</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?206">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">$164.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?206">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?206">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?206">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">$164.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?206">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">$164.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?206">Oct 19 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?73">Sep 20 2015</A></TD> @@ -4883,7 +4901,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?155">Boyle-Schmeler (Maggio, Fay)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?101">Flatley, Yundt and Pacocha (Volkman, Tabitha)</A></TD> </TR> @@ -4892,31 +4910,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?204">204</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">76</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?204">$117.58</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?204">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?204">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?204">$117.58</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?204">$117.58</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?204">Oct 19 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">Sep 21 2015</A></TD> @@ -4924,7 +4942,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?20">Weber, Aliza</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?51">Medhurst Group (Medhurst, Rafaela)</A></TD> </TR> @@ -4933,31 +4951,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?210">210</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">75</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?210">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$115.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?210">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?210">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?210">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$115.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?210">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$115.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?210">Oct 20 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">Sep 21 2015</A></TD> @@ -4965,7 +4983,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?101">Flatley, Yundt and Pacocha (Volkman, Tabitha)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?32">Swaniawski, Adrienne</A></TD> </TR> @@ -4974,31 +4992,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?208">208</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">78</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?208">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$155.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?208">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?208">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?208">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$155.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?208">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?208">Oct 20 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">Sep 21 2015</A></TD> @@ -5006,7 +5024,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?53">Balistreri-Schoen (Schultz, Jaylan)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?159">McLaughlin-Luettgen (Berge, Houston)</A></TD> </TR> @@ -5015,31 +5033,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?212">212</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">77</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?212">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$115.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?212">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?212">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?212">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$115.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?212">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?212">Oct 21 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">Sep 21 2015</A></TD> @@ -5047,7 +5065,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?32">Swaniawski, Adrienne</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?52">Frami, Gayle</A></TD> </TR> @@ -5056,31 +5074,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?216">216</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">79</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?216">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?216">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?216">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?216">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?216">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">$60.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?216">Oct 22 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?79">Sep 22 2015</A></TD> @@ -5097,31 +5115,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?219">219</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?80">80</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?219">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?80">$114.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?219">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?80">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?219">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?80">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?219">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?80">$114.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?219">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?80">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?219">Oct 23 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?80">Sep 22 2015</A></TD> @@ -5129,7 +5147,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?164">Bernhard, Kris</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?112">Gleason, Ahmed</A></TD> </TR> @@ -5138,31 +5156,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?220">220</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">81</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?220">$148.23</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">$113.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?220">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?220">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?220">$148.23</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">$113.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?220">$148.23</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">$113.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?220">Oct 24 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?81">Sep 23 2015</A></TD> @@ -5170,7 +5188,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?23">DuBuque Inc (King, Thomas)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?164">Bernhard, Kris</A></TD> </TR> @@ -5179,31 +5197,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?223">223</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?82">82</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?223">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?82">$113.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?223">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?82">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?223">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?82">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?223">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?82">$113.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?223">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?82">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?223">Oct 25 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?82">Sep 24 2015</A></TD> @@ -5211,7 +5229,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?95">Wolff Inc (Hessel, Brianne)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?66">Abbott, Addison</A></TD> </TR> @@ -5220,31 +5238,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?228">228</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">83</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?228">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">$143.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?228">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?228">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?228">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">$143.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?228">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">$143.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?228">Oct 28 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?83">Sep 25 2015</A></TD> @@ -5252,7 +5270,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?8">Douglas, Willow</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?95">Wolff Inc (Hessel, Brianne)</A></TD> </TR> @@ -5261,31 +5279,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?227">227</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?85">85</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?227">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?85">$110.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?227">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?85">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?227">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?85">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?227">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?85">$110.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?227">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?85">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?227">Oct 28 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?85">Sep 26 2015</A></TD> @@ -5293,7 +5311,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?11">Torp, Sawayn and Friesen (Pollich, Maritza)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?172">Rowe, Amara</A></TD> </TR> @@ -5302,31 +5320,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?233">233</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?84">84</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?233">$135.48</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?84">$105.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?233">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?84">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?233">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?84">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?233">$135.48</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?84">$105.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?233">$135.48</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?84">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?233">Oct 28 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?84">Sep 26 2015</A></TD> @@ -5334,7 +5352,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?137">Kohler Group (Bechtelar, Leopoldo)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?130">Carter, Cathy</A></TD> </TR> @@ -5343,31 +5361,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?234">234</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">87</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?234">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$136.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?234">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?234">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?234">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$136.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?234">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?234">Oct 28 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">Sep 27 2015</A></TD> @@ -5375,7 +5393,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?189">Rodriguez-Ebert (Bergstrom, Cecilia)</A></TD> </TR> @@ -5384,31 +5402,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?230">230</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">86</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?230">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$101.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?230">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?230">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?230">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$101.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?230">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$101.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?230">Oct 28 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">Sep 27 2015</A></TD> @@ -5416,7 +5434,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?47">Bernhard-Treutel (Shanahan, Kevin)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?98">Gleichner, Delmer</A></TD> </TR> @@ -5425,31 +5443,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?235">235</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">92</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?235">$106.94</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?235">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?235">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?235">$106.94</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?235">$106.94</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">$60.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?235">Oct 30 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?92">Sep 28 2015</A></TD> @@ -5457,7 +5475,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?188">Prohaska, Ellis</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> </TR> @@ -5466,31 +5484,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?236">236</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">89</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?236">$105.97</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$97.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?236">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?236">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?236">$105.97</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$97.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?236">$105.97</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?236">Oct 31 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">Sep 28 2015</A></TD> @@ -5498,7 +5516,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?56">Morar, Braulio</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?30">Toy, Bethany</A></TD> </TR> @@ -5507,31 +5525,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?320">320</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">88</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?320">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$108.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?320">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?320">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?320">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$108.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?320">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$108.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?320">Nov 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">Sep 28 2015</A></TD> @@ -5539,7 +5557,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?164">Bernhard, Kris</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?8">Douglas, Willow</A></TD> </TR> @@ -5548,31 +5566,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?313">313</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?90">90</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?313">$215.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?90">$132.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?313">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?90">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?313">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?90">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?313">$215.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?90">$132.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?313">$215.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?90">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?313">Nov 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?90">Sep 28 2015</A></TD> @@ -5580,7 +5598,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?143">Mann, Wilderman and Stiedemann (Maggio, Remington)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?129">Quitzon Group (Davis, Jeffery)</A></TD> </TR> @@ -5589,31 +5607,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?304">304</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?91">91</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?304">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?91">$97.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?304">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?91">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?304">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?91">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?304">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?91">$97.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?304">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?91">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?304">Nov 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?91">Sep 28 2015</A></TD> @@ -5621,7 +5639,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?128">Powlowski, Veda</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?126">Kunze, Michale</A></TD> </TR> @@ -5630,31 +5648,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?238">238</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?95">95</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?238">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?95">$128.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?238">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?95">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?238">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?95">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?238">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?95">$128.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?238">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?95">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?238">Nov 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?95">Sep 29 2015</A></TD> @@ -5662,7 +5680,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?2">Schowalter, Oswald</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?121">Cole, Graham and Towne (Hickle, Javier)</A></TD> </TR> @@ -5671,31 +5689,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?268">268</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?93">93</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?268">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?93">$131.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?268">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?93">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?268">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?93">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?268">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?93">$131.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?268">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?93">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?268">Nov 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?93">Sep 29 2015</A></TD> @@ -5703,7 +5721,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?53">Balistreri-Schoen (Schultz, Jaylan)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?19">Toy-Gerlach (Zulauf, Sharon)</A></TD> </TR> @@ -5712,31 +5730,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?239">239</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">94</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?239">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">$131.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?239">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?239">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?239">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">$131.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?239">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">$131.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?239">Nov 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?94">Sep 29 2015</A></TD> @@ -5744,7 +5762,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?8">Douglas, Willow</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?47">Bernhard-Treutel (Shanahan, Kevin)</A></TD> </TR> @@ -5753,31 +5771,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?297">297</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">96</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?297">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">$128.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?297">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?297">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?297">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">$128.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?297">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">$128.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?297">Nov 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?96">Sep 30 2015</A></TD> @@ -5785,7 +5803,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?116">Konopelski, Barry</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?11">Torp, Sawayn and Friesen (Pollich, Maritza)</A></TD> </TR> @@ -5794,31 +5812,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?314">314</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">153</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?314">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?314">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?314">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?314">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?314">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$90.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?314">Nov 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">Oct 01 2015</A></TD> @@ -5826,7 +5844,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?149">O'Keefe Inc (Schamberger, Felix)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?179">Conn-McLaughlin (O'Connell, Gayle)</A></TD> </TR> @@ -5835,31 +5853,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?266">266</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">151</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?266">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$30.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?266">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?266">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?266">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$30.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?266">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$30.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?266">Nov 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">Oct 01 2015</A></TD> @@ -5867,7 +5885,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?50">Marquardt, Abbey</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> </TR> @@ -5876,31 +5894,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?330">330</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">124</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?330">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?330">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?330">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?330">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?330">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$90.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?330">Nov 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">Oct 01 2015</A></TD> @@ -5908,7 +5926,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?188">Prohaska, Ellis</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> </TR> @@ -5917,31 +5935,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?285">285</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">121</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?285">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?285">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?285">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?285">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?285">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?285">Nov 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">Oct 01 2015</A></TD> @@ -5949,7 +5967,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?95">Wolff Inc (Hessel, Brianne)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?69">Moore-Cummerata (DuBuque, Russ)</A></TD> </TR> @@ -5964,12 +5982,45 @@ function confirm_spool_process() { <FONT SIZE="+2">1</FONT> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=100">2</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=100">2</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=200">3</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=300">4</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=400">5</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=500">6</A> + + ... + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=700">8</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=800">9</A> + + ... + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1000">11</A> + + ... + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1200">13</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1300">14</A> + + + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1400">15</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=200">3</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1500">16</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date;_dummy=1;maxrecords=100;_type=html;offset=100"><B><FONT SIZE="+1">Next</FONT></B></A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=100"><B><FONT SIZE="+1">Next</FONT></B></A> diff --git a/FS-Test/share/output/search/cust_bill.html/date b/FS-Test/share/output/search/cust_bill.html/keywords=date:order_by=invnum index 5681b4224..0fbf9aa3e 100644 --- a/FS-Test/share/output/search/cust_bill.html/date +++ b/FS-Test/share/output/search/cust_bill.html/keywords=date:order_by=invnum @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -973,7 +973,7 @@ function print_process () { var fieldName; for (var i = 0; i<document.print_form.elements.length; i++) { field = document.print_form.elements[i]; - if ( (field.name.indexOf('days') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('order_by') > -1) || (field.name.indexOf('owed') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1018,8 +1018,6 @@ function print_myCallback( jobnum ) { <FORM NAME="print_form"> -<INPUT TYPE="hidden" NAME="days" VALUE=""> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> </FORM> @@ -1130,7 +1128,7 @@ function email_process () { var fieldName; for (var i = 0; i<document.email_form.elements.length; i++) { field = document.email_form.elements[i]; - if ( (field.name.indexOf('days') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('order_by') > -1) || (field.name.indexOf('owed') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1175,8 +1173,6 @@ function email_myCallback( jobnum ) { <FORM NAME="email_form"> -<INPUT TYPE="hidden" NAME="days" VALUE=""> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> </FORM> @@ -1287,7 +1283,7 @@ function fax_process () { var fieldName; for (var i = 0; i<document.fax_form.elements.length; i++) { field = document.fax_form.elements[i]; - if ( (field.name.indexOf('days') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('order_by') > -1) || (field.name.indexOf('owed') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1332,8 +1328,6 @@ function fax_myCallback( jobnum ) { <FORM NAME="fax_form"> -<INPUT TYPE="hidden" NAME="days" VALUE=""> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> </FORM> @@ -1444,7 +1438,7 @@ function ftp_process () { var fieldName; for (var i = 0; i<document.ftp_form.elements.length; i++) { field = document.ftp_form.elements[i]; - if ( (field.name.indexOf('days') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('order_by') > -1) || (field.name.indexOf('owed') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1489,8 +1483,6 @@ function ftp_myCallback( jobnum ) { <FORM NAME="ftp_form"> -<INPUT TYPE="hidden" NAME="days" VALUE=""> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> </FORM> @@ -1601,7 +1593,7 @@ function spool_process () { var fieldName; for (var i = 0; i<document.spool_form.elements.length; i++) { field = document.spool_form.elements[i]; - if ( (field.name.indexOf('days') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('order_by') > -1) || (field.name.indexOf('owed') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1646,8 +1638,6 @@ function spool_myCallback( jobnum ) { <FORM NAME="spool_form"> -<INPUT TYPE="hidden" NAME="days" VALUE=""> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> </FORM><SCRIPT TYPE="text/javascript"> function confirm_print_process() { @@ -1695,7 +1685,7 @@ function confirm_spool_process() { 1584 total invoices - ( show <SELECT NAME="maxrecords" onChange="window.location = 'http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=' + this.options[this.selectedIndex].value;"> + ( show <SELECT NAME="maxrecords" onChange="window.location = 'http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=' + this.options[this.selectedIndex].value;"> <OPTION VALUE="100" SELECTED>100</OPTION> <OPTION VALUE="500" >500</OPTION> @@ -1721,12 +1711,12 @@ function confirm_spool_process() { Download full results<BR> - as <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=invoices.xls">Excel spreadsheet</A><BR> + as <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=invoices.xls">Excel spreadsheet</A><BR> - as <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=csv">CSV file</A><BR> + as <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=csv">CSV file</A><BR> - as <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html-print">printable copy</A> + as <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html-print">printable copy</A> </TD> @@ -1739,45 +1729,45 @@ function confirm_spool_process() { <FONT SIZE="+2">1</FONT> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=100">2</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=100">2</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=200">3</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=200">3</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=300">4</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=300">4</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=400">5</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=400">5</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=500">6</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=500">6</A> ... - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=700">8</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=700">8</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=800">9</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=800">9</A> ... - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=1000">11</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1000">11</A> ... - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=1200">13</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1200">13</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=1300">14</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1300">14</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=1400">15</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1400">15</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=1500">16</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1500">16</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=100"><B><FONT SIZE="+1">Next</FONT></B></A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=100"><B><FONT SIZE="+1">Next</FONT></B></A> @@ -1800,7 +1790,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=COALESCE%28%20agent_invid%2C%20invnum%20%29">Invoice #</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=COALESCE%28%20agent_invid%2C%20invnum%20%29">Invoice #</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1809,7 +1799,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=gross">Gross Amount</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=gross">Gross Amount</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1818,7 +1808,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=discounted">Discount</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=discounted">Discount</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1827,7 +1817,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=credited">Credits</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=credited">Credits</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1836,7 +1826,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=net">Net Amount</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=net">Net Amount</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1845,7 +1835,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=owed">Balance</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=owed">Balance</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1854,7 +1844,7 @@ function confirm_spool_process() { > - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=_date">Date</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=_date">Date</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -2419,31 +2409,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">14</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">16</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$170.32</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$162.74</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$170.32</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$162.74</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">Aug 19 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">Aug 19 2015</A></TD> @@ -2451,7 +2441,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?25">Kuhlman-Huels (Parisian, Cristopher)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?91">Fay and Sons (Gerhold, Thora)</A></TD> </TR> @@ -2460,31 +2450,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">15</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">14</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$135.32</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$170.32</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$135.32</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$170.32</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">Aug 19 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?14">Aug 19 2015</A></TD> @@ -2492,7 +2482,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?70">Brown, Danial</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?25">Kuhlman-Huels (Parisian, Cristopher)</A></TD> </TR> @@ -2501,31 +2491,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">16</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">15</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$162.74</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$135.32</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$162.74</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$135.32</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?16">Aug 19 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?15">Aug 19 2015</A></TD> @@ -2533,7 +2523,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?91">Fay and Sons (Gerhold, Thora)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?70">Brown, Danial</A></TD> </TR> @@ -2747,31 +2737,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">23</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">22</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$105.97</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$88.87</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$105.97</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$88.87</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$105.97</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">Aug 31 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">Aug 31 2015</A></TD> @@ -2779,7 +2769,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?58">Schultz, Colten</A></TD> </TR> @@ -2788,31 +2778,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">22</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">23</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$88.87</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$105.97</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$88.87</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$105.97</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">$105.97</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?22">Aug 31 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?23">Aug 31 2015</A></TD> @@ -2820,7 +2810,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?58">Schultz, Colten</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> </TR> @@ -2870,31 +2860,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">45</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">33</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$120.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">Sep 01 2015</A></TD> @@ -2902,7 +2892,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?157">Weimann Inc (Cartwright, Judah)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?74">Boyer, Lamont</A></TD> </TR> @@ -2911,31 +2901,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">28</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">36</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">Sep 01 2015</A></TD> @@ -2943,7 +2933,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?43">Leannon-Pfannerstill (O'Keefe, Bernie)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?82">Kessler, Dana</A></TD> </TR> @@ -2952,31 +2942,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">27</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">45</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?45">Sep 01 2015</A></TD> @@ -2984,7 +2974,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?25">Kuhlman-Huels (Parisian, Cristopher)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?157">Weimann Inc (Cartwright, Judah)</A></TD> </TR> @@ -2993,31 +2983,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">43</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">35</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$90.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">Sep 01 2015</A></TD> @@ -3025,7 +3015,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?119">Runolfsson, Roob and Hoppe (Bergstrom, Esteban)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> </TR> @@ -3034,31 +3024,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">32</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">24</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">Sep 01 2015</A></TD> @@ -3066,7 +3056,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?58">Schultz, Colten</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?10">Grady, Aniya</A></TD> </TR> @@ -3075,31 +3065,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">26</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">43</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">$90.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?43">Sep 01 2015</A></TD> @@ -3107,7 +3097,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?29">Lehner-Klein (Smitham, Pansy)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?119">Runolfsson, Roob and Hoppe (Bergstrom, Esteban)</A></TD> </TR> @@ -3116,31 +3106,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">46</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">26</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$30.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">$120.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?26">Sep 01 2015</A></TD> @@ -3148,7 +3138,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?29">Lehner-Klein (Smitham, Pansy)</A></TD> </TR> @@ -3157,31 +3147,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">33</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">42</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?33">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">Sep 01 2015</A></TD> @@ -3189,7 +3179,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?74">Boyer, Lamont</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?114">Donnelly, Raleigh</A></TD> </TR> @@ -3198,31 +3188,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">35</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">29</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$120.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?35">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">Sep 01 2015</A></TD> @@ -3230,7 +3220,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?38">Christiansen, Leone</A></TD> </TR> @@ -3239,31 +3229,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">30</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">27</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?27">Sep 01 2015</A></TD> @@ -3271,7 +3261,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?46">Steuber, Ryley</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?25">Kuhlman-Huels (Parisian, Cristopher)</A></TD> </TR> @@ -3280,31 +3270,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">37</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">38</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">Sep 01 2015</A></TD> @@ -3312,7 +3302,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?87">Kozey and Sons (Vandervort, Harmon)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?91">Fay and Sons (Gerhold, Thora)</A></TD> </TR> @@ -3321,31 +3311,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">44</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">32</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?32">Sep 01 2015</A></TD> @@ -3353,7 +3343,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?138">Leuschke, Edd</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?58">Schultz, Colten</A></TD> </TR> @@ -3362,31 +3352,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">34</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">37</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?37">Sep 01 2015</A></TD> @@ -3394,7 +3384,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?70">Brown, Danial</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?87">Kozey and Sons (Vandervort, Harmon)</A></TD> </TR> @@ -3403,31 +3393,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">38</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">40</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?38">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">Sep 01 2015</A></TD> @@ -3435,7 +3425,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?91">Fay and Sons (Gerhold, Thora)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?97">Braun, Rath and Gutkowski (Wilderman, Reyes)</A></TD> </TR> @@ -3444,31 +3434,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">40</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">34</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?40">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?34">Sep 01 2015</A></TD> @@ -3476,7 +3466,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?97">Braun, Rath and Gutkowski (Wilderman, Reyes)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?70">Brown, Danial</A></TD> </TR> @@ -3485,31 +3475,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">41</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">46</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$30.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$30.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">$30.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?46">Sep 01 2015</A></TD> @@ -3517,7 +3507,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?103">Roberts-Schinner (Flatley, Amelia)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> </TR> @@ -3526,31 +3516,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">29</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">30</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?29">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?30">Sep 01 2015</A></TD> @@ -3558,7 +3548,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?38">Christiansen, Leone</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?46">Steuber, Ryley</A></TD> </TR> @@ -3649,31 +3639,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">36</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">44</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?36">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?44">Sep 01 2015</A></TD> @@ -3681,7 +3671,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?82">Kessler, Dana</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?138">Leuschke, Edd</A></TD> </TR> @@ -3690,31 +3680,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">24</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">28</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?24">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?28">Sep 01 2015</A></TD> @@ -3722,7 +3712,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?10">Grady, Aniya</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?43">Leannon-Pfannerstill (O'Keefe, Bernie)</A></TD> </TR> @@ -3731,31 +3721,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">42</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">41</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?42">Sep 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?41">Sep 01 2015</A></TD> @@ -3763,7 +3753,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?114">Donnelly, Raleigh</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?103">Roberts-Schinner (Flatley, Amelia)</A></TD> </TR> @@ -4510,31 +4500,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">66</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">65</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$60.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">Sep 18 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">Sep 18 2015</A></TD> @@ -4542,7 +4532,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?97">Braun, Rath and Gutkowski (Wilderman, Reyes)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> </TR> @@ -4551,31 +4541,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">65</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">66</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?65">Sep 18 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?66">Sep 18 2015</A></TD> @@ -4583,7 +4573,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?97">Braun, Rath and Gutkowski (Wilderman, Reyes)</A></TD> </TR> @@ -4920,31 +4910,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">75</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">76</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$115.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$115.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$60.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$115.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">Sep 21 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">Sep 21 2015</A></TD> @@ -4952,7 +4942,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?32">Swaniawski, Adrienne</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?51">Medhurst Group (Medhurst, Rafaela)</A></TD> </TR> @@ -4961,31 +4951,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">78</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">75</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$155.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$115.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$155.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$115.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">$115.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">Sep 21 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?75">Sep 21 2015</A></TD> @@ -4993,7 +4983,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?159">McLaughlin-Luettgen (Berge, Houston)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?32">Swaniawski, Adrienne</A></TD> </TR> @@ -5002,31 +4992,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">77</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">78</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$115.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$155.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$115.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$155.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">Sep 21 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?78">Sep 21 2015</A></TD> @@ -5034,7 +5024,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?52">Frami, Gayle</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?159">McLaughlin-Luettgen (Berge, Houston)</A></TD> </TR> @@ -5043,31 +5033,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">76</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">77</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$115.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$60.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$115.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?76">Sep 21 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?77">Sep 21 2015</A></TD> @@ -5075,7 +5065,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?51">Medhurst Group (Medhurst, Rafaela)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?52">Frami, Gayle</A></TD> </TR> @@ -5371,31 +5361,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">86</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">87</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$101.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$136.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$101.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$136.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$101.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">Sep 27 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">Sep 27 2015</A></TD> @@ -5403,7 +5393,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?98">Gleichner, Delmer</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?189">Rodriguez-Ebert (Bergstrom, Cecilia)</A></TD> </TR> @@ -5412,31 +5402,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">87</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">86</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$136.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$101.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$136.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$101.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">$101.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?87">Sep 27 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?86">Sep 27 2015</A></TD> @@ -5444,7 +5434,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?189">Rodriguez-Ebert (Bergstrom, Cecilia)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?98">Gleichner, Delmer</A></TD> </TR> @@ -5494,31 +5484,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">88</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">89</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$108.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$97.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$108.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$97.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$108.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">Sep 28 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">Sep 28 2015</A></TD> @@ -5526,7 +5516,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?8">Douglas, Willow</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?30">Toy, Bethany</A></TD> </TR> @@ -5535,31 +5525,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">89</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">88</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$97.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$108.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$97.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$108.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">$108.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?89">Sep 28 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?88">Sep 28 2015</A></TD> @@ -5567,7 +5557,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?30">Toy, Bethany</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?8">Douglas, Willow</A></TD> </TR> @@ -5822,31 +5812,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">121</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">153</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$120.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$90.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">Oct 01 2015</A></TD> @@ -5854,7 +5844,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?69">Moore-Cummerata (DuBuque, Russ)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?179">Conn-McLaughlin (O'Connell, Gayle)</A></TD> </TR> @@ -5863,31 +5853,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">124</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">151</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$30.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$30.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">$30.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?151">Oct 01 2015</A></TD> @@ -5895,7 +5885,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?176">Waters, Godfrey</A></TD> </TR> @@ -5904,31 +5894,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">147</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">124</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$90.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">$90.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?147">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?124">Oct 01 2015</A></TD> @@ -5936,7 +5926,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?155">Boyle-Schmeler (Maggio, Fay)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> </TR> @@ -5945,31 +5935,31 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">153</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">121</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$0.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$0.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$120.00</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">$90.00</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">$0.00</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?153">Oct 01 2015</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_bill.cgi?121">Oct 01 2015</A></TD> @@ -5977,7 +5967,7 @@ function confirm_spool_process() { - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?179">Conn-McLaughlin (O'Connell, Gayle)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?69">Moore-Cummerata (DuBuque, Russ)</A></TD> </TR> @@ -5992,45 +5982,45 @@ function confirm_spool_process() { <FONT SIZE="+2">1</FONT> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=100">2</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=100">2</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=200">3</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=200">3</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=300">4</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=300">4</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=400">5</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=400">5</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=500">6</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=500">6</A> ... - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=700">8</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=700">8</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=800">9</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=800">9</A> ... - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=1000">11</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1000">11</A> ... - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=1200">13</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1200">13</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=1300">14</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1300">14</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=1400">15</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1400">15</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=1500">16</A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=1500">16</A> - <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date;_dummy=1;maxrecords=100;_type=html;offset=100"><B><FONT SIZE="+1">Next</FONT></B></A> + <A HREF="http://localhost/freeside/search/cust_bill.html?keywords=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=100"><B><FONT SIZE="+1">Next</FONT></B></A> diff --git a/FS-Test/share/output/search/cust_bill.html/magic=_date:agentnum=1:beginning=:ending=10%2F01%2F2015:charged_lt=:charged_gt=200.00:owed_lt=:owed_gt=:open=1 b/FS-Test/share/output/search/cust_bill.html/magic=_date:agentnum=1:beginning=:ending=10%2F01%2F2015:charged_lt=:charged_gt=200.00:owed_lt=:owed_gt=:open=1 index 0b7e3f23f..b040cdc17 100644 --- a/FS-Test/share/output/search/cust_bill.html/magic=_date:agentnum=1:beginning=:ending=10%2F01%2F2015:charged_lt=:charged_gt=200.00:owed_lt=:owed_gt=:open=1 +++ b/FS-Test/share/output/search/cust_bill.html/magic=_date:agentnum=1:beginning=:ending=10%2F01%2F2015:charged_lt=:charged_gt=200.00:owed_lt=:owed_gt=:open=1 @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/search/cust_bill_pkg.cgi/agentnum=1:status=:cust_classnum=:beginning=01%2F01%2F2016:ending=01%2F31%2F2016 b/FS-Test/share/output/search/cust_bill_pkg.cgi/agentnum=1:status=:cust_classnum=:beginning=01%2F01%2F2016:ending=01%2F31%2F2016 index f5274253f..ecff0d1aa 100644 --- a/FS-Test/share/output/search/cust_bill_pkg.cgi/agentnum=1:status=:cust_classnum=:beginning=01%2F01%2F2016:ending=01%2F31%2F2016 +++ b/FS-Test/share/output/search/cust_bill_pkg.cgi/agentnum=1:status=:cust_classnum=:beginning=01%2F01%2F2016:ending=01%2F31%2F2016 @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -1002,7 +1002,7 @@ myMenu68.width = 256; > - Paid + <A HREF="http://localhost/freeside/search/cust_bill_pkg.cgi?agentnum=1;status=;cust_classnum=;beginning=01%2F01%2F2016;ending=01%2F31%2F2016;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=pay_amount">Paid</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1011,7 +1011,7 @@ myMenu68.width = 256; > - Credited + <A HREF="http://localhost/freeside/search/cust_bill_pkg.cgi?agentnum=1;status=;cust_classnum=;beginning=01%2F01%2F2016;ending=01%2F31%2F2016;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=credit_amount">Credited</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" diff --git a/FS-Test/share/output/search/cust_bill_pkg.cgi/nottax=1:agentnum=1:refnum=1:classnum=0:classnum=1:begin=1438412400:end=1441090800 b/FS-Test/share/output/search/cust_bill_pkg.cgi/nottax=1:agentnum=1:refnum=1:classnum=0:classnum=1:begin=1438412400:end=1441090800 index 17a7ecbbe..75e4a4bb7 100644 --- a/FS-Test/share/output/search/cust_bill_pkg.cgi/nottax=1:agentnum=1:refnum=1:classnum=0:classnum=1:begin=1438412400:end=1441090800 +++ b/FS-Test/share/output/search/cust_bill_pkg.cgi/nottax=1:agentnum=1:refnum=1:classnum=0:classnum=1:begin=1438412400:end=1441090800 @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -988,7 +988,7 @@ myMenu68.width = 256; > - Paid + <A HREF="http://localhost/freeside/search/cust_bill_pkg.cgi?nottax=1;agentnum=1;refnum=1;classnum=0;classnum=1;begin=1438412400;end=1441090800;_type=html;order_by=pay_amount">Paid</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -997,7 +997,7 @@ myMenu68.width = 256; > - Credited + <A HREF="http://localhost/freeside/search/cust_bill_pkg.cgi?nottax=1;agentnum=1;refnum=1;classnum=0;classnum=1;begin=1438412400;end=1441090800;_type=html;order_by=credit_amount">Credited</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" diff --git a/FS-Test/share/output/search/cust_bill_pkg.cgi/nottax=1:charges=RU:distribute=0:agentnum=1:refnum=1:use_override=0:classnum=0:classnum=1:begin=1438412400:end=1441090800 b/FS-Test/share/output/search/cust_bill_pkg.cgi/nottax=1:charges=RU:distribute=0:agentnum=1:refnum=1:use_override=0:classnum=0:classnum=1:begin=1438412400:end=1441090800 index 70d7c33ed..ced2a5b3f 100644 --- a/FS-Test/share/output/search/cust_bill_pkg.cgi/nottax=1:charges=RU:distribute=0:agentnum=1:refnum=1:use_override=0:classnum=0:classnum=1:begin=1438412400:end=1441090800 +++ b/FS-Test/share/output/search/cust_bill_pkg.cgi/nottax=1:charges=RU:distribute=0:agentnum=1:refnum=1:use_override=0:classnum=0:classnum=1:begin=1438412400:end=1441090800 @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -977,7 +977,7 @@ myMenu68.width = 256; > - Paid + <A HREF="http://localhost/freeside/search/cust_bill_pkg.cgi?nottax=1;charges=RU;distribute=0;agentnum=1;refnum=1;use_override=0;classnum=0;classnum=1;begin=1438412400;end=1441090800;_type=html;order_by=pay_amount">Paid</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -986,7 +986,7 @@ myMenu68.width = 256; > - Credited + <A HREF="http://localhost/freeside/search/cust_bill_pkg.cgi?nottax=1;charges=RU;distribute=0;agentnum=1;refnum=1;use_override=0;classnum=0;classnum=1;begin=1438412400;end=1441090800;_type=html;order_by=credit_amount">Credited</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" diff --git a/FS-Test/share/output/search/cust_bill_pkg.cgi/nottax=1:charges=S:distribute=0:agentnum=1:refnum=1:use_override=0:classnum=0:classnum=1:begin=1438412400:end=1441090800 b/FS-Test/share/output/search/cust_bill_pkg.cgi/nottax=1:charges=S:distribute=0:agentnum=1:refnum=1:use_override=0:classnum=0:classnum=1:begin=1438412400:end=1441090800 index 250d050cf..1cd761673 100644 --- a/FS-Test/share/output/search/cust_bill_pkg.cgi/nottax=1:charges=S:distribute=0:agentnum=1:refnum=1:use_override=0:classnum=0:classnum=1:begin=1438412400:end=1441090800 +++ b/FS-Test/share/output/search/cust_bill_pkg.cgi/nottax=1:charges=S:distribute=0:agentnum=1:refnum=1:use_override=0:classnum=0:classnum=1:begin=1438412400:end=1441090800 @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -977,7 +977,7 @@ myMenu68.width = 256; > - Paid + <A HREF="http://localhost/freeside/search/cust_bill_pkg.cgi?nottax=1;charges=S;distribute=0;agentnum=1;refnum=1;use_override=0;classnum=0;classnum=1;begin=1438412400;end=1441090800;_type=html;order_by=pay_amount">Paid</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -986,7 +986,7 @@ myMenu68.width = 256; > - Credited + <A HREF="http://localhost/freeside/search/cust_bill_pkg.cgi?nottax=1;charges=S;distribute=0;agentnum=1;refnum=1;use_override=0;classnum=0;classnum=1;begin=1438412400;end=1441090800;_type=html;order_by=credit_amount">Credited</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" diff --git a/FS-Test/share/output/search/cust_main.cgi/browse=last b/FS-Test/share/output/search/cust_main.cgi/browse=last index ecac7e268..9a7af33ff 100644 --- a/FS-Test/share/output/search/cust_main.cgi/browse=last +++ b/FS-Test/share/output/search/cust_main.cgi/browse=last @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/search/cust_pay.html/magic=_date:unapplied=0:beginning=01%2F01%2F2016:agentnum=1:order_by=paynum b/FS-Test/share/output/search/cust_pay.html/magic=_date:unapplied=0:beginning=01%2F01%2F2016:agentnum=1:order_by=paynum index 44c3de1f0..10fa46a2d 100644 --- a/FS-Test/share/output/search/cust_pay.html/magic=_date:unapplied=0:beginning=01%2F01%2F2016:agentnum=1:order_by=paynum +++ b/FS-Test/share/output/search/cust_pay.html/magic=_date:unapplied=0:beginning=01%2F01%2F2016:agentnum=1:order_by=paynum @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/search/cust_pkg.cgi/keywords=pkgnum:order_by=pkgnum b/FS-Test/share/output/search/cust_pkg.cgi/keywords=pkgnum:order_by=pkgnum index 160b6e72e..7aeefea33 100644 --- a/FS-Test/share/output/search/cust_pkg.cgi/keywords=pkgnum:order_by=pkgnum +++ b/FS-Test/share/output/search/cust_pkg.cgi/keywords=pkgnum:order_by=pkgnum @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -1274,7 +1274,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?1">example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?1">example.com</A></td></tr></table></TD> </TR> @@ -1375,7 +1375,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?2">berta@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?2">berta@example.com</A></td></tr></table></TD> </TR> @@ -1476,7 +1476,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?3">IP:10.212.50.247, MAC:0000911C4815</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?3">IP:10.212.50.247, MAC:0000911C4815</A></td></tr></table></TD> </TR> @@ -1577,7 +1577,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?4">waters-turner.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?4">waters-turner.com</A></td></tr></table></TD> </TR> @@ -1678,7 +1678,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?5">IP:10.127.31.117, MAC:0000A3E013D7</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?5">IP:10.127.31.117, MAC:0000A3E013D7</A></td></tr></table></TD> </TR> @@ -1779,7 +1779,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?6">ziemann-dietrich.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?6">ziemann-dietrich.com</A></td></tr></table></TD> </TR> @@ -1880,7 +1880,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?7">19671718037</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?7">19671718037</A></td></tr></table></TD> </TR> @@ -1981,7 +1981,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?8">watsica-llc.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?8">watsica-llc.com</A></td></tr></table></TD> </TR> @@ -2082,7 +2082,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?9">337448915280026</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?9">337448915280026</A></td></tr></table></TD> </TR> @@ -2183,7 +2183,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?10">sherwood@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?10">sherwood@example.com</A></td></tr></table></TD> </TR> @@ -2284,7 +2284,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?11">7941182146</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?11">7941182146</A></td></tr></table></TD> </TR> @@ -2385,7 +2385,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?12">rashad@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?12">rashad@example.com</A></td></tr></table></TD> </TR> @@ -2486,7 +2486,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?13">IP:10.4.160.230, MAC:0000D12765F4</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?13">IP:10.4.160.230, MAC:0000D12765F4</A></td></tr></table></TD> </TR> @@ -2587,7 +2587,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?14">doris@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?14">doris@example.com</A></td></tr></table></TD> </TR> @@ -2688,7 +2688,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?15">IP:10.203.139.97, MAC:0000FA2C8FB1</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?15">IP:10.203.139.97, MAC:0000FA2C8FB1</A></td></tr></table></TD> </TR> @@ -2789,7 +2789,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?16">hane-llc.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?16">hane-llc.com</A></td></tr></table></TD> </TR> @@ -2890,7 +2890,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?17">IP:10.75.143.4, MAC:0000EE773AA3</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?17">IP:10.75.143.4, MAC:0000EE773AA3</A></td></tr></table></TD> </TR> @@ -2991,7 +2991,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?18">will-schmitt-and-buckridge.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?18">will-schmitt-and-buckridge.com</A></td></tr></table></TD> </TR> @@ -3092,7 +3092,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?19">507789172836615</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?19">507789172836615</A></td></tr></table></TD> </TR> @@ -3193,7 +3193,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?20">hagenes-mclaughlin-and-fadel.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?20">hagenes-mclaughlin-and-fadel.com</A></td></tr></table></TD> </TR> @@ -3294,7 +3294,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?21">402545251883238</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?21">402545251883238</A></td></tr></table></TD> </TR> @@ -3395,7 +3395,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?22">hilario@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?22">hilario@example.com</A></td></tr></table></TD> </TR> @@ -3496,7 +3496,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?23">5204979036</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?23">5204979036</A></td></tr></table></TD> </TR> @@ -3597,7 +3597,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?24">lennie@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?24">lennie@example.com</A></td></tr></table></TD> </TR> @@ -3698,7 +3698,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?25">IP:10.2.159.93, MAC:0000BEEA3257</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?25">IP:10.2.159.93, MAC:0000BEEA3257</A></td></tr></table></TD> </TR> @@ -3799,7 +3799,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?26">travis@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?26">travis@example.com</A></td></tr></table></TD> </TR> @@ -3900,7 +3900,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?27">IP:10.147.177.86, MAC:0000E5156362</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?27">IP:10.147.177.86, MAC:0000E5156362</A></td></tr></table></TD> </TR> @@ -4001,7 +4001,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?28">watsica-sauer-and-braun.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?28">watsica-sauer-and-braun.com</A></td></tr></table></TD> </TR> @@ -4102,7 +4102,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?29">IP:10.61.84.169, MAC:000069394AF2</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?29">IP:10.61.84.169, MAC:000069394AF2</A></td></tr></table></TD> </TR> @@ -4203,7 +4203,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?30">greenholt-parisian.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?30">greenholt-parisian.com</A></td></tr></table></TD> </TR> @@ -4304,7 +4304,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?31">2103459718</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?31">2103459718</A></td></tr></table></TD> </TR> @@ -4405,7 +4405,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?32">corkery-hackett-and-franecki.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?32">corkery-hackett-and-franecki.com</A></td></tr></table></TD> </TR> @@ -4506,7 +4506,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?33">14745441565</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?33">14745441565</A></td></tr></table></TD> </TR> @@ -4607,7 +4607,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?34">william@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?34">william@example.com</A></td></tr></table></TD> </TR> @@ -4708,7 +4708,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?35">4609716945803</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?35">4609716945803</A></td></tr></table></TD> </TR> @@ -4809,7 +4809,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?36">richmond@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?36">richmond@example.com</A></td></tr></table></TD> </TR> @@ -4910,7 +4910,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?37">IP:10.229.63.194, MAC:00004D3E8513</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?37">IP:10.229.63.194, MAC:00004D3E8513</A></td></tr></table></TD> </TR> @@ -5011,7 +5011,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?38">samir@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?38">samir@example.com</A></td></tr></table></TD> </TR> @@ -5112,7 +5112,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?39">IP:10.188.48.84, MAC:000036BEDE13</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?39">IP:10.188.48.84, MAC:000036BEDE13</A></td></tr></table></TD> </TR> @@ -5213,7 +5213,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?40">ullrich-kilback.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?40">ullrich-kilback.com</A></td></tr></table></TD> </TR> @@ -5314,7 +5314,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?41">IP:10.225.235.123, MAC:00003C2A1764</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?41">IP:10.225.235.123, MAC:00003C2A1764</A></td></tr></table></TD> </TR> @@ -5415,7 +5415,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?42">crooks-collins.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?42">crooks-collins.com</A></td></tr></table></TD> </TR> @@ -5516,7 +5516,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?43">7315522562</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?43">7315522562</A></td></tr></table></TD> </TR> @@ -5617,7 +5617,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?44">kuhn-llc.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?44">kuhn-llc.com</A></td></tr></table></TD> </TR> @@ -5718,7 +5718,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?45">5473351513</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?45">5473351513</A></td></tr></table></TD> </TR> @@ -5819,7 +5819,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?46">walton@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?46">walton@example.com</A></td></tr></table></TD> </TR> @@ -5920,7 +5920,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?47">580124349433539</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?47">580124349433539</A></td></tr></table></TD> </TR> @@ -6021,7 +6021,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?48">nigel@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?48">nigel@example.com</A></td></tr></table></TD> </TR> @@ -6122,7 +6122,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?49">IP:10.189.193.93, MAC:000043D6F9E3</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?49">IP:10.189.193.93, MAC:000043D6F9E3</A></td></tr></table></TD> </TR> @@ -6223,7 +6223,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?50">sammy@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?50">sammy@example.com</A></td></tr></table></TD> </TR> @@ -6324,7 +6324,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?51">IP:10.44.211.87, MAC:00008BCF4552</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?51">IP:10.44.211.87, MAC:00008BCF4552</A></td></tr></table></TD> </TR> @@ -6425,7 +6425,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?52">hansen-kilback.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?52">hansen-kilback.com</A></td></tr></table></TD> </TR> @@ -6526,7 +6526,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?53">IP:10.116.203.5, MAC:00005AFAF158</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?53">IP:10.116.203.5, MAC:00005AFAF158</A></td></tr></table></TD> </TR> @@ -6627,7 +6627,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?54">klocko-inc.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?54">klocko-inc.com</A></td></tr></table></TD> </TR> @@ -6728,7 +6728,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?55">47925781188566</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?55">47925781188566</A></td></tr></table></TD> </TR> @@ -6829,7 +6829,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?56">ward-murphy-and-wisozk.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?56">ward-murphy-and-wisozk.com</A></td></tr></table></TD> </TR> @@ -6930,7 +6930,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?57">215984572910627</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?57">215984572910627</A></td></tr></table></TD> </TR> @@ -7031,7 +7031,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?58">linwood@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?58">linwood@example.com</A></td></tr></table></TD> </TR> @@ -7132,7 +7132,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?59">5055483796977</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?59">5055483796977</A></td></tr></table></TD> </TR> @@ -7233,7 +7233,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?60">esperanza@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?60">esperanza@example.com</A></td></tr></table></TD> </TR> @@ -7334,7 +7334,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?61">IP:10.178.209.2, MAC:00009245E1CE</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?61">IP:10.178.209.2, MAC:00009245E1CE</A></td></tr></table></TD> </TR> @@ -7435,7 +7435,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?62">branson@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?62">branson@example.com</A></td></tr></table></TD> </TR> @@ -7536,7 +7536,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?63">IP:10.86.8.116, MAC:00009D2D385F</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?63">IP:10.86.8.116, MAC:00009D2D385F</A></td></tr></table></TD> </TR> @@ -7637,7 +7637,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?64">okeefe-stracke.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?64">okeefe-stracke.com</A></td></tr></table></TD> </TR> @@ -7738,7 +7738,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?65">IP:10.166.5.138, MAC:000020A5C9AB</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?65">IP:10.166.5.138, MAC:000020A5C9AB</A></td></tr></table></TD> </TR> @@ -7839,7 +7839,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?66">murazik-padberg-and-dibbert.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?66">murazik-padberg-and-dibbert.com</A></td></tr></table></TD> </TR> @@ -7940,7 +7940,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?67">510207687452209</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?67">510207687452209</A></td></tr></table></TD> </TR> @@ -8041,7 +8041,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?68">rodriguez-llc.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?68">rodriguez-llc.com</A></td></tr></table></TD> </TR> @@ -8142,7 +8142,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?69">19732087174151</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?69">19732087174151</A></td></tr></table></TD> </TR> @@ -8243,7 +8243,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?70">victor@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?70">victor@example.com</A></td></tr></table></TD> </TR> @@ -8344,7 +8344,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?71">99158298078002</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?71">99158298078002</A></td></tr></table></TD> </TR> @@ -8445,7 +8445,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?72">ryleigh@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?72">ryleigh@example.com</A></td></tr></table></TD> </TR> @@ -8546,7 +8546,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?73">IP:10.223.20.110, MAC:0000B618A255</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?73">IP:10.223.20.110, MAC:0000B618A255</A></td></tr></table></TD> </TR> @@ -8647,7 +8647,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?74">citlalli@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?74">citlalli@example.com</A></td></tr></table></TD> </TR> @@ -8748,7 +8748,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?75">IP:10.181.162.31, MAC:0000A7F64E79</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?75">IP:10.181.162.31, MAC:0000A7F64E79</A></td></tr></table></TD> </TR> @@ -8849,7 +8849,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?76">gorczany-weimann.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?76">gorczany-weimann.com</A></td></tr></table></TD> </TR> @@ -8950,7 +8950,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?77">IP:10.30.204.50, MAC:000097EB747A</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?77">IP:10.30.204.50, MAC:000097EB747A</A></td></tr></table></TD> </TR> @@ -9051,7 +9051,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?78">ward-buckridge.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?78">ward-buckridge.com</A></td></tr></table></TD> </TR> @@ -9152,7 +9152,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?79">8935173249</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?79">8935173249</A></td></tr></table></TD> </TR> @@ -9253,7 +9253,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?80">treutel-llc.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?80">treutel-llc.com</A></td></tr></table></TD> </TR> @@ -9354,7 +9354,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?81">152553597965486</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?81">152553597965486</A></td></tr></table></TD> </TR> @@ -9455,7 +9455,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?82">lenora@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?82">lenora@example.com</A></td></tr></table></TD> </TR> @@ -9556,7 +9556,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?83">114180154577357</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?83">114180154577357</A></td></tr></table></TD> </TR> @@ -9657,7 +9657,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?84">nyasia@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?84">nyasia@example.com</A></td></tr></table></TD> </TR> @@ -9758,7 +9758,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?85">IP:10.171.182.118, MAC:00003EE1A6D7</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?85">IP:10.171.182.118, MAC:00003EE1A6D7</A></td></tr></table></TD> </TR> @@ -9859,7 +9859,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?86">alden@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?86">alden@example.com</A></td></tr></table></TD> </TR> @@ -9960,7 +9960,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?87">IP:10.79.94.0, MAC:00008A11465E</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?87">IP:10.79.94.0, MAC:00008A11465E</A></td></tr></table></TD> </TR> @@ -10061,7 +10061,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?88">baumbach-llc.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?88">baumbach-llc.com</A></td></tr></table></TD> </TR> @@ -10162,7 +10162,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?89">IP:10.74.128.210, MAC:00009E471138</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?89">IP:10.74.128.210, MAC:00009E471138</A></td></tr></table></TD> </TR> @@ -10263,7 +10263,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?90">kessler-larson-and-bauch.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?90">kessler-larson-and-bauch.com</A></td></tr></table></TD> </TR> @@ -10364,7 +10364,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?91">1535633738761521</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?91">1535633738761521</A></td></tr></table></TD> </TR> @@ -10465,7 +10465,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?92">moen-kovacek.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?92">moen-kovacek.com</A></td></tr></table></TD> </TR> @@ -10566,7 +10566,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?93">7091741436337</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?93">7091741436337</A></td></tr></table></TD> </TR> @@ -10667,7 +10667,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?94">sally@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?94">sally@example.com</A></td></tr></table></TD> </TR> @@ -10768,7 +10768,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?95">1076194311</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?95">1076194311</A></td></tr></table></TD> </TR> @@ -10869,7 +10869,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?96">drew@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?96">drew@example.com</A></td></tr></table></TD> </TR> @@ -10970,7 +10970,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?97">IP:10.72.141.97, MAC:000086A32C19</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?97">IP:10.72.141.97, MAC:000086A32C19</A></td></tr></table></TD> </TR> @@ -11071,7 +11071,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?98">nils@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?98">nils@example.com</A></td></tr></table></TD> </TR> @@ -11172,7 +11172,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?99">IP:10.229.201.34, MAC:0000494CF06C</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?99">IP:10.229.201.34, MAC:0000494CF06C</A></td></tr></table></TD> </TR> @@ -11273,7 +11273,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?100">marvin-and-sons.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?100">marvin-and-sons.com</A></td></tr></table></TD> </TR> diff --git a/FS-Test/share/output/search/cust_pkg.cgi/magic=bill:classnum=0:setup_ending=10%2F31%2F2015:pkgpart=5:pkgpart=2:order_by=pkgnum b/FS-Test/share/output/search/cust_pkg.cgi/magic=bill:classnum=0:setup_ending=10%2F31%2F2015:pkgpart=5:pkgpart=2:order_by=pkgnum index fc43d4200..8a748b993 100644 --- a/FS-Test/share/output/search/cust_pkg.cgi/magic=bill:classnum=0:setup_ending=10%2F31%2F2015:pkgpart=5:pkgpart=2:order_by=pkgnum +++ b/FS-Test/share/output/search/cust_pkg.cgi/magic=bill:classnum=0:setup_ending=10%2F31%2F2015:pkgpart=5:pkgpart=2:order_by=pkgnum @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -866,7 +866,7 @@ myMenu68.width = 256; ->Change these packages</A><BR><A HREF="http://localhost/freeside/misc/email-customers.html?table=cust_pkg&agent_virt_agentnum=&classnum=0&query=0&magic=bill&setup=0&setup=1446361199&pkgpart=5&pkgpart=2">Email a notice to these customers</A> +>Change these packages</A><BR><A HREF="http://localhost/freeside/misc/email-customers.html?table=cust_pkg&agent_virt_agentnum=&classnum=0&magic=bill&pkgpart=5&pkgpart=2&query=0&setup=0&setup=1446361199">Email a notice to these customers</A> <BR><BR> @@ -1259,7 +1259,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?2">berta@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?2">berta@example.com</A></td></tr></table></TD> </TR> @@ -1360,7 +1360,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?7">19671718037</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?7">19671718037</A></td></tr></table></TD> </TR> @@ -1461,7 +1461,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?21">402545251883238</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?21">402545251883238</A></td></tr></table></TD> </TR> @@ -1562,7 +1562,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?22">hilario@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?22">hilario@example.com</A></td></tr></table></TD> </TR> @@ -1663,7 +1663,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?23">5204979036</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?23">5204979036</A></td></tr></table></TD> </TR> @@ -1764,7 +1764,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?24">lennie@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?24">lennie@example.com</A></td></tr></table></TD> </TR> @@ -1865,7 +1865,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?26">travis@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?26">travis@example.com</A></td></tr></table></TD> </TR> @@ -1966,7 +1966,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?31">2103459718</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?31">2103459718</A></td></tr></table></TD> </TR> @@ -2067,7 +2067,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?35">4609716945803</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?35">4609716945803</A></td></tr></table></TD> </TR> @@ -2168,7 +2168,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?36">richmond@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?36">richmond@example.com</A></td></tr></table></TD> </TR> @@ -2269,7 +2269,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?43">7315522562</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?43">7315522562</A></td></tr></table></TD> </TR> @@ -2370,7 +2370,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?50">sammy@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?50">sammy@example.com</A></td></tr></table></TD> </TR> @@ -2471,7 +2471,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?55">47925781188566</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?55">47925781188566</A></td></tr></table></TD> </TR> @@ -2572,7 +2572,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?57">215984572910627</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?57">215984572910627</A></td></tr></table></TD> </TR> @@ -2673,7 +2673,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?58">linwood@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?58">linwood@example.com</A></td></tr></table></TD> </TR> @@ -2774,7 +2774,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?67">510207687452209</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?67">510207687452209</A></td></tr></table></TD> </TR> @@ -2875,7 +2875,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?71">99158298078002</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?71">99158298078002</A></td></tr></table></TD> </TR> @@ -2976,7 +2976,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?72">ryleigh@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?72">ryleigh@example.com</A></td></tr></table></TD> </TR> @@ -3077,7 +3077,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?74">citlalli@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?74">citlalli@example.com</A></td></tr></table></TD> </TR> @@ -3178,7 +3178,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?81">152553597965486</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?81">152553597965486</A></td></tr></table></TD> </TR> @@ -3279,7 +3279,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?82">lenora@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?82">lenora@example.com</A></td></tr></table></TD> </TR> @@ -3380,7 +3380,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?83">114180154577357</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?83">114180154577357</A></td></tr></table></TD> </TR> @@ -3481,7 +3481,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?84">nyasia@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?84">nyasia@example.com</A></td></tr></table></TD> </TR> @@ -3582,7 +3582,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?86">alden@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?86">alden@example.com</A></td></tr></table></TD> </TR> @@ -3683,7 +3683,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?93">7091741436337</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?93">7091741436337</A></td></tr></table></TD> </TR> @@ -3784,7 +3784,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?94">sally@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?94">sally@example.com</A></td></tr></table></TD> </TR> @@ -3885,7 +3885,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?98">nils@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?98">nils@example.com</A></td></tr></table></TD> </TR> @@ -3986,7 +3986,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?103">19242934458</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?103">19242934458</A></td></tr></table></TD> </TR> @@ -4087,7 +4087,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?107">6941312477183</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?107">6941312477183</A></td></tr></table></TD> </TR> @@ -4188,7 +4188,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?108">kolby@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?108">kolby@example.com</A></td></tr></table></TD> </TR> @@ -4289,7 +4289,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?110">donato@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?110">donato@example.com</A></td></tr></table></TD> </TR> @@ -4390,7 +4390,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?117">158607899401245</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?117">158607899401245</A></td></tr></table></TD> </TR> @@ -4491,7 +4491,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?118">hardy@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?118">hardy@example.com</A></td></tr></table></TD> </TR> @@ -4592,7 +4592,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?127">5260896063</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?127">5260896063</A></td></tr></table></TD> </TR> @@ -4693,7 +4693,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?134">hilbert@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?134">hilbert@example.com</A></td></tr></table></TD> </TR> @@ -4794,7 +4794,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?139">71877083088273</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?139">71877083088273</A></td></tr></table></TD> </TR> @@ -4895,7 +4895,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?143">95994707748468</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?143">95994707748468</A></td></tr></table></TD> </TR> @@ -4996,7 +4996,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?144">ebony@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?144">ebony@example.com</A></td></tr></table></TD> </TR> @@ -5097,7 +5097,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?146">edd@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?146">edd@example.com</A></td></tr></table></TD> </TR> @@ -5198,7 +5198,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?151">7511349049</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?151">7511349049</A></td></tr></table></TD> </TR> @@ -5299,7 +5299,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?153">0465059470</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?153">0465059470</A></td></tr></table></TD> </TR> @@ -5400,7 +5400,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?154">ettie@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?154">ettie@example.com</A></td></tr></table></TD> </TR> @@ -5501,7 +5501,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?155">261457560511658</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?155">261457560511658</A></td></tr></table></TD> </TR> @@ -5602,7 +5602,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?156">haley@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?156">haley@example.com</A></td></tr></table></TD> </TR> @@ -5703,7 +5703,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?165">1906003499937</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?165">1906003499937</A></td></tr></table></TD> </TR> @@ -5804,7 +5804,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?166">rodolfo@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?166">rodolfo@example.com</A></td></tr></table></TD> </TR> @@ -5905,7 +5905,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?170">anika@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?170">anika@example.com</A></td></tr></table></TD> </TR> @@ -6006,7 +6006,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?175">6741985321</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?175">6741985321</A></td></tr></table></TD> </TR> @@ -6107,7 +6107,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?191">078151255309299</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?191">078151255309299</A></td></tr></table></TD> </TR> @@ -6208,7 +6208,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?192">kaitlyn@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?192">kaitlyn@example.com</A></td></tr></table></TD> </TR> @@ -6309,7 +6309,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?194">marian@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?194">marian@example.com</A></td></tr></table></TD> </TR> @@ -6410,7 +6410,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?203">8632406717</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?203">8632406717</A></td></tr></table></TD> </TR> @@ -6511,7 +6511,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?204">kacey@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?204">kacey@example.com</A></td></tr></table></TD> </TR> @@ -6612,7 +6612,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?206">kyla@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?206">kyla@example.com</A></td></tr></table></TD> </TR> @@ -6713,7 +6713,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?213">2636239939</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?213">2636239939</A></td></tr></table></TD> </TR> @@ -6814,7 +6814,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?214">jacky@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?214">jacky@example.com</A></td></tr></table></TD> </TR> @@ -6915,7 +6915,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?218">horace@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?218">horace@example.com</A></td></tr></table></TD> </TR> @@ -7016,7 +7016,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?223">68981950057600</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?223">68981950057600</A></td></tr></table></TD> </TR> @@ -7117,7 +7117,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?225">31674614863771</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?225">31674614863771</A></td></tr></table></TD> </TR> @@ -7218,7 +7218,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?226">alexa@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?226">alexa@example.com</A></td></tr></table></TD> </TR> @@ -7319,7 +7319,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?237">10163759294554</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?237">10163759294554</A></td></tr></table></TD> </TR> @@ -7420,7 +7420,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?238">lexie@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?238">lexie@example.com</A></td></tr></table></TD> </TR> @@ -7521,7 +7521,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?242">cleo@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?242">cleo@example.com</A></td></tr></table></TD> </TR> @@ -7622,7 +7622,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?247">2749371736</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?247">2749371736</A></td></tr></table></TD> </TR> @@ -7723,7 +7723,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?251">70045317269958</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?251">70045317269958</A></td></tr></table></TD> </TR> @@ -7824,7 +7824,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?252">clinton@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?252">clinton@example.com</A></td></tr></table></TD> </TR> @@ -7925,7 +7925,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?259">106766405260980</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?259">106766405260980</A></td></tr></table></TD> </TR> @@ -8026,7 +8026,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?271">9519625792</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?271">9519625792</A></td></tr></table></TD> </TR> @@ -8127,7 +8127,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?273">16095013569</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?273">16095013569</A></td></tr></table></TD> </TR> @@ -8228,7 +8228,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?274">karen@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?274">karen@example.com</A></td></tr></table></TD> </TR> @@ -8329,7 +8329,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?275">1732869050</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?275">1732869050</A></td></tr></table></TD> </TR> @@ -8430,7 +8430,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?276">antwan@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?276">antwan@example.com</A></td></tr></table></TD> </TR> @@ -8531,7 +8531,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?278">mitchell@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?278">mitchell@example.com</A></td></tr></table></TD> </TR> @@ -8632,7 +8632,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?283">5866817423</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?283">5866817423</A></td></tr></table></TD> </TR> @@ -8733,7 +8733,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?285">3521080416</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?285">3521080416</A></td></tr></table></TD> </TR> @@ -8834,7 +8834,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?286">rebeca@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?286">rebeca@example.com</A></td></tr></table></TD> </TR> @@ -8935,7 +8935,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?287">183790150181541</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?287">183790150181541</A></td></tr></table></TD> </TR> @@ -9036,7 +9036,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?288">ibrahim@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?288">ibrahim@example.com</A></td></tr></table></TD> </TR> @@ -9137,7 +9137,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?290">jadon@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?290">jadon@example.com</A></td></tr></table></TD> </TR> @@ -9238,7 +9238,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?295">14991580189167</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?295">14991580189167</A></td></tr></table></TD> </TR> @@ -9339,7 +9339,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?299">2964457155392</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?299">2964457155392</A></td></tr></table></TD> </TR> @@ -9440,7 +9440,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?300">coby@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?300">coby@example.com</A></td></tr></table></TD> </TR> @@ -9541,7 +9541,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?307">4593519604</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?307">4593519604</A></td></tr></table></TD> </TR> @@ -9642,7 +9642,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?323">4989851645</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?323">4989851645</A></td></tr></table></TD> </TR> @@ -9743,7 +9743,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?324">stanton@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?324">stanton@example.com</A></td></tr></table></TD> </TR> @@ -9844,7 +9844,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?333">3337658056</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?333">3337658056</A></td></tr></table></TD> </TR> @@ -9945,7 +9945,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?334">clarabelle@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?334">clarabelle@example.com</A></td></tr></table></TD> </TR> @@ -10046,7 +10046,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?338">stan@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?338">stan@example.com</A></td></tr></table></TD> </TR> @@ -10147,7 +10147,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?345">0783009535773</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?345">0783009535773</A></td></tr></table></TD> </TR> @@ -10248,7 +10248,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?346">marc@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?346">marc@example.com</A></td></tr></table></TD> </TR> @@ -10349,7 +10349,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?347">1894866195856273</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?347">1894866195856273</A></td></tr></table></TD> </TR> @@ -10450,7 +10450,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?348">newell@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?348">newell@example.com</A></td></tr></table></TD> </TR> @@ -10551,7 +10551,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?355">15790441533145</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?355">15790441533145</A></td></tr></table></TD> </TR> @@ -10652,7 +10652,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?359">3724022714296</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?359">3724022714296</A></td></tr></table></TD> </TR> @@ -10753,7 +10753,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?360">therese@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?360">therese@example.com</A></td></tr></table></TD> </TR> @@ -10854,7 +10854,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?367">4942001551</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?367">4942001551</A></td></tr></table></TD> </TR> @@ -10955,7 +10955,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?374">maida@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?374">maida@example.com</A></td></tr></table></TD> </TR> @@ -11056,7 +11056,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?381">3911632965</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?381">3911632965</A></td></tr></table></TD> </TR> @@ -11157,7 +11157,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_acct.cgi?382">eldridge@example.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_acct:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?382">eldridge@example.com</A></td></tr></table></TD> </TR> @@ -11258,7 +11258,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?383">150342529271096</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?383">150342529271096</A></td></tr></table></TD> </TR> diff --git a/FS-Test/share/output/search/cust_pkg.cgi/magic=bill:custnum=135 b/FS-Test/share/output/search/cust_pkg.cgi/magic=bill:custnum=135 index 2ccc71f9d..7963b90dd 100644 --- a/FS-Test/share/output/search/cust_pkg.cgi/magic=bill:custnum=135 +++ b/FS-Test/share/output/search/cust_pkg.cgi/magic=bill:custnum=135 @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -1242,7 +1242,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?403">152300260278657</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?403">152300260278657</A></td></tr></table></TD> </TR> @@ -1343,7 +1343,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_broadband.cgi?401">IP:10.98.22.188, MAC:00007E436BF5</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_broadband:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?401">IP:10.98.22.188, MAC:00007E436BF5</A></td></tr></table></TD> </TR> @@ -1444,7 +1444,7 @@ myMenu68.width = 256; - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_domain.cgi?402">botsford-mueller.com</A></td></tr></table></TD> + <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_domain:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/cust_svc.cgi?402">botsford-mueller.com</A></td></tr></table></TD> </TR> diff --git a/FS-Test/share/output/search/cust_pkg.cgi/pkgnum b/FS-Test/share/output/search/cust_pkg.cgi/pkgnum deleted file mode 100644 index 495e8089a..000000000 --- a/FS-Test/share/output/search/cust_pkg.cgi/pkgnum +++ /dev/null @@ -1,11329 +0,0 @@ - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<HTML> - <HEAD> - <TITLE> - Package Search Results - </TITLE> - <!-- per RT, to prevent IE compatibility mode --> - <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <!-- The X-UA-Compatible <meta> tag above must be very early in <head> --> - <META HTTP-Equiv="Cache-Control" Content="no-cache"> - <META HTTP-Equiv="Pragma" Content="no-cache"> - <META HTTP-Equiv="Expires" Content="0"> - - <script type="text/javascript" src="http://localhost/freeside/elements/cssexpr.js"></script> - - - <script type="text/javascript" src="http://localhost/freeside/elements/xmenu.top.js"></script> - <link href="http://localhost/freeside/elements/xmenu.top.css" type="text/css" rel="stylesheet"> - - - <link href="http://localhost/freeside/elements/freeside.css" type="text/css" rel="stylesheet"> - <link href="http://localhost/freeside/elements/freeside-print.css" type="text/css" rel="stylesheet" media="print"> -<link href="http://localhost/freeside/elements/freeside-menu.css" type="text/css" rel="stylesheet"> - -<SCRIPT TYPE="text/javascript"> - - function about_freeside() { - overlib( OLiframeContent('http://localhost/freeside/docs/about.html', 300, 375, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'About', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#7e0079', CGCOLOR, '#7e0079', FGCOLOR, '#f8f8f8', CLOSETEXT, 'Close'); - } - - webfxMenuImagePath = "http://localhost/freeside/images/"; - webfxMenuUseHover = 1; - webfxMenuShowTime = 300; - webfxMenuHideTime = 500; - - var myBar = new WebFXMenuBar; - - - myBar.add(new WebFXMenuButton('Billing Main', "http://localhost/freeside/", 'Billing start page' )); - - - myBar.add(new WebFXMenuButton('Ticketing Main', "http://localhost/freeside/rt/", 'Ticketing start page' )); - - - myBar.add(new WebFXMenuButton('New prospect', "http://localhost/freeside/edit/prospect_main.html", 'Add a new prospect' )); - - - myBar.add(new WebFXMenuButton('New customer', "http://localhost/freeside/edit/cust_main.cgi", 'Add a new customer' )); - - - var myMenu0 = new WebFXMenu; -myMenu0.emptyText = ''; -var myMenu1 = new WebFXMenu; -myMenu1.emptyText = ''; -myMenu1.add(new WebFXMenuItem("List prospects", "http://localhost/freeside/search/prospect_main.html", "" )); -myMenu1.add(new WebFXMenuItem("Advanced prospect reports", "http://localhost/freeside/search/report_prospect_main.html", "" )); -myMenu1.add(new WebFXMenuSeparator()); -myMenu1.add(new WebFXMenuItem("Prospect contacts", "http://localhost/freeside/search/report_contact.html?link=prospect_main", "" )); -myMenu1.width = 256; - -myMenu0.add(new WebFXMenuItem("Prospects", null, "Prospect reports", myMenu1 )); -var myMenu2 = new WebFXMenu; -myMenu2.emptyText = ''; -myMenu2.add(new WebFXMenuItem("List quotations", "http://localhost/freeside/search/quotation.html", "" )); -myMenu2.add(new WebFXMenuItem("Advanced quotation reports", "http://localhost/freeside/search/report_quotation.html", "" )); -myMenu2.width = 256; - -myMenu0.add(new WebFXMenuItem("Quotations", null, "Quotation reports", myMenu2 )); -var myMenu3 = new WebFXMenu; -myMenu3.emptyText = ''; -var myMenu4 = new WebFXMenu; -myMenu4.emptyText = ''; -myMenu4.add(new WebFXMenuItem("by customer number", "http://localhost/freeside/search/cust_main.cgi?browse=custnum", "" )); -myMenu4.add(new WebFXMenuItem("by last name", "http://localhost/freeside/search/cust_main.cgi?browse=last", "" )); -myMenu4.add(new WebFXMenuItem("by company name", "http://localhost/freeside/search/cust_main.cgi?browse=company", "" )); -myMenu4.add(new WebFXMenuItem("by active trouble tickets", "http://localhost/freeside/search/cust_main.cgi?browse=tickets", "" )); -myMenu4.width = 256; - -myMenu3.add(new WebFXMenuItem("List customers", null, "List customers", myMenu4 )); -myMenu3.add(new WebFXMenuItem("Zip code distribution", "http://localhost/freeside/search/report_cust_main-zip.html", "Zip codes by number of customers" )); -myMenu3.add(new WebFXMenuItem("Customer signup report", "http://localhost/freeside/graph/report_cust_signup.html", "New customer signups by date" )); -myMenu3.add(new WebFXMenuItem("Customer churn report", "http://localhost/freeside/graph/report_cust_churn.html", "New customers, suspensions, and cancellations summary" )); -myMenu3.add(new WebFXMenuItem("Signup date report", "http://localhost/freeside/graph/report_signupdate.html", "Signup date report (by date of signup)" )); -myMenu3.add(new WebFXMenuItem("Advanced customer reports", "http://localhost/freeside/search/report_cust_main.html", "by status, signup date, agent, etc." )); -myMenu3.add(new WebFXMenuSeparator()); -myMenu3.add(new WebFXMenuItem("Customer contacts", "http://localhost/freeside/search/report_contact.html?link=cust_main", "" )); -myMenu3.add(new WebFXMenuItem("Customer stored payment information", "http://localhost/freeside/search/report_cust_payby.html", "" )); -myMenu3.width = 256; - -myMenu0.add(new WebFXMenuItem("Customers", null, "Customer reports", myMenu3 )); -var myMenu5 = new WebFXMenu; -myMenu5.emptyText = ''; -var myMenu6 = new WebFXMenu; -myMenu6.emptyText = ''; -myMenu6.add(new WebFXMenuItem("All open invoices", "http://localhost/freeside/search/cust_bill.html?OPEN_date", "All invoices with an unpaid balance" )); -myMenu6.add(new WebFXMenuItem("15 day open invoices", "http://localhost/freeside/search/cust_bill.html?OPEN15_date", "Invoices 15 days or older with an unpaid balance" )); -myMenu6.add(new WebFXMenuItem("30 day open invoices", "http://localhost/freeside/search/cust_bill.html?OPEN30_date", "Invoices 30 days or older with an unpaid balance" )); -myMenu6.add(new WebFXMenuItem("60 day open invoices", "http://localhost/freeside/search/cust_bill.html?OPEN60_date", "Invoices 60 days or older with an unpaid balance" )); -myMenu6.add(new WebFXMenuItem("90 day open invoices", "http://localhost/freeside/search/cust_bill.html?OPEN90_date", "Invoices 90 days or older with an unpaid balance" )); -myMenu6.add(new WebFXMenuItem("120 day open invoices", "http://localhost/freeside/search/cust_bill.html?OPEN120_date", "Invoices 120 days or older with an unpaid balance" )); -myMenu6.width = 256; - -myMenu5.add(new WebFXMenuItem("Open invoices", null, "Open invoices", myMenu6 )); -myMenu5.add(new WebFXMenuItem("All invoices", "http://localhost/freeside/search/cust_bill.html?date", "List all invoices" )); -myMenu5.add(new WebFXMenuItem("Advanced invoice reports", "http://localhost/freeside/search/report_cust_bill.html", "by agent, date range, etc." )); -myMenu5.add(new WebFXMenuSeparator()); -myMenu5.add(new WebFXMenuItem("Line items", "http://localhost/freeside/search/report_cust_bill_pkg.html", "Individual line item detail" )); -myMenu5.add(new WebFXMenuItem("Voided invoices", "http://localhost/freeside/search/report_cust_bill_void.html", "Search for voided invoices" )); -myMenu5.width = 256; - -myMenu0.add(new WebFXMenuItem("Invoices", null, "Invoice reports", myMenu5 )); -var myMenu7 = new WebFXMenu; -myMenu7.emptyText = ''; -myMenu7.add(new WebFXMenuItem("Discount graph", "http://localhost/freeside/graph/report_cust_bill_pkg_discount.html", "Discount overview per month" )); -myMenu7.add(new WebFXMenuItem("Discount detail", "http://localhost/freeside/search/report_cust_bill_pkg_discount.html", "Discount report (by employee and/or date range)" )); -myMenu7.add(new WebFXMenuItem("Package discounts", "http://localhost/freeside/search/report_cust_pkg_discount.html", "Active/inactive discounts by package" )); -myMenu7.width = 256; - -myMenu0.add(new WebFXMenuItem("Discounts", null, "Discount reports", myMenu7 )); -var myMenu8 = new WebFXMenu; -myMenu8.emptyText = ''; -myMenu8.add(new WebFXMenuItem("Payments", "http://localhost/freeside/search/report_cust_pay.html", "Payment report (by type and/or date range)" )); -myMenu8.add(new WebFXMenuItem("Payment application detail", "http://localhost/freeside/search/report_cust_bill_pay_pkg.html", "Line item application detail" )); -myMenu8.add(new WebFXMenuItem("Pending Payments", "http://localhost/freeside/search/cust_pay_pending.html?magic=_date;statusNOT=done", "Pending real-time payments" )); -myMenu8.add(new WebFXMenuItem("Unapplied Payments", "http://localhost/freeside/search/report_cust_pay.html?unapplied=1", "Unapplied payment report (by type and/or date range)" )); -myMenu8.add(new WebFXMenuItem("Voided Payments", "http://localhost/freeside/search/report_cust_pay.html?void=1", "Voided payment report (by type and/or date range)" )); -myMenu8.add(new WebFXMenuItem("Unapplied Payment Aging", "http://localhost/freeside/search/report_unapplied_cust_pay.html", "Unapplied payment aging report" )); -myMenu8.width = 256; - -myMenu0.add(new WebFXMenuItem("Payments", null, "Payment reports", myMenu8 )); -var myMenu9 = new WebFXMenu; -myMenu9.emptyText = ''; -myMenu9.add(new WebFXMenuItem("Package definitions (by # active)", "http://localhost/freeside/browse/part_pkg.cgi?active=1", "Package definitions by number of active packages" )); -myMenu9.add(new WebFXMenuItem("Package costs", "http://localhost/freeside/graph/report_cust_pkg_cost.html", "Package setup and recurring costs graph" )); -myMenu9.add(new WebFXMenuSeparator()); -myMenu9.add(new WebFXMenuItem("Package churn", "http://localhost/freeside/graph/report_cust_pkg.html", "Orders, suspensions and cancellations summary graph" )); -myMenu9.add(new WebFXMenuSeparator()); -myMenu9.add(new WebFXMenuItem("All customer packages", "http://localhost/freeside/search/cust_pkg.cgi?pkgnum", "List all customer packages" )); -myMenu9.add(new WebFXMenuItem("Package summary", "http://localhost/freeside/search/cust_pkg_summary.html", "Show package sales summary" )); -myMenu9.add(new WebFXMenuItem("Suspended customer packages", "http://localhost/freeside/search/cust_pkg.cgi?magic=suspended", "List suspended packages" )); -myMenu9.add(new WebFXMenuItem("Suspension summary", "http://localhost/freeside/search/cust_pkg_susp.html", "Show suspension activity" )); -myMenu9.add(new WebFXMenuItem("Customer packages with unconfigured services", "http://localhost/freeside/search/cust_pkg.cgi?APKG_pkgnum", "List packages which have provisionable services" )); -myMenu9.add(new WebFXMenuItem("Advanced package reports", "http://localhost/freeside/search/report_cust_pkg.html", "by agent, date range, status, package definition" )); -myMenu9.width = 256; - -myMenu0.add(new WebFXMenuItem("Packages", null, "Package reports", myMenu9 )); -var myMenu10 = new WebFXMenu; -myMenu10.emptyText = ''; -myMenu10.add(new WebFXMenuItem("Service definitions", "http://localhost/freeside/browse/part_svc.cgi?orderby=active", "Service definitions by number of active packages" )); -myMenu10.add(new WebFXMenuSeparator()); -myMenu10.add(new WebFXMenuItem("Unprovisioned services", "http://localhost/freeside/search/report_unprovisioned_services.html", "Unprovisioned services" )); -myMenu10.add(new WebFXMenuSeparator()); -var myMenu11 = new WebFXMenu; -myMenu11.emptyText = ''; -myMenu11.add(new WebFXMenuItem("All accounts by Username", "http://localhost/freeside/search/svc_acct.cgi?magic=all;sortby=username", "" )); -myMenu11.add(new WebFXMenuItem("All accounts by UID", "http://localhost/freeside/search/svc_acct.cgi?magic=all;sortby=uid", "" )); -myMenu11.add(new WebFXMenuItem("All accounts with Time Remaining", "http://localhost/freeside/search/svc_acct.cgi?magic=all;sortby=seconds", "" )); -myMenu11.add(new WebFXMenuItem("All accounts by Last login", "http://localhost/freeside/search/svc_acct.cgi?magic=all;sortby=last_login", "" )); -myMenu11.add(new WebFXMenuItem("All accounts never logged in", "http://localhost/freeside/search/svc_acct.cgi?magic=nologin;sortby=svcnum", "" )); -myMenu11.add(new WebFXMenuItem("Advanced account reports", "http://localhost/freeside/search/report_svc_acct.html", "" )); -myMenu11.width = 256; - -myMenu10.add(new WebFXMenuItem("Accounts", null, "Access accounts and mailboxes", myMenu11 )); -var myMenu12 = new WebFXMenu; -myMenu12.emptyText = ''; -myMenu12.add(new WebFXMenuItem("All domains", "http://localhost/freeside/search/svc_domain.cgi?magic=all;sortby=domain", "" )); -myMenu12.width = 256; - -myMenu10.add(new WebFXMenuItem("Domains", null, "Domains", myMenu12 )); -var myMenu13 = new WebFXMenu; -myMenu13.emptyText = ''; -myMenu13.add(new WebFXMenuItem("All certificates", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_cert;magic=all;sortby=svcnum", "" )); -myMenu13.width = 256; - -myMenu10.add(new WebFXMenuItem("Certificates", null, "Example services", myMenu13 )); -var myMenu14 = new WebFXMenu; -myMenu14.emptyText = ''; -myMenu14.add(new WebFXMenuItem("All mail forwards", "http://localhost/freeside/search/svc_forward.cgi?magic=all;sortby=svcnum", "" )); -myMenu14.width = 256; - -myMenu10.add(new WebFXMenuItem("Mail forwards", null, "Mail forwards", myMenu14 )); -var myMenu15 = new WebFXMenu; -myMenu15.emptyText = ''; -myMenu15.add(new WebFXMenuItem("All mailing lists", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_mailinglist;magic=all;sortby=svcnum", "" )); -myMenu15.width = 256; - -myMenu10.add(new WebFXMenuItem("Mailing lists", null, "Mailing lists", myMenu15 )); -var myMenu16 = new WebFXMenu; -myMenu16.emptyText = ''; -myMenu16.add(new WebFXMenuItem("All virtual hosting services", "http://localhost/freeside/search/svc_www.cgi?magic=all;sortby=svcnum", "" )); -myMenu16.width = 256; - -myMenu10.add(new WebFXMenuItem("Virtual hosting services", null, "Virtual hosting services", myMenu16 )); -var myMenu17 = new WebFXMenu; -myMenu17.emptyText = ''; -myMenu17.add(new WebFXMenuItem("All wireless broadband services", "http://localhost/freeside/search/svc_broadband.cgi?magic=all;sortby=svcnum", "" )); -myMenu17.add(new WebFXMenuItem("Advanced wireless broadband reports", "http://localhost/freeside/search/report_svc_broadband.html", "" )); -myMenu17.width = 256; - -myMenu10.add(new WebFXMenuItem("Wireless broadband services", null, "Fixed wireless broadband services", myMenu17 )); -var myMenu18 = new WebFXMenu; -myMenu18.emptyText = ''; -myMenu18.add(new WebFXMenuItem("All cable subscribers by Service", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_cable;magic=all;sortby=svcnum", "" )); -myMenu18.add(new WebFXMenuItem("All cable subscribers by Serial number", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_cable;magic=all;sortby=serialnum", "" )); -myMenu18.add(new WebFXMenuItem("All cable subscribers by MAC address", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_cable;magic=all;sortby=mac_addr", "" )); -myMenu18.width = 256; - -myMenu10.add(new WebFXMenuItem("Cable Subscribers", null, "Cable Subscribers", myMenu18 )); -var myMenu19 = new WebFXMenu; -myMenu19.emptyText = ''; -myMenu19.add(new WebFXMenuItem("All DSLs", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_dsl;magic=all;sortby=phonenum", "" )); -myMenu19.add(new WebFXMenuItem("Qualifications", "http://localhost/freeside/search/qual.cgi", "" )); -myMenu19.width = 256; - -myMenu10.add(new WebFXMenuItem("DSLs", null, "DSLs", myMenu19 )); -var myMenu20 = new WebFXMenu; -myMenu20.emptyText = ''; -myMenu20.add(new WebFXMenuItem("All dish services", "http://localhost/freeside/search/svc_dish.cgi?magic=all;sortby=svcnum", "" )); -myMenu20.width = 256; - -myMenu10.add(new WebFXMenuItem("Dish services", null, "Dish services", myMenu20 )); -var myMenu21 = new WebFXMenu; -myMenu21.emptyText = ''; -myMenu21.add(new WebFXMenuItem("All hardware", "http://localhost/freeside/search/svc_hardware.cgi?magic=all;sortby=svcnum", "" )); -myMenu21.add(new WebFXMenuItem("Advanced hardware reports", "http://localhost/freeside/search/report_svc_hardware.html", "" )); -myMenu21.width = 256; - -myMenu10.add(new WebFXMenuItem("Hardware", null, "Hardware", myMenu21 )); -var myMenu22 = new WebFXMenu; -myMenu22.emptyText = ''; -myMenu22.add(new WebFXMenuItem("All phone numbers", "http://localhost/freeside/search/svc_phone.cgi?magic=all;sortby=phonenum", "" )); -myMenu22.add(new WebFXMenuItem("Phone numbers' total usage by time period", "http://localhost/freeside/search/report_svc_phone_usage.html", "Total usage (minutes, and amount billed) for the specified time period, per phone number." )); -myMenu22.add(new WebFXMenuItem("Phone numbers by state", "http://localhost/freeside/search/phone_state.html", "Current or historical phone services broken down by state." )); -myMenu22.add(new WebFXMenuItem("Advanced phone number reports", "http://localhost/freeside/search/report_svc_phone.html", "" )); -myMenu22.add(new WebFXMenuItem("Phone number (DID) availability", "http://localhost/freeside/search/report_phone_avail.html", "" )); -myMenu22.add(new WebFXMenuItem("Inventory/Provisioning Status", "http://localhost/freeside/search/phone_inventory_provisioned.html", "" )); -myMenu22.width = 256; - -myMenu10.add(new WebFXMenuItem("Phone numbers", null, "Phone numbers", myMenu22 )); -var myMenu23 = new WebFXMenu; -myMenu23.emptyText = ''; -myMenu23.add(new WebFXMenuItem("All PBXs", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_pbx;magic=all;sortby=svcnum", "" )); -myMenu23.width = 256; - -myMenu10.add(new WebFXMenuItem("PBXs", null, "PBXs", myMenu23 )); -var myMenu24 = new WebFXMenu; -myMenu24.emptyText = ''; -myMenu24.add(new WebFXMenuItem("All circuits", "http://localhost/freeside/search/svc_circuit.cgi?magic=all;sortby=svcnum", "" )); -myMenu24.width = 256; - -myMenu10.add(new WebFXMenuItem("Circuits", null, "Voice and data circuit services", myMenu24 )); -var myMenu25 = new WebFXMenu; -myMenu25.emptyText = ''; -myMenu25.add(new WebFXMenuItem("All ports", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_port;magic=all;sortby=serviceid", "" )); -myMenu25.width = 256; - -myMenu10.add(new WebFXMenuItem("Ports", null, "Ports", myMenu25 )); -var myMenu26 = new WebFXMenu; -myMenu26.emptyText = ''; -myMenu26.add(new WebFXMenuItem("All alarm services", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_alarm;magic=all;sortby=acctnum", "" )); -myMenu26.width = 256; - -myMenu10.add(new WebFXMenuItem("Alarm services", null, "Alarm services", myMenu26 )); -var myMenu27 = new WebFXMenu; -myMenu27.emptyText = ''; -myMenu27.add(new WebFXMenuItem("All external services", "http://localhost/freeside/search/svc_external.cgi?magic=all;sortby=id", "" )); -myMenu27.width = 256; - -myMenu10.add(new WebFXMenuItem("External services", null, "External services", myMenu27 )); -myMenu10.width = 256; - -myMenu0.add(new WebFXMenuItem("Services", null, "Services reports", myMenu10 )); -var myMenu28 = new WebFXMenu; -myMenu28.emptyText = ''; -myMenu28.add(new WebFXMenuItem("Inventory by agent", "http://localhost/freeside/search/report_agent_inventory.html", "" )); -myMenu28.add(new WebFXMenuItem("Inventory activity", "http://localhost/freeside/search/report_h_inventory_item.html", "" )); -myMenu28.width = 256; - -myMenu0.add(new WebFXMenuItem("Inventory", null, "Inventory reports", myMenu28 )); -var myMenu29 = new WebFXMenu; -myMenu29.emptyText = ''; -myMenu29.add(new WebFXMenuItem("RADIUS sessions", "http://localhost/freeside/search/sqlradius.html", "" )); -myMenu29.add(new WebFXMenuItem("RADIUS data usage", "http://localhost/freeside/search/report_sqlradius_usage.html", "" )); -myMenu29.add(new WebFXMenuItem("Call Detail Records (CDRs)", "http://localhost/freeside/search/report_cdr.html", "" )); -myMenu29.add(new WebFXMenuItem("Unrateable CDRs", "http://localhost/freeside/search/cdr.html?freesidestatus=failed;cdrbatchnum=_ALL_", "" )); -myMenu29.width = 256; - -myMenu0.add(new WebFXMenuItem("Usage", null, "Usage reports", myMenu29 )); -var myMenu30 = new WebFXMenu; -myMenu30.emptyText = ''; -var myMenu31 = new WebFXMenu; -myMenu31.emptyText = ''; -myMenu31.add(new WebFXMenuItem("Tickets per day per Queue", "http://localhost/freeside/rt/RTx/Statistics/CallsQueueDay", "View the number of tickets created, resolved or deleted in a specific Queue, over the requested period of days" )); -myMenu31.add(new WebFXMenuItem("Ticket status by Queue", "http://localhost/freeside/rt/RTx/Statistics/OpenStalled", "View numbers of new, open and stalled tickets in a selected Queue" )); -myMenu31.add(new WebFXMenuItem("Tickets per day (multiple Queues)", "http://localhost/freeside/rt/RTx/Statistics/CallsMultiQueue", "View tickets created, resolved or deleted on in one or more Queues over a specified time period" )); -myMenu31.add(new WebFXMenuItem("Tickets per Day of Week", "http://localhost/freeside/rt/RTx/Statistics/DayOfWeek", "View trends showing when tickets are created, resolved or deleted" )); -myMenu31.add(new WebFXMenuItem("Time to resolve", "http://localhost/freeside/rt/RTx/Statistics/Resolution", "View how long tickets take to be resolved by Queue" )); -myMenu31.add(new WebFXMenuItem("Time to resolve (scatter graph)", "http://localhost/freeside/rt/RTx/Statistics/TimeToResolve", "View a detailed scatter graph of time to resolve tickets by Queue" )); -myMenu31.width = 256; - -myMenu30.add(new WebFXMenuItem("Statistics", null, "", myMenu31 )); -myMenu30.add(new WebFXMenuSeparator()); -myMenu30.add(new WebFXMenuItem("Advanced ticket reports", "http://localhost/freeside/rt/Search/Build.html?NewQuery=1", "List tickets by any criteria" )); -myMenu30.width = 256; - -myMenu0.add(new WebFXMenuItem("Tickets", null, "Ticket reports", myMenu30 )); -var myMenu32 = new WebFXMenu; -myMenu32.emptyText = ''; -var myMenu33 = new WebFXMenu; -myMenu33.emptyText = ''; -myMenu33.add(new WebFXMenuItem("Sales, Credits and Receipts", "http://localhost/freeside/graph/report_money_time.html", "Sales, credits and receipts summary graph" )); -myMenu33.add(new WebFXMenuItem("Daily Sales, Credits and Receipts", "http://localhost/freeside/graph/report_money_time_daily.html", "Sales, credits and receipts (broken down by day) summary graph" )); -myMenu33.add(new WebFXMenuItem("Sales Report", "http://localhost/freeside/graph/report_cust_bill_pkg.html", "Sales report and graph (by agent, package class and/or date range)" )); -myMenu33.add(new WebFXMenuItem("Rated Call Sales Report", "http://localhost/freeside/graph/report_cust_bill_pkg_detail.html", "Sales report and graph (by agent, package class, usage class and/or date range)" )); -myMenu33.add(new WebFXMenuItem("Sales with Advertising Source", "http://localhost/freeside/search/report_cust_bill_pkg_referral.html", "" )); -myMenu33.width = 256; - -myMenu32.add(new WebFXMenuItem("Sales", null, "Sales reports", myMenu33 )); -var myMenu34 = new WebFXMenu; -myMenu34.emptyText = ''; -myMenu34.add(new WebFXMenuItem("Agent", "http://localhost/freeside/search/report_agent_commission.html", "" )); -myMenu34.add(new WebFXMenuItem("Agent per package", "http://localhost/freeside/search/report_agent_commission_pkg.html", "" )); -myMenu34.add(new WebFXMenuItem("Sales Person", "http://localhost/freeside/search/report_sales_commission.html", "" )); -myMenu34.add(new WebFXMenuItem("Sales Person per package", "http://localhost/freeside/search/report_sales_commission_pkg.html", "" )); -myMenu34.add(new WebFXMenuItem("Employee", "http://localhost/freeside/search/report_employee_commission.html", "" )); -myMenu34.width = 256; - -myMenu32.add(new WebFXMenuItem("Commissions", null, "Commission reports", myMenu34 )); -var myMenu35 = new WebFXMenu; -myMenu35.emptyText = ''; -myMenu35.add(new WebFXMenuItem("Credit Report", "http://localhost/freeside/search/report_cust_credit.html", "Credit report (by employee and/or date range)" )); -myMenu35.add(new WebFXMenuItem("Credit package source detail", "http://localhost/freeside/search/report_cust_credit_source_bill_pkg.html", "Line-item detail for triggered package credits" )); -myMenu35.add(new WebFXMenuItem("Credit application detail", "http://localhost/freeside/search/report_cust_credit_bill_pkg.html", "Line item application detail" )); -myMenu35.add(new WebFXMenuItem("Unapplied Credits", "http://localhost/freeside/search/report_cust_credit.html?unapplied=1", "Unapplied credit report (by type and/or date range)" )); -myMenu35.add(new WebFXMenuItem("Voided Credits", "http://localhost/freeside/search/report_cust_credit_void.html", "Voided credit report (by employee and/or date range)" )); -myMenu35.width = 256; - -myMenu32.add(new WebFXMenuItem("Credits", null, "Credit reports", myMenu35 )); -var myMenu36 = new WebFXMenu; -myMenu36.emptyText = ''; -myMenu36.add(new WebFXMenuItem("Refund Report", "http://localhost/freeside/search/report_cust_refund.html", "Refund report (by type and/or date range)" )); -myMenu36.add(new WebFXMenuItem("Unapplied Refunds", "http://localhost/freeside/search/report_cust_refund.html?unapplied=1", "Unapplied refund report (by type and/or date range)" )); -myMenu36.width = 256; - -myMenu32.add(new WebFXMenuItem("Refunds", null, "Refund reports", myMenu36 )); -myMenu32.add(new WebFXMenuItem("A/R Aging", "http://localhost/freeside/search/report_receivables.html", "Accounts Receivable Aging report" )); -myMenu32.add(new WebFXMenuItem("Prepaid Income", "http://localhost/freeside/search/report_prepaid_income.html", "Prepaid income (unearned revenue) report" )); -myMenu32.add(new WebFXMenuItem("Tax Liability", "http://localhost/freeside/search/report_tax.html", "Tax liability report (internal tax data)" )); -myMenu32.add(new WebFXMenuItem("E911 Fee Summary", "http://localhost/freeside/search/report_e911.html", "E911 fee summary" )); -myMenu32.add(new WebFXMenuItem("Customer Accounting Summary", "http://localhost/freeside/search/report_customer_accounting_summary.html", "Customer accounting summary report" )); -myMenu32.width = 256; - -myMenu0.add(new WebFXMenuItem("Financial (Receivables)", null, "Financial reports (Receivables)", myMenu32 )); -var myMenu37 = new WebFXMenu; -myMenu37.emptyText = ''; -myMenu37.add(new WebFXMenuItem("Payables summary", "http://localhost/freeside/search/report_vend_main.html", "Payables summary by vendor" )); -myMenu37.add(new WebFXMenuItem("Payables detail", "http://localhost/freeside/search/report_vend_bill.html", "" )); -myMenu37.width = 256; - -myMenu0.add(new WebFXMenuItem("Financial (Payables)", null, "Financial reports (Payables)", myMenu37 )); -var myMenu38 = new WebFXMenu; -myMenu38.emptyText = ''; -var myMenu39 = new WebFXMenu; -myMenu39.emptyText = ''; -myMenu39.add(new WebFXMenuItem("All billing events", "http://localhost/freeside/search/report_cust_event.html", "All billing events for a date range" )); -myMenu39.add(new WebFXMenuItem("Billing event errors", "http://localhost/freeside/search/report_cust_event.html?failed=1", "Failed credit cards, processor or printer problems, etc." )); -myMenu39.width = 256; - -myMenu38.add(new WebFXMenuItem("Billing events", null, "Billing events", myMenu39 )); -myMenu38.add(new WebFXMenuItem("Credit limit incidents", "http://localhost/freeside/search/report_cust_main_credit_limit.html", "" )); -myMenu38.add(new WebFXMenuItem("Employee activity", "http://localhost/freeside/search/report_employee_audit.html", "" )); -myMenu38.add(new WebFXMenuItem("System log", "http://localhost/freeside/search/log.html", "View system events and debugging information." )); -myMenu38.add(new WebFXMenuItem("Outgoing messages", "http://localhost/freeside/search/cust_msg.html", "View outgoing message log" )); -myMenu38.width = 256; - -myMenu0.add(new WebFXMenuItem("Logs", null, "System and email logs", myMenu38 )); -myMenu0.width = 256; - - myBar.add(new WebFXMenuButton('Reports', null, 'Lists, reporting and graphing', myMenu0 )); - - - var myMenu40 = new WebFXMenu; -myMenu40.emptyText = ''; -var myMenu41 = new WebFXMenu; -myMenu41.emptyText = ''; -myMenu41.add(new WebFXMenuItem("Appointments", "http://localhost/freeside/rt/Search/Schedule.html?LengthMin=0", "View appointment schedule" )); -myMenu41.add(new WebFXMenuItem("Attachments", "http://localhost/freeside/browse/cust_attachment.html", "View customer attachments" )); -myMenu41.add(new WebFXMenuItem("Customer email settings", "http://localhost/freeside/misc/manage_cust_email.html", "" )); -myMenu41.width = 256; - -myMenu40.add(new WebFXMenuItem("Customers", null, "Customer tools", myMenu41 )); -var myMenu42 = new WebFXMenu; -myMenu42.emptyText = ''; -myMenu42.add(new WebFXMenuItem("Quick payment entry", "http://localhost/freeside/misc/batch-cust_pay.html", "Enter multiple payments in a batch" )); -myMenu42.add(new WebFXMenuItem("Download invoice batches", "http://localhost/freeside/search/bill_batch.cgi", "" )); -myMenu42.width = 256; - -myMenu40.add(new WebFXMenuItem("Billing", null, "Payment and invoice tools", myMenu42 )); -var myMenu43 = new WebFXMenu; -myMenu43.emptyText = ''; -var myMenu44 = new WebFXMenu; -myMenu44.emptyText = ''; -myMenu44.add(new WebFXMenuItem("Overview", "http://localhost/freeside/rt/Articles/index.html", "" )); -myMenu44.add(new WebFXMenuItem("Search", "http://localhost/freeside/rt/Articles/Article/Search.html", "" )); -myMenu44.add(new WebFXMenuItem("Topics", "http://localhost/freeside/rt/Articles/Topics.html", "" )); -myMenu44.width = 256; - -myMenu43.add(new WebFXMenuItem("Articles", null, "", myMenu44 )); -myMenu43.add(new WebFXMenuItem("My Day", "http://localhost/freeside/rt/Tools/MyDay.html", "" )); -myMenu43.add(new WebFXMenuItem("My Reminders", "http://localhost/freeside/rt/Tools/MyReminders.html", "" )); -myMenu43.add(new WebFXMenuItem("Offline", "http://localhost/freeside/rt/Tools/Offline.html", "" )); -myMenu43.add(new WebFXMenuItem("Approval", "http://localhost/freeside/rt/Approvals/", "" )); -myMenu43.width = 256; - -myMenu40.add(new WebFXMenuItem("Ticketing", null, "Ticketing tools", myMenu43 )); -var myMenu45 = new WebFXMenu; -myMenu45.emptyText = ''; -myMenu45.add(new WebFXMenuItem("Bulk DID Orders", "http://localhost/freeside/browse/did_order.html", "View/manage bulk DID orders" )); -myMenu45.add(new WebFXMenuItem("Business card scan", "http://localhost/freeside/edit/prospect_main-upload.html", "" )); -myMenu45.width = 256; - -myMenu40.add(new WebFXMenuItem("Miscellaneous", null, "", myMenu45 )); -var myMenu46 = new WebFXMenu; -myMenu46.emptyText = ''; -myMenu46.add(new WebFXMenuItem("Customers", "http://localhost/freeside/misc/cust_main-import.cgi", "" )); -myMenu46.add(new WebFXMenuItem("Package definitions", "http://localhost/freeside/misc/part_pkg-import.html", "" )); -myMenu46.add(new WebFXMenuItem("Customer packages", "http://localhost/freeside/misc/cust_pkg-import.html", "" )); -myMenu46.add(new WebFXMenuItem("Customer comments", "http://localhost/freeside/misc/cust_main_note-import.html", "" )); -myMenu46.add(new WebFXMenuItem("One-time charges", "http://localhost/freeside/misc/cust_main-import_charges.cgi", "" )); -myMenu46.add(new WebFXMenuItem("Payments", "http://localhost/freeside/misc/cust_pay-import.cgi", "" )); -myMenu46.add(new WebFXMenuItem("Credits", "http://localhost/freeside/misc/cust_credit-import.html", "" )); -myMenu46.add(new WebFXMenuItem("Phone numbers (DIDs)", "http://localhost/freeside/misc/phone_avail-import.html", "" )); -myMenu46.add(new WebFXMenuItem("Call Detail Records (CDRs)", "http://localhost/freeside/misc/cdr-import.html", "" )); -myMenu46.width = 256; - -myMenu40.add(new WebFXMenuItem("Importing", null, "Import tools", myMenu46 )); -var myMenu47 = new WebFXMenu; -myMenu47.emptyText = ''; -myMenu47.add(new WebFXMenuItem("Status", "http://localhost/freeside/view/Status.html", "System status" )); -myMenu47.add(new WebFXMenuItem("Job Queue", "http://localhost/freeside/search/queue.html", "View pending job queue" )); -myMenu47.width = 256; - -myMenu40.add(new WebFXMenuItem("System", null, "System tools", myMenu47 )); -myMenu40.width = 256; - - myBar.add(new WebFXMenuButton('Tools', null, 'Tools', myMenu40 )); - - - var myMenu48 = new WebFXMenu; -myMenu48.emptyText = ''; -myMenu48.add(new WebFXMenuItem("Settings", "http://localhost/freeside/config/config-view.cgi", "" )); -myMenu48.add(new WebFXMenuSeparator()); -var myMenu49 = new WebFXMenu; -myMenu49.emptyText = ''; -myMenu49.add(new WebFXMenuItem("Agent types", "http://localhost/freeside/browse/agent_type.cgi", "Agent types define groups of package definitions that you can then assign to particular agents" )); -myMenu49.add(new WebFXMenuItem("Agents", "http://localhost/freeside/browse/agent.cgi", "Agents are resellers of your service. Agents may be limited to a subset of your full offerings (via their type)" )); -myMenu49.add(new WebFXMenuItem("Agent payment gateways", "http://localhost/freeside/browse/payment_gateway.html", "Credit card and electronic check processors for agent overrides" )); -myMenu49.width = 256; - -myMenu48.add(new WebFXMenuItem("Companies", null, "", myMenu49 )); -var myMenu50 = new WebFXMenu; -myMenu50.emptyText = ''; -myMenu50.add(new WebFXMenuItem("Sales People", "http://localhost/freeside/browse/sales.html", "Sales people bring in new business." )); -myMenu50.width = 256; - -myMenu48.add(new WebFXMenuItem("Sales People", null, "", myMenu50 )); -var myMenu51 = new WebFXMenu; -myMenu51.emptyText = ''; -myMenu51.add(new WebFXMenuItem("Employees", "http://localhost/freeside/browse/access_user.html", "Setup internal users" )); -myMenu51.add(new WebFXMenuItem("Employee groups", "http://localhost/freeside/browse/access_group.html", "Employee groups allow you to control access to the backend" )); -myMenu51.add(new WebFXMenuItem("Installer availability", "http://localhost/freeside/browse/sched_item.html", "Installer availability" )); -myMenu51.width = 256; - -myMenu48.add(new WebFXMenuItem("Employees", null, "", myMenu51 )); -myMenu48.add(new WebFXMenuSeparator()); -var myMenu52 = new WebFXMenu; -myMenu52.emptyText = ''; -myMenu52.add(new WebFXMenuItem("Customer tags", "http://localhost/freeside/browse/part_tag.html", "" )); -myMenu52.add(new WebFXMenuItem("Customer classes", "http://localhost/freeside/browse/cust_class.html", "Customer classes define groups of customers for reporting." )); -myMenu52.add(new WebFXMenuItem("Customer categories", "http://localhost/freeside/browse/cust_category.html", "Customer categories define groups of customer classes." )); -myMenu52.add(new WebFXMenuSeparator()); -myMenu52.add(new WebFXMenuItem("Contact types", "http://localhost/freeside/browse/contact_class.html", "" )); -myMenu52.width = 256; - -myMenu48.add(new WebFXMenuItem("Customers", null, "", myMenu52 )); -var myMenu53 = new WebFXMenu; -myMenu53.emptyText = ''; -myMenu53.add(new WebFXMenuItem("Package definitions", "http://localhost/freeside/browse/part_pkg.cgi", "One or more services are grouped together into a package and given pricing information. Customers purchase packages, not services" )); -myMenu53.add(new WebFXMenuItem("Package classes", "http://localhost/freeside/browse/pkg_class.html", "Package classes define groups of packages, for taxation, ordering convenience and reporting." )); -myMenu53.add(new WebFXMenuItem("Package categories", "http://localhost/freeside/browse/pkg_category.html", "Package categories define groups of package classes, for invoice sections." )); -myMenu53.add(new WebFXMenuItem("Package report classes", "http://localhost/freeside/browse/part_pkg_report_option.html", "Package classes define optional groups of packages for reporting only." )); -myMenu53.add(new WebFXMenuItem("Fees", "http://localhost/freeside/browse/part_fee.html", "" )); -myMenu53.add(new WebFXMenuItem("Discounts", "http://localhost/freeside/browse/discount.html", "" )); -myMenu53.add(new WebFXMenuItem("Discount classes", "http://localhost/freeside/browse/discount_class.html", "" )); -var myMenu54 = new WebFXMenu; -myMenu54.emptyText = ''; -myMenu54.add(new WebFXMenuItem("Cancel reasons", "http://localhost/freeside/browse/reason.html?class=C", "Cancel reasons explain why a service was cancelled." )); -myMenu54.add(new WebFXMenuItem("Cancel reason types", "http://localhost/freeside/browse/reason_type.html?class=C", "Cancel reason types define groups of reasons." )); -myMenu54.add(new WebFXMenuItem("Suspend reasons", "http://localhost/freeside/browse/reason.html?class=S", "Suspend reasons explain why a service was suspended." )); -myMenu54.add(new WebFXMenuItem("Suspend reason types", "http://localhost/freeside/browse/reason_type.html?class=S", "Suspend reason types define groups of reasons." )); -myMenu54.width = 256; - -myMenu53.add(new WebFXMenuItem("Cancel/Suspend Reasons", null, "", myMenu54 )); -myMenu53.width = 256; - -myMenu48.add(new WebFXMenuItem("Packages", null, "", myMenu53 )); -var myMenu55 = new WebFXMenu; -myMenu55.emptyText = ''; -myMenu55.add(new WebFXMenuItem("Service definitions", "http://localhost/freeside/browse/part_svc.cgi", "Services are items you offer to your customers" )); -myMenu55.add(new WebFXMenuItem("Service classes", "http://localhost/freeside/browse/part_svc_class.html", "Services classes are user-defined, informational types for services" )); -myMenu55.add(new WebFXMenuItem("Service dependencies", "http://localhost/freeside/browse/part_svc_link.html", "Services depencies define rules between service definitions" )); -myMenu55.add(new WebFXMenuItem("Provisioning exports", "http://localhost/freeside/browse/part_export.cgi", "Provisioning services to external machines, databases and APIs" )); -var myMenu56 = new WebFXMenu; -myMenu56.emptyText = ''; -myMenu56.add(new WebFXMenuItem("Access numbers", "http://localhost/freeside/browse/svc_acct_pop.cgi", "Points of Presence" )); -myMenu56.width = 256; - -myMenu55.add(new WebFXMenuItem("Dialup", null, "", myMenu56 )); -var myMenu57 = new WebFXMenu; -myMenu57.emptyText = ''; -myMenu57.add(new WebFXMenuItem("Towers", "http://localhost/freeside/browse/tower.html", "Towers and sectors" )); -myMenu57.add(new WebFXMenuItem("Routers", "http://localhost/freeside/browse/router.cgi", "Broadband access routers" )); -myMenu57.add(new WebFXMenuItem("Address blocks", "http://localhost/freeside/browse/addr_block.cgi", "Manage address blocks and block assignments to broadband routers" )); -myMenu57.add(new WebFXMenuItem("Address ranges", "http://localhost/freeside/browse/addr_range.html", "Designate special address ranges" )); -myMenu57.width = 256; - -myMenu55.add(new WebFXMenuItem("Wireless broadband", null, "", myMenu57 )); -var myMenu58 = new WebFXMenu; -myMenu58.emptyText = ''; -myMenu58.add(new WebFXMenuItem("View/Edit phone device types", "http://localhost/freeside/browse/part_device.html", "Phone device types" )); -myMenu58.add(new WebFXMenuItem("View/Edit bulk DID vendors", "http://localhost/freeside/browse/did_vendor.html", "Bulk DID vendors" )); -myMenu58.add(new WebFXMenuItem("View/Edit Carriers", "http://localhost/freeside/browse/cdr_carrier.html", "Carriers" )); -myMenu58.width = 256; - -myMenu55.add(new WebFXMenuItem("Phone", null, "", myMenu58 )); -var myMenu59 = new WebFXMenu; -myMenu59.emptyText = ''; -myMenu59.add(new WebFXMenuItem("RADIUS Groups", "http://localhost/freeside/browse/radius_group.html", "Manage RADIUS groups" )); -myMenu59.add(new WebFXMenuItem("RADIUS Clients", "http://localhost/freeside/browse/nas.html", "Manage RADIUS clients" )); -myMenu59.width = 256; - -myMenu55.add(new WebFXMenuItem("RADIUS", null, "", myMenu59 )); -var myMenu60 = new WebFXMenu; -myMenu60.emptyText = ''; -myMenu60.add(new WebFXMenuItem("Cable providers", "http://localhost/freeside/browse/cable_provider.html", "" )); -myMenu60.add(new WebFXMenuItem("Cable modem models", "http://localhost/freeside/browse/cable_model.html", "" )); -myMenu60.width = 256; - -myMenu55.add(new WebFXMenuItem("Cable", null, "", myMenu60 )); -var myMenu61 = new WebFXMenu; -myMenu61.emptyText = ''; -myMenu61.add(new WebFXMenuItem("Conferencing types", "http://localhost/freeside/browse/conferencing_type.html", "" )); -myMenu61.add(new WebFXMenuItem("Quality levels", "http://localhost/freeside/browse/conferencing_quality.html", "" )); -myMenu61.width = 256; - -myMenu55.add(new WebFXMenuItem("Conferencing", null, "", myMenu61 )); -var myMenu62 = new WebFXMenu; -myMenu62.emptyText = ''; -myMenu62.add(new WebFXMenuItem("Alarm system vendors", "http://localhost/freeside/browse/alarm_system.html", "" )); -myMenu62.add(new WebFXMenuItem("Alarm system types", "http://localhost/freeside/browse/alarm_type.html", "" )); -myMenu62.add(new WebFXMenuItem("Alarm central stations", "http://localhost/freeside/browse/alarm_station.html", "" )); -myMenu62.width = 256; - -myMenu55.add(new WebFXMenuItem("Alarm", null, "", myMenu62 )); -var myMenu63 = new WebFXMenu; -myMenu63.emptyText = ''; -myMenu63.add(new WebFXMenuItem("Circuit types", "http://localhost/freeside/browse/circuit_type.html", "" )); -myMenu63.add(new WebFXMenuItem("Circuit providers", "http://localhost/freeside/browse/circuit_provider.html", "" )); -myMenu63.add(new WebFXMenuItem("Termination types", "http://localhost/freeside/browse/circuit_termination.html", "" )); -myMenu63.width = 256; - -myMenu55.add(new WebFXMenuItem("Circuits", null, "", myMenu63 )); -myMenu55.add(new WebFXMenuItem("Hardware types", "http://localhost/freeside/browse/hardware_class.html", "Set up hardware type catalog" )); -myMenu55.width = 256; - -myMenu48.add(new WebFXMenuItem("Services", null, "", myMenu55 )); -myMenu48.add(new WebFXMenuSeparator()); -var myMenu64 = new WebFXMenu; -myMenu64.emptyText = ''; -myMenu64.add(new WebFXMenuItem("Vendor classes", "http://localhost/freeside/browse/vend_class.html", "" )); -myMenu64.add(new WebFXMenuItem("Vendors", "http://localhost/freeside/browse/vend_main.html", "" )); -myMenu64.width = 256; - -myMenu48.add(new WebFXMenuItem("Vendors", null, "", myMenu64 )); -myMenu48.add(new WebFXMenuSeparator()); -var myMenu65 = new WebFXMenu; -myMenu65.emptyText = ''; -myMenu65.add(new WebFXMenuItem("Billing events", "http://localhost/freeside/browse/part_event.html", "Billing actions for customers, invoices and packages" )); -myMenu65.add(new WebFXMenuItem("Invoice configurations", "http://localhost/freeside/browse/invoice_conf.html", "Adjust invoice settings for special-purpose notices" )); -myMenu65.add(new WebFXMenuItem("Invoice templates", "http://localhost/freeside/browse/invoice_template.html", "Edit templates for HTML, plaintext and typeset invoices" )); -myMenu65.add(new WebFXMenuSeparator()); -myMenu65.add(new WebFXMenuItem("Prepaid cards", "http://localhost/freeside/search/prepay_credit.html", "View outstanding cards, generate new cards" )); -var myMenu66 = new WebFXMenu; -myMenu66.emptyText = ''; -myMenu66.add(new WebFXMenuItem("Rate plans", "http://localhost/freeside/browse/rate.cgi", "Manage rate plans" )); -myMenu66.add(new WebFXMenuItem("Regions and prefixes", "http://localhost/freeside/browse/rate_region.html", "Manage regions and prefixes" )); -myMenu66.add(new WebFXMenuItem("Usage classes", "http://localhost/freeside/browse/usage_class.html", "Usage classes define groups of usage for taxation." )); -myMenu66.add(new WebFXMenuItem("Time periods", "http://localhost/freeside/browse/rate_time.html", "Time periods define days and hours for rate plans" )); -myMenu66.add(new WebFXMenuItem("Edit rates with Excel", "http://localhost/freeside/misc/rate_edit_excel.html", "Download and edit rates with Excel, then upload changes." )); -myMenu66.add(new WebFXMenuSeparator()); -myMenu66.add(new WebFXMenuItem("Tiering plans", "http://localhost/freeside/browse/rate_tier.html", "Rating tiers" )); -myMenu66.width = 256; - -myMenu65.add(new WebFXMenuItem("Call rates and regions", null, "Manage rate plans, regions and prefixes for VoIP and call billing", myMenu66 )); -myMenu65.add(new WebFXMenuSeparator()); -myMenu65.add(new WebFXMenuItem("Locales and tax rates", "http://localhost/freeside/browse/cust_main_county.cgi", "Change tax rates, or break down a country into states, or a state into counties and assign different tax rates to each" )); -myMenu65.add(new WebFXMenuItem("Tax classes", "http://localhost/freeside/browse/part_pkg_taxclass.html", "Tax classes" )); -myMenu65.add(new WebFXMenuSeparator()); -myMenu65.add(new WebFXMenuItem("Credit reasons", "http://localhost/freeside/browse/reason.html?class=R", "Credit reasons explain why a credit was issued." )); -myMenu65.add(new WebFXMenuItem("Credit reason types", "http://localhost/freeside/browse/reason_type.html?class=R", "Credit reason types define groups of reasons." )); -myMenu65.add(new WebFXMenuSeparator()); -myMenu65.add(new WebFXMenuItem("Refund reasons", "http://localhost/freeside/browse/reason.html?class=F", "Refund reasons explain why a refund was issued." )); -myMenu65.add(new WebFXMenuItem("Refund reason types", "http://localhost/freeside/browse/reason_type.html?class=F", "Refund reason types define groups of reasons." )); -myMenu65.width = 256; - -myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); -myMenu48.add(new WebFXMenuSeparator()); -var myMenu67 = new WebFXMenu; -myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); -myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); -myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); -myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); -myMenu67.add(new WebFXMenuItem("Inventory classes and inventory", "http://localhost/freeside/browse/inventory_class.html", "Setup inventory classes and stock inventory" )); -myMenu67.add(new WebFXMenuItem("Upload targets", "http://localhost/freeside/browse/upload_target.html", "Billing and payment upload destinations" )); -myMenu67.width = 256; - -myMenu48.add(new WebFXMenuItem("Miscellaneous", null, "", myMenu67 )); -myMenu48.width = 256; - - myBar.add(new WebFXMenuButton('Configuration', null, 'Configuration and setup', myMenu48 )); - - - var myMenu68 = new WebFXMenu; -myMenu68.emptyText = ''; -myMenu68.add(new WebFXMenuItem("Billing documentation", "http://www.freeside.biz/mediawiki/index.php/Freeside:4:Documentation", "Freeside documentation" )); -myMenu68.add(new WebFXMenuItem("Ticketing documentation", "http://wiki.bestpractical.com/", "Request Tracker Wiki" )); -myMenu68.add(new WebFXMenuSeparator()); -myMenu68.add(new WebFXMenuItem("About Freeside v5.0git", "javascript:about_freeside()", "" )); -myMenu68.add(new WebFXMenuItem("About RT v4.2.11", "http://www.bestpractical.com/rt", "Request Tracker Homepage" )); -myMenu68.width = 256; - - myBar.add(new WebFXMenuButton('Help', null, '', myMenu68 )); - - - myBar.show( null, 'vertical' ); - myBar.width = 154; - -</SCRIPT> - - - - - <link rel="stylesheet" href="http://localhost/freeside/elements/jquery-ui.min.css"> - <SCRIPT SRC="http://localhost/freeside/elements/jquery.js"></SCRIPT> - <SCRIPT SRC="http://localhost/freeside/elements/jquery-ui.min.js"></SCRIPT> - <SCRIPT TYPE="text/javascript" SRC="http://localhost/freeside/elements/overlibmws.js"></SCRIPT> - <SCRIPT TYPE="text/javascript" SRC="http://localhost/freeside/elements/overlibmws_iframe.js"></SCRIPT> - <SCRIPT TYPE="text/javascript" SRC="http://localhost/freeside/elements/overlibmws_draggable.js"></SCRIPT> - <SCRIPT TYPE="text/javascript" SRC="http://localhost/freeside/elements/overlibmws_crossframe.js"></SCRIPT> - <SCRIPT TYPE="text/javascript" SRC="http://localhost/freeside/elements/iframecontentmws.js"></SCRIPT> - <SCRIPT TYPE="text/javascript" SRC="http://localhost/freeside/elements/ajaxcontentmws.js"></SCRIPT> - - <SCRIPT TYPE="text/javascript"> - - function rs_init_object() { - var A; - try { - A=new ActiveXObject("Msxml2.XMLHTTP"); - } catch (e) { - try { - A=new ActiveXObject("Microsoft.XMLHTTP"); - } catch (oc) { - A=null; - } - } - if(!A && typeof XMLHttpRequest != "undefined") - A = new XMLHttpRequest(); - if (!A) - alert("Can't create XMLHttpRequest object"); - return A; - - } - -</SCRIPT> - - - - - </HEAD> - <BODY BGCOLOR="#f8f8f8" STYLE="margin-top:0; margin-bottom:0; margin-left:0px; margin-right:0px"> - <table width="100%" CELLPADDING=0 CELLSPACING=0 STYLE="padding-left:0px; padding-right:4px" CLASS="fshead"> - <tr> - <td BGCOLOR="#ffffff"><IMG BORDER=0 ALT="freeside" HEIGHT="36" SRC="http://localhost/freeside/view/REAL_logo.cgi"></td> - <td align=left BGCOLOR="#ffffff"> <!-- valign="top" --> - <font size=6>Freeside Test 5.0.1</font> - </td> - <td align=right valign=top BGCOLOR="#ffffff"><FONT SIZE="-1">Logged in as <b>test </b> <FONT SIZE="-2"><a href="http://localhost/freeside/loginout/logout.html">logout</a></FONT><br></FONT><FONT SIZE="-2"><a href="http://localhost/freeside/pref/pref.html" STYLE="color: #000000">Preferences</a> - <BR></FONT> - </td> - </tr> - </table> - - <TABLE WIDTH="100%" CELLSPACING=0 CELLPADDING=0> - -<link href="http://localhost/freeside/elements/freeside-menu.css" type="text/css" rel="stylesheet"> - - - <TR CLASS="fsmenubar"> - - - <TD COLSPAN="7" WIDTH="100%" STYLE="padding:1px 0px 0px 0px;border-top: 1px solid #7e0079" BGCOLOR="#dddddd"> - <SCRIPT TYPE="text/javascript"> - document.write(myBar); - </SCRIPT> - </TD> - - </TR> - - <TR CLASS="fssearchbar"> - - <TD COLSPAN=1 BGCOLOR="#dddddd" ALIGN="right" STYLE="padding-left:2px"> - - <FORM ACTION="http://localhost/freeside/search/prospect_main.html" METHOD="GET" STYLE="margin:0"> - <INPUT NAME="search_prospect" TYPE="text" VALUE="(name, company or phone)" STYLE="width:155px" onFocus="clearhint_search_prospect(this);" onClick="clearhint_search_prospect(this);" CLASS="fstext"><BR> - <A HREF="http://localhost/freeside/search/report_prospect_main.html" CLASS="fslink" STYLE="font-size: 11px">Adv</A> - <INPUT TYPE="submit" VALUE="Search prospects" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px;padding-left:1px;padding-right:1px"> - </FORM> - - - -<SCRIPT TYPE="text/javascript"> - - function clearhint_search_prospect (what) { - if ( what.value == '(name, company or phone)' ) - what.value = ''; - } - -</SCRIPT> - - </TD> - - <TD COLSPAN=1 BGCOLOR="#dddddd" ALIGN="right" STYLE="padding-left:2px"> - - <FORM ACTION="http://localhost/freeside/search/cust_main.cgi" METHOD="POST" STYLE="margin:0"> - <INPUT NAME="search_cust" TYPE="text" VALUE="(cust #, name, company or contact phone)" STYLE="width:246px" onFocus="clearhint_search_cust(this);" onClick="clearhint_search_cust(this);" CLASS="fstext"><BR> - <A HREF="http://localhost/freeside/search/report_cust_main.html" CLASS="fslink" STYLE="font-size: 11px">Advanced</A> - <INPUT TYPE="submit" VALUE="Search customers" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px"> - </FORM> - - - -<SCRIPT TYPE="text/javascript"> - - function clearhint_search_cust (what) { - if ( what.value == '(cust #, name, company or contact phone)' ) - what.value = ''; - } - -</SCRIPT> - - </TD> - - <TD COLSPAN=1 BGCOLOR="#dddddd" ALIGN="center"> - -<SCRIPT TYPE="text/javascript"> - - function clearhint_search_address2 (what) { - if ( what.value == '(Unit #)' ) - what.value = ''; - } - -</SCRIPT> - - </TD> - - <TD COLSPAN=1 BGCOLOR="#dddddd" ALIGN="right"> - - <FORM ACTION="http://localhost/freeside/search/cust_bill.html" METHOD="GET" STYLE="margin:0;display:inline"> - <INPUT NAME="invnum" TYPE="text" VALUE="(inv #)" STYLE="width:56px" onFocus="clearhint_search_invoice(this);" onClick="clearhint_search_invoice(this);" CLASS="fstext"> - <A HREF="http://localhost/freeside/search/report_cust_bill.html" CLASS="fslink" STYLE="font-size: 11px">Adv</A> <BR> - <INPUT TYPE="submit" VALUE="Search invoices" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px;padding-left:1px;padding-right:1px;margin-top:3px"> - </FORM> - - - -<SCRIPT TYPE="text/javascript"> - - function clearhint_search_invoice (what) { - if ( what.value == '(inv #)' ) - what.value = ''; - } - -</SCRIPT> - - </TD> - - <TD COLSPAN=1 BGCOLOR="#dddddd" ALIGN="right" STYLE="padding-left:2px"> - - <FORM ACTION="http://localhost/freeside/search/cust_svc.html" METHOD="GET" STYLE="margin:0"> - <INPUT NAME="search_svc" TYPE="text" VALUE="(user, email, ip, mac, domain or service phone)" STYLE="width:271px" onFocus="clearhint_search_svc(this);" onClick="clearhint_search_svc(this);" CLASS="fstext"><BR> - <A NOTYET="http://localhost/freeside/search/svc_Smarter.html" STYLE="color: #cccccc; font-size:11px">Advanced</A> - <INPUT TYPE="submit" VALUE="Search services" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px"> - </FORM> - - - -<SCRIPT TYPE="text/javascript"> - - function clearhint_search_svc (what) { - if ( what.value == '(user, email, ip, mac, domain or service phone)' ) - what.value = ''; - } - -</SCRIPT> - - </TD> - - <TD COLSPAN=1 BGCOLOR="#dddddd" ALIGN="right" STYLE="padding-left:2px;padding-right:2px"> - - <FORM ACTION="http://localhost/freeside//rt/index.html" METHOD="GET" STYLE="margin:0"> - <INPUT NAME="q" TYPE="text" VALUE="(ticket #, subject, email or fulltext:text)" STYLE="width:223px" onFocus="clearhint_search_ticket(this);" onClick="clearhint_search_ticket(this);" CLASS="fstext"><BR> - <A HREF="http://localhost/freeside//rt/Search/Build.html?NewQuery=1" CLASS="fslink" STYLE="font-size:11px">Advanced</A> - <INPUT TYPE="submit" VALUE="Search tickets" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px"> - </FORM> - - - -<SCRIPT TYPE="text/javascript"> - - function clearhint_search_ticket (what) { - if ( what.value == '(ticket #, subject, email or fulltext:text)' ) - what.value = ''; - } - -</SCRIPT> - - </TD> - - </TR> - </TABLE> - - - - <TABLE WIDTH="100%" HEIGHT="100%" CELLSPACING=0 CELLPADDING=4> - - <TR HEIGHT="100%"> - - <BR> - <TD CLASS="background" HEIGHT="100%" VALIGN="top"> <!-- WIDTH="100%"> --> - - <H1> - Package Search Results - </H1> - - <BR> - - - - - - - <A HREF="javascript:void(0);" - onClick="overlib( OLiframeContent('http://localhost/freeside/misc/bulk_change_pkg.cgi?', 569, 210, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Change Packages', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', FGCOLOR, '#f8f8f8', CLOSETEXT, 'Close'); return false;" - - - ->Change these packages</A><BR><A HREF="http://localhost/freeside/misc/email-customers.html?table=cust_pkg&agent_virt_agentnum=&query=1">Email a notice to these customers</A> - -<BR><BR> - - - - <TABLE> - <TR> - - <TD VALIGN="bottom"> - - <FORM> - - 601 total packages - - - ( show <SELECT NAME="maxrecords" onChange="window.location = 'http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=' + this.options[this.selectedIndex].value;"> - - <OPTION VALUE="100" SELECTED>100</OPTION> - <OPTION VALUE="500" >500</OPTION> - <OPTION VALUE="1000" >1000</OPTION> - <OPTION VALUE="2500" >2500</OPTION> - - </SELECT> per page ) - - - <BR> - - </FORM> - - </TD> - - - <TD ALIGN="right" CLASS="noprint"> - - Download full results<BR> - - as <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=packages.xls">Excel spreadsheet</A><BR> - - as <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=csv">CSV file</A><BR> - - - as <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html-print">printable copy</A> - - </TD> - - </TR> - <TR> - <TD COLSPAN=2> - - - - <FONT SIZE="+2">1</FONT> - - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=100">2</A> - - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=200">3</A> - - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=300">4</A> - - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=400">5</A> - - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=500">6</A> - - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=600">7</A> - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=100"><B><FONT SIZE="+1">Next</FONT></B></A> - - - - - - - -<TABLE CLASS="grid" CELLSPACING=0 CELLPADDING=0 > - - - - -<THEAD> - - <TR> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "2" - - - - > - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=pkgnum">#</A> - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=quantity">Quan.</A> - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Package - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=classname">Class</A> - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Status - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=salesperson">Sales Person</A> - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=otaker">Ordered by</A> - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Setup - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Base Recur - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Freq. - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Setup - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Last bill - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Next bill - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Adjourn - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Susp. - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Susp. delay - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Expire - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Contract end - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Changed - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Cancel - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Reason - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Cust. Status - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Customer - </TH> - <TH CLASS = "grid" - BGCOLOR = "#cccccc" - ROWSPAN = "1" - - - - > - Services - </TH> - </TR> - - -</THEAD> - -<TBODY> - - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=168;show=packages;fragment=cust_pkg501#cust_pkg501">501</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=168;show=packages;fragment=cust_pkg501#cust_pkg501">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=168;show=packages;fragment=cust_pkg501#cust_pkg501">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Jan 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?168">Cole, Albertha</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?501">24465928708548</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=161;show=packages;fragment=cust_pkg479#cust_pkg479">479</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=161;show=packages;fragment=cust_pkg479#cust_pkg479">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=161;show=packages;fragment=cust_pkg479#cust_pkg479">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 02 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?161">Haley, Schaden and Ebert (Prosacco, Clementina)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?479">7422901680427</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=99;show=packages;fragment=cust_pkg295#cust_pkg295">295</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=99;show=packages;fragment=cust_pkg295#cust_pkg295">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=99;show=packages;fragment=cust_pkg295#cust_pkg295">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 02 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?99">Luettgen-Jacobs (Hintz, Junior)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?295">14991580189167</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=61;show=packages;fragment=cust_pkg179#cust_pkg179">179</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=61;show=packages;fragment=cust_pkg179#cust_pkg179">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=61;show=packages;fragment=cust_pkg179#cust_pkg179">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 02 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?61">Leuschke-Stamm (Dibbert, Betsy)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?179">2189396399</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=88;show=packages;fragment=cust_pkg261#cust_pkg261">261</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=88;show=packages;fragment=cust_pkg261#cust_pkg261">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=88;show=packages;fragment=cust_pkg261#cust_pkg261">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Jan 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?88">Moore, Lina</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?261">5717780937</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=171;show=packages;fragment=cust_pkg511#cust_pkg511">511</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=171;show=packages;fragment=cust_pkg511#cust_pkg511">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=171;show=packages;fragment=cust_pkg511#cust_pkg511">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 02 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?171">Mante LLC (Kessler, Enid)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?511">9686105497</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=69;show=packages;fragment=cust_pkg203#cust_pkg203">203</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=69;show=packages;fragment=cust_pkg203#cust_pkg203">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=69;show=packages;fragment=cust_pkg203#cust_pkg203">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 02 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?69">Moore-Cummerata (DuBuque, Russ)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?203">8632406717</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=185;show=packages;fragment=cust_pkg551#cust_pkg551">551</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=185;show=packages;fragment=cust_pkg551#cust_pkg551">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=185;show=packages;fragment=cust_pkg551#cust_pkg551">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 02 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 02 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?185">Christiansen LLC (Howe, Luis)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?551">5191928764</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=131;show=packages;fragment=cust_pkg391#cust_pkg391">391</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=131;show=packages;fragment=cust_pkg391#cust_pkg391">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=131;show=packages;fragment=cust_pkg391#cust_pkg391">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 03 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?131">Wolff and Sons (Heller, Dagmar)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?391">16892538421</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=105;show=packages;fragment=cust_pkg311#cust_pkg311">311</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=105;show=packages;fragment=cust_pkg311#cust_pkg311">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=105;show=packages;fragment=cust_pkg311#cust_pkg311">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 03 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?105">Barton-Goodwin (Schroeder, Brian)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?311">8239761006014</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=27;show=packages;fragment=cust_pkg79#cust_pkg79">79</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=27;show=packages;fragment=cust_pkg79#cust_pkg79">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=27;show=packages;fragment=cust_pkg79#cust_pkg79">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 03 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?27">Haag-Schumm (Ullrich, Shemar)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?79">8935173249</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=75;show=packages;fragment=cust_pkg223#cust_pkg223">223</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=75;show=packages;fragment=cust_pkg223#cust_pkg223">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=75;show=packages;fragment=cust_pkg223#cust_pkg223">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 03 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?75">Hoeger-Brown (Shields, Serenity)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?223">68981950057600</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=72;show=packages;fragment=cust_pkg213#cust_pkg213">213</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=72;show=packages;fragment=cust_pkg213#cust_pkg213">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=72;show=packages;fragment=cust_pkg213#cust_pkg213">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 03 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?72">Lehner, Ryann</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?213">2636239939</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=111;show=packages;fragment=cust_pkg331#cust_pkg331">331</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=111;show=packages;fragment=cust_pkg331#cust_pkg331">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=111;show=packages;fragment=cust_pkg331#cust_pkg331">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 03 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?111">Treutel, Kuhn and Sipes (Wintheiser, Elyse)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?331">17840460291257</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=15;show=packages;fragment=cust_pkg43#cust_pkg43">43</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=15;show=packages;fragment=cust_pkg43#cust_pkg43">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=15;show=packages;fragment=cust_pkg43#cust_pkg43">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 03 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 03 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?15">Stracke Inc (Kuhlman, Kaya)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?43">7315522562</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=84;show=packages;fragment=cust_pkg249#cust_pkg249">249</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=84;show=packages;fragment=cust_pkg249#cust_pkg249">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=84;show=packages;fragment=cust_pkg249#cust_pkg249">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 04 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 04 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 04 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?84">Pacocha, Matilde</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?249">18235477397</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=120;show=packages;fragment=cust_pkg357#cust_pkg357">357</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=120;show=packages;fragment=cust_pkg357#cust_pkg357">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=120;show=packages;fragment=cust_pkg357#cust_pkg357">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 04 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 04 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 04 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?120">Mante, Demond</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?357">751008639787292</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=39;show=packages;fragment=cust_pkg115#cust_pkg115">115</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=39;show=packages;fragment=cust_pkg115#cust_pkg115">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=39;show=packages;fragment=cust_pkg115#cust_pkg115">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 04 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 04 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 04 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?39">Kunze, Ryan and Dare (Schultz, Jasper)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?115">495453230818559</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=109;show=packages;fragment=cust_pkg323#cust_pkg323">323</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=109;show=packages;fragment=cust_pkg323#cust_pkg323">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=109;show=packages;fragment=cust_pkg323#cust_pkg323">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 04 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 04 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 04 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?109">Lind-Bahringer (Ratke, Roma)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?323">4989851645</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=184;show=packages;fragment=cust_pkg549#cust_pkg549">549</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=184;show=packages;fragment=cust_pkg549#cust_pkg549">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=184;show=packages;fragment=cust_pkg549#cust_pkg549">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 05 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 05 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 05 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?184">Hudson, Stephanie</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?549">87252993767044</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=45;show=packages;fragment=cust_pkg131#cust_pkg131">131</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=45;show=packages;fragment=cust_pkg131#cust_pkg131">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=45;show=packages;fragment=cust_pkg131#cust_pkg131">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 05 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 05 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 05 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?45">Shanahan LLC (Brown, Ceasar)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?131">4508409161</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=125;show=packages;fragment=cust_pkg371#cust_pkg371">371</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=125;show=packages;fragment=cust_pkg371#cust_pkg371">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=125;show=packages;fragment=cust_pkg371#cust_pkg371">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Jan 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?125">Kuhlman, Quitzon and Greenholt (Quitzon, Ophelia)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?371">15363386908</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=93;show=packages;fragment=cust_pkg275#cust_pkg275">275</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=93;show=packages;fragment=cust_pkg275#cust_pkg275">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=93;show=packages;fragment=cust_pkg275#cust_pkg275">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 06 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?93">Dach, Lueilwitz and Koepp (Kovacek, Frank)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?275">1732869050</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=79;show=packages;fragment=cust_pkg235#cust_pkg235">235</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=79;show=packages;fragment=cust_pkg235#cust_pkg235">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=79;show=packages;fragment=cust_pkg235#cust_pkg235">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 06 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?79">Corkery-D'Amore (Wyman, Bethel)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?235">9464935873</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=160;show=packages;fragment=cust_pkg477#cust_pkg477">477</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=160;show=packages;fragment=cust_pkg477#cust_pkg477">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=160;show=packages;fragment=cust_pkg477#cust_pkg477">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 06 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?160">Lakin, Lindsay</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?477">8078845348</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=147;show=packages;fragment=cust_pkg439#cust_pkg439">439</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=147;show=packages;fragment=cust_pkg439#cust_pkg439">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=147;show=packages;fragment=cust_pkg439#cust_pkg439">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 06 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?147">Pfeffer, Shanahan and Cruickshank (Kutch, Rosario)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?439">1214016847277551</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=201;show=packages;fragment=cust_pkg599#cust_pkg599">599</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=201;show=packages;fragment=cust_pkg599#cust_pkg599">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=201;show=packages;fragment=cust_pkg599#cust_pkg599">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Jan 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 06 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?201">Mills, Ziemann and Satterfield (Lang, Cathy)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?599">0806183894522</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=117;show=packages;fragment=cust_pkg347#cust_pkg347">347</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=117;show=packages;fragment=cust_pkg347#cust_pkg347">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=117;show=packages;fragment=cust_pkg347#cust_pkg347">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 07 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 07 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 07 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?117">Bernier-Nader (Hane, Floy)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?347">1894866195856273</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=92;show=packages;fragment=cust_pkg273#cust_pkg273">273</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=92;show=packages;fragment=cust_pkg273#cust_pkg273">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=92;show=packages;fragment=cust_pkg273#cust_pkg273">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Aug 07 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 07 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 07 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?92">Ruecker, Lucious</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?273">16095013569</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=107;show=packages;fragment=cust_pkg319#cust_pkg319">319</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=107;show=packages;fragment=cust_pkg319#cust_pkg319">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=107;show=packages;fragment=cust_pkg319#cust_pkg319">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 07 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 07 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 07 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?107">Hessel and Sons (Zemlak, Kaya)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?319">13810128409238</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=103;show=packages;fragment=cust_pkg307#cust_pkg307">307</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=103;show=packages;fragment=cust_pkg307#cust_pkg307">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=103;show=packages;fragment=cust_pkg307#cust_pkg307">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Aug 08 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?103">Roberts-Schinner (Flatley, Amelia)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?307">4593519604</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=108;show=packages;fragment=cust_pkg321#cust_pkg321">321</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=108;show=packages;fragment=cust_pkg321#cust_pkg321">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=108;show=packages;fragment=cust_pkg321#cust_pkg321">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 08 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?108">Emmerich, Neil</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?321">25963062543138</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=128;show=packages;fragment=cust_pkg381#cust_pkg381">381</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=128;show=packages;fragment=cust_pkg381#cust_pkg381">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=128;show=packages;fragment=cust_pkg381#cust_pkg381">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 08 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?128">Powlowski, Veda</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?381">3911632965</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=144;show=packages;fragment=cust_pkg429#cust_pkg429">429</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=144;show=packages;fragment=cust_pkg429#cust_pkg429">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=144;show=packages;fragment=cust_pkg429#cust_pkg429">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 08 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?144">Frami, Miller</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?429">33762771108367</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=173;show=packages;fragment=cust_pkg515#cust_pkg515">515</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=173;show=packages;fragment=cust_pkg515#cust_pkg515">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=173;show=packages;fragment=cust_pkg515#cust_pkg515">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 08 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?173">Mraz LLC (Labadie, Trisha)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?515">14527731997</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=65;show=packages;fragment=cust_pkg191#cust_pkg191">191</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=65;show=packages;fragment=cust_pkg191#cust_pkg191">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=65;show=packages;fragment=cust_pkg191#cust_pkg191">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 08 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?65">O'Reilly-Mraz (Pagac, Kennedi)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?191">078151255309299</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=156;show=packages;fragment=cust_pkg465#cust_pkg465">465</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=156;show=packages;fragment=cust_pkg465#cust_pkg465">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=156;show=packages;fragment=cust_pkg465#cust_pkg465">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 08 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?156">Upton, Otho</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?465">2646555583</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=49;show=packages;fragment=cust_pkg143#cust_pkg143">143</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=49;show=packages;fragment=cust_pkg143#cust_pkg143">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=49;show=packages;fragment=cust_pkg143#cust_pkg143">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 08 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?49">Bernhard LLC (Hintz, Winston)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?143">95994707748468</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=96;show=packages;fragment=cust_pkg285#cust_pkg285">285</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=96;show=packages;fragment=cust_pkg285#cust_pkg285">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=96;show=packages;fragment=cust_pkg285#cust_pkg285">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 08 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 08 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?96">Muller, Kenyatta</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?285">3521080416</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=31;show=packages;fragment=cust_pkg91#cust_pkg91">91</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=31;show=packages;fragment=cust_pkg91#cust_pkg91">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=31;show=packages;fragment=cust_pkg91#cust_pkg91">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 09 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 09 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 09 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?31">Kuhn-Ruecker (Nienow, Kacie)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?91">1535633738761521</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=119;show=packages;fragment=cust_pkg355#cust_pkg355">355</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=119;show=packages;fragment=cust_pkg355#cust_pkg355">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=119;show=packages;fragment=cust_pkg355#cust_pkg355">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Aug 09 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 09 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 09 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?119">Runolfsson, Roob and Hoppe (Bergstrom, Esteban)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?355">15790441533145</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=24;show=packages;fragment=cust_pkg69#cust_pkg69">69</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=24;show=packages;fragment=cust_pkg69#cust_pkg69">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=24;show=packages;fragment=cust_pkg69#cust_pkg69">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 10 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 10 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 10 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?24">Conn, Marisol</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?69">19732087174151</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=197;show=packages;fragment=cust_pkg587#cust_pkg587">587</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=197;show=packages;fragment=cust_pkg587#cust_pkg587">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=197;show=packages;fragment=cust_pkg587#cust_pkg587">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 10 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 10 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 10 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?197">Ryan and Sons (Bashirian, Bert)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?587">6566177741620</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=3;show=packages;fragment=cust_pkg7#cust_pkg7">7</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=3;show=packages;fragment=cust_pkg7#cust_pkg7">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=3;show=packages;fragment=cust_pkg7#cust_pkg7">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 10 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 10 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 10 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?3">Flatley-Hagenes (Donnelly, Odessa)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?7">19671718037</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=67;show=packages;fragment=cust_pkg199#cust_pkg199">199</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=67;show=packages;fragment=cust_pkg199#cust_pkg199">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=67;show=packages;fragment=cust_pkg199#cust_pkg199">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 10 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 10 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 10 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?67">Schultz, Hyatt and Ruecker (Yundt, Berta)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?199">14559187832</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=191;show=packages;fragment=cust_pkg571#cust_pkg571">571</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=191;show=packages;fragment=cust_pkg571#cust_pkg571">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=191;show=packages;fragment=cust_pkg571#cust_pkg571">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 10 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 10 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 10 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?191">Walker Inc (Block, Felix)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?571">9749671732</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=33;show=packages;fragment=cust_pkg95#cust_pkg95">95</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=33;show=packages;fragment=cust_pkg95#cust_pkg95">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=33;show=packages;fragment=cust_pkg95#cust_pkg95">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 11 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 11 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 11 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?33">Buckridge, Spinka and Gerlach (Larkin, Lue)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?95">1076194311</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=140;show=packages;fragment=cust_pkg417#cust_pkg417">417</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=140;show=packages;fragment=cust_pkg417#cust_pkg417">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=140;show=packages;fragment=cust_pkg417#cust_pkg417">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 11 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 11 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 11 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?140">Cremin, Aliya</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?417">67497022590689</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=100;show=packages;fragment=cust_pkg297#cust_pkg297">297</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=100;show=packages;fragment=cust_pkg297#cust_pkg297">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=100;show=packages;fragment=cust_pkg297#cust_pkg297">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 12 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?100">Dibbert, Roman</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?297">7801192536</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=113;show=packages;fragment=cust_pkg335#cust_pkg335">335</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=113;show=packages;fragment=cust_pkg335#cust_pkg335">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=113;show=packages;fragment=cust_pkg335#cust_pkg335">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 12 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?113">Paucek, Swaniawski and Carter (DuBuque, Freda)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?335">17561074962584</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=13;show=packages;fragment=cust_pkg35#cust_pkg35">35</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=13;show=packages;fragment=cust_pkg35#cust_pkg35">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=13;show=packages;fragment=cust_pkg35#cust_pkg35">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 12 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?13">Feest, Bechtelar and Harber (Douglas, Geovany)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?35">4609716945803</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=59;show=packages;fragment=cust_pkg175#cust_pkg175">175</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=59;show=packages;fragment=cust_pkg175#cust_pkg175">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=59;show=packages;fragment=cust_pkg175#cust_pkg175">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 12 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?59">Simonis Inc (Runolfsson, Kareem)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?175">6741985321</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=55;show=packages;fragment=cust_pkg163#cust_pkg163">163</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=55;show=packages;fragment=cust_pkg163#cust_pkg163">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=55;show=packages;fragment=cust_pkg163#cust_pkg163">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 12 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?55">Wiegand-Kohler (Murray, Amparo)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?163">85524284918759</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=132;show=packages;fragment=cust_pkg393#cust_pkg393">393</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=132;show=packages;fragment=cust_pkg393#cust_pkg393">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=132;show=packages;fragment=cust_pkg393#cust_pkg393">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 12 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?132">Kris, Josie</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?393">6110246771</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=145;show=packages;fragment=cust_pkg431#cust_pkg431">431</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=145;show=packages;fragment=cust_pkg431#cust_pkg431">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=145;show=packages;fragment=cust_pkg431#cust_pkg431">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 12 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 12 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?145">Zboncak, Schmidt and Howell (Pouros, Robb)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?431">3839925171</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=5;show=packages;fragment=cust_pkg11#cust_pkg11">11</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=5;show=packages;fragment=cust_pkg11#cust_pkg11">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=5;show=packages;fragment=cust_pkg11#cust_pkg11">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Jan 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?5">Watsica-Crooks (Will, Marguerite)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?11">7941182146</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=80;show=packages;fragment=cust_pkg237#cust_pkg237">237</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=80;show=packages;fragment=cust_pkg237#cust_pkg237">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=80;show=packages;fragment=cust_pkg237#cust_pkg237">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 13 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?80">Jakubowski, Jarrell</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?237">10163759294554</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=187;show=packages;fragment=cust_pkg559#cust_pkg559">559</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=187;show=packages;fragment=cust_pkg559#cust_pkg559">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=187;show=packages;fragment=cust_pkg559#cust_pkg559">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 13 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?187">Hegmann, Kessler and Gibson (Roob, Henderson)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?559">49053079571982</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=133;show=packages;fragment=cust_pkg395#cust_pkg395">395</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=133;show=packages;fragment=cust_pkg395#cust_pkg395">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=133;show=packages;fragment=cust_pkg395#cust_pkg395">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Jan 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?133">Kirlin-Feest (Aufderhar, Trisha)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?395">34512365885294</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=40;show=packages;fragment=cust_pkg117#cust_pkg117">117</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=40;show=packages;fragment=cust_pkg117#cust_pkg117">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=40;show=packages;fragment=cust_pkg117#cust_pkg117">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 13 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?40">Brekke, Tillman</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?117">158607899401245</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=28;show=packages;fragment=cust_pkg81#cust_pkg81">81</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=28;show=packages;fragment=cust_pkg81#cust_pkg81">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=28;show=packages;fragment=cust_pkg81#cust_pkg81">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 13 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?28">Hackett, Garnet</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?81">152553597965486</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=153;show=packages;fragment=cust_pkg455#cust_pkg455">455</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=153;show=packages;fragment=cust_pkg455#cust_pkg455">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=153;show=packages;fragment=cust_pkg455#cust_pkg455">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 13 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?153">Lind Group (Padberg, Irving)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?455">7002098074566</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=179;show=packages;fragment=cust_pkg535#cust_pkg535">535</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=179;show=packages;fragment=cust_pkg535#cust_pkg535">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=179;show=packages;fragment=cust_pkg535#cust_pkg535">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 13 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 13 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?179">Conn-McLaughlin (O'Connell, Gayle)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?535">6049664310378</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=16;show=packages;fragment=cust_pkg45#cust_pkg45">45</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=16;show=packages;fragment=cust_pkg45#cust_pkg45">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=16;show=packages;fragment=cust_pkg45#cust_pkg45">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 14 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 14 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 14 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?16">McDermott, Alejandra</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?45">5473351513</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=127;show=packages;fragment=cust_pkg379#cust_pkg379">379</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=127;show=packages;fragment=cust_pkg379#cust_pkg379">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=127;show=packages;fragment=cust_pkg379#cust_pkg379">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 14 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 14 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 14 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?127">Langosh, Shanahan and Huels (Morissette, Florence)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?379">5869395581</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=165;show=packages;fragment=cust_pkg491#cust_pkg491">491</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=165;show=packages;fragment=cust_pkg491#cust_pkg491">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=165;show=packages;fragment=cust_pkg491#cust_pkg491">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Jan 14 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 14 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 14 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?165">DuBuque, Romaguera and Hagenes (Rempel, Levi)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?491">0970039499</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=149;show=packages;fragment=cust_pkg443#cust_pkg443">443</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=149;show=packages;fragment=cust_pkg443#cust_pkg443">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=149;show=packages;fragment=cust_pkg443#cust_pkg443">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 14 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 14 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 14 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?149">O'Keefe Inc (Schamberger, Felix)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?443">8366310646</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=157;show=packages;fragment=cust_pkg467#cust_pkg467">467</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=157;show=packages;fragment=cust_pkg467#cust_pkg467">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=157;show=packages;fragment=cust_pkg467#cust_pkg467">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Aug 14 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 14 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 14 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?157">Weimann Inc (Cartwright, Judah)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?467">5876977314592</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=87;show=packages;fragment=cust_pkg259#cust_pkg259">259</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=87;show=packages;fragment=cust_pkg259#cust_pkg259">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=87;show=packages;fragment=cust_pkg259#cust_pkg259">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Aug 15 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 15 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 15 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?87">Kozey and Sons (Vandervort, Harmon)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?259">106766405260980</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=104;show=packages;fragment=cust_pkg309#cust_pkg309">309</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=104;show=packages;fragment=cust_pkg309#cust_pkg309">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=104;show=packages;fragment=cust_pkg309#cust_pkg309">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Jan 15 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 15 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 15 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?104">Stanton, Christop</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?309">18561234265014</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=68;show=packages;fragment=cust_pkg201#cust_pkg201">201</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=68;show=packages;fragment=cust_pkg201#cust_pkg201">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=68;show=packages;fragment=cust_pkg201#cust_pkg201">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 15 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 15 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 15 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?68">Nikolaus, Katelyn</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?201">13116773370</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=12;show=packages;fragment=cust_pkg33#cust_pkg33">33</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=12;show=packages;fragment=cust_pkg33#cust_pkg33">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=12;show=packages;fragment=cust_pkg33#cust_pkg33">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Jan 16 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 16 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 16 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?12">Kuhlman, Niko</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?33">14745441565</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=21;show=packages;fragment=cust_pkg59#cust_pkg59">59</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=21;show=packages;fragment=cust_pkg59#cust_pkg59">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=21;show=packages;fragment=cust_pkg59#cust_pkg59">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 16 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 16 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 16 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?21">Zemlak and Sons (Swift, Maximilian)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?59">5055483796977</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=35;show=packages;fragment=cust_pkg103#cust_pkg103">103</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=35;show=packages;fragment=cust_pkg103#cust_pkg103">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=35;show=packages;fragment=cust_pkg103#cust_pkg103">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 16 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 16 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 16 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?35">Bahringer LLC (Frami, Roslyn)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?103">19242934458</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=123;show=packages;fragment=cust_pkg367#cust_pkg367">367</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=123;show=packages;fragment=cust_pkg367#cust_pkg367">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=123;show=packages;fragment=cust_pkg367#cust_pkg367">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 17 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 17 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 17 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?123">Zulauf-Schiller (Jacobs, Angelina)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?367">4942001551</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=63;show=packages;fragment=cust_pkg187#cust_pkg187">187</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=63;show=packages;fragment=cust_pkg187#cust_pkg187">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=63;show=packages;fragment=cust_pkg187#cust_pkg187">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 17 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 17 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 17 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?63">Luettgen LLC (Grant, Grover)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?187">4415242593</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=151;show=packages;fragment=cust_pkg451#cust_pkg451">451</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=151;show=packages;fragment=cust_pkg451#cust_pkg451">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=151;show=packages;fragment=cust_pkg451#cust_pkg451">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 17 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 17 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 17 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?151">Leannon-Crona (Schuster, Cierra)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?451">3037362335</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=152;show=packages;fragment=cust_pkg453#cust_pkg453">453</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=152;show=packages;fragment=cust_pkg453#cust_pkg453">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=152;show=packages;fragment=cust_pkg453#cust_pkg453">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 17 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 17 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 17 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?152">Klocko, Fleta</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?453">5389770549</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=77;show=packages;fragment=cust_pkg227#cust_pkg227">227</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=77;show=packages;fragment=cust_pkg227#cust_pkg227">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=77;show=packages;fragment=cust_pkg227#cust_pkg227">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 18 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?77">Kunze Inc (Ernser, Coralie)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?227">2280817547</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=83;show=packages;fragment=cust_pkg247#cust_pkg247">247</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=83;show=packages;fragment=cust_pkg247#cust_pkg247">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=83;show=packages;fragment=cust_pkg247#cust_pkg247">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Aug 18 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?83">Jacobson-Gorczany (Vandervort, Kiley)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?247">2749371736</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=183;show=packages;fragment=cust_pkg547#cust_pkg547">547</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=183;show=packages;fragment=cust_pkg547#cust_pkg547">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=183;show=packages;fragment=cust_pkg547#cust_pkg547">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 18 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?183">Dietrich, Keebler and Dach (Russel, Ivy)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?547">1116321423</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=97;show=packages;fragment=cust_pkg287#cust_pkg287">287</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=97;show=packages;fragment=cust_pkg287#cust_pkg287">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=97;show=packages;fragment=cust_pkg287#cust_pkg287">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Aug 18 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?97">Braun, Rath and Gutkowski (Wilderman, Reyes)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?287">183790150181541</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=116;show=packages;fragment=cust_pkg345#cust_pkg345">345</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=116;show=packages;fragment=cust_pkg345#cust_pkg345">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=116;show=packages;fragment=cust_pkg345#cust_pkg345">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 18 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?116">Konopelski, Barry</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?345">0783009535773</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=163;show=packages;fragment=cust_pkg487#cust_pkg487">487</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=163;show=packages;fragment=cust_pkg487#cust_pkg487">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=163;show=packages;fragment=cust_pkg487#cust_pkg487">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 18 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?163">Fritsch LLC (Jones, Mandy)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?487">8192793749</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=37;show=packages;fragment=cust_pkg107#cust_pkg107">107</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=37;show=packages;fragment=cust_pkg107#cust_pkg107">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=37;show=packages;fragment=cust_pkg107#cust_pkg107">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 18 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 18 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?37">Hodkiewicz-Raynor (Macejkovic, Leann)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?107">6941312477183</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=91;show=packages;fragment=cust_pkg271#cust_pkg271">271</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=91;show=packages;fragment=cust_pkg271#cust_pkg271">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=91;show=packages;fragment=cust_pkg271#cust_pkg271">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Aug 19 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?91">Fay and Sons (Gerhold, Thora)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?271">9519625792</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=89;show=packages;fragment=cust_pkg263#cust_pkg263">263</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=89;show=packages;fragment=cust_pkg263#cust_pkg263">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=89;show=packages;fragment=cust_pkg263#cust_pkg263">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Jan 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?89">Legros Group (Reilly, Mabel)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?263">210371813834331</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=4;show=packages;fragment=cust_pkg9#cust_pkg9">9</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=4;show=packages;fragment=cust_pkg9#cust_pkg9">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=4;show=packages;fragment=cust_pkg9#cust_pkg9">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 19 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?4">Bartoletti, Theodora</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?9">337448915280026</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=25;show=packages;fragment=cust_pkg71#cust_pkg71">71</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=25;show=packages;fragment=cust_pkg71#cust_pkg71">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=25;show=packages;fragment=cust_pkg71#cust_pkg71">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Aug 19 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?25">Kuhlman-Huels (Parisian, Cristopher)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?71">99158298078002</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=115;show=packages;fragment=cust_pkg343#cust_pkg343">343</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=115;show=packages;fragment=cust_pkg343#cust_pkg343">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=115;show=packages;fragment=cust_pkg343#cust_pkg343">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Dec 19 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?115">Kemmer-O'Connell (Schuster, Alexander)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?343">4441731527</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=20;show=packages;fragment=cust_pkg57#cust_pkg57">57</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=20;show=packages;fragment=cust_pkg57#cust_pkg57">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=20;show=packages;fragment=cust_pkg57#cust_pkg57">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Oct 19 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?20">Weber, Aliza</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?57">215984572910627</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=196;show=packages;fragment=cust_pkg585#cust_pkg585">585</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=196;show=packages;fragment=cust_pkg585#cust_pkg585">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=196;show=packages;fragment=cust_pkg585#cust_pkg585">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 19 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?196">Turcotte, Janessa</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?585">10016834740</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=155;show=packages;fragment=cust_pkg463#cust_pkg463">463</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=155;show=packages;fragment=cust_pkg463#cust_pkg463">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=155;show=packages;fragment=cust_pkg463#cust_pkg463">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 19 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?155">Boyle-Schmeler (Maggio, Fay)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?463">1173141702400720</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=193;show=packages;fragment=cust_pkg575#cust_pkg575">575</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=193;show=packages;fragment=cust_pkg575#cust_pkg575">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=193;show=packages;fragment=cust_pkg575#cust_pkg575">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Jan 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 19 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?193">Johnston Group (Adams, Audreanne)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?575">2786062985022</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=43;show=packages;fragment=cust_pkg127#cust_pkg127">127</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=43;show=packages;fragment=cust_pkg127#cust_pkg127">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=43;show=packages;fragment=cust_pkg127#cust_pkg127">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Aug 20 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 20 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 20 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?43">Leannon-Pfannerstill (O'Keefe, Bernie)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?127">5260896063</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=101;show=packages;fragment=cust_pkg299#cust_pkg299">299</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=101;show=packages;fragment=cust_pkg299#cust_pkg299">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=101;show=packages;fragment=cust_pkg299#cust_pkg299">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 20 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 20 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 20 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?101">Flatley, Yundt and Pacocha (Volkman, Tabitha)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?299">2964457155392</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=53;show=packages;fragment=cust_pkg155#cust_pkg155">155</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=53;show=packages;fragment=cust_pkg155#cust_pkg155">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=53;show=packages;fragment=cust_pkg155#cust_pkg155">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 20 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 20 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 20 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?53">Balistreri-Schoen (Schultz, Jaylan)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?155">261457560511658</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=48;show=packages;fragment=cust_pkg141#cust_pkg141">141</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=48;show=packages;fragment=cust_pkg141#cust_pkg141">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=48;show=packages;fragment=cust_pkg141#cust_pkg141">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 21 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 21 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 21 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?48">Mohr, Florine</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?141">5805430204</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row0"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=32;show=packages;fragment=cust_pkg93#cust_pkg93">93</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=32;show=packages;fragment=cust_pkg93#cust_pkg93">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=32;show=packages;fragment=cust_pkg93#cust_pkg93">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Sep 21 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 21 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 21 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?32">Swaniawski, Adrienne</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?93">7091741436337</A></td></tr></table></TD> - - - </TR> - - <TR ID="" CLASS="row1"> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=17;show=packages;fragment=cust_pkg47#cust_pkg47">47</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=17;show=packages;fragment=cust_pkg47#cust_pkg47">1</A></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=17;show=packages;fragment=cust_pkg47#cust_pkg47">Monthly anniversary phone x4</A></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 SIZE="-1" ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=center ></TD> - - - - <TD CLASS="grid" ALIGN=center >test</TD> - - - - <TD CLASS="grid" ALIGN=right >$0.00</TD> - - - - <TD CLASS="grid" ALIGN=right >$60.00</TD> - - - - <TD CLASS="grid" ALIGN=left >monthly</TD> - - - - <TD CLASS="grid" ALIGN=right >Nov 21 2015</TD> - - - - <TD CLASS="grid" ALIGN=right >Feb 21 2016</TD> - - - - <TD CLASS="grid" ALIGN=right >Mar 21 2016</TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=right ></TD> - - - - <TD CLASS="grid" ALIGN=left ></TD> - - - - <TD CLASS="grid" ALIGN=center ><FONT COLOR=#00CC00 ><b>Active</b></FONT></TD> - - - - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?17">Leffler, Abshire and Orn (Hyatt, Reggie)</A></TD> - - - - <TD CLASS="grid" ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">Test svc_phone:</td><TD ALIGN="left"><A HREF="http://localhost/freeside/view/svc_phone.cgi?47">580124349433539</A></td></tr></table></TD> - - - </TR> - - -</TBODY> - -</TABLE> - - - - <FONT SIZE="+2">1</FONT> - - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=100">2</A> - - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=200">3</A> - - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=300">4</A> - - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=400">5</A> - - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=500">6</A> - - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=600">7</A> - - <A HREF="http://localhost/freeside/search/cust_pkg.cgi?keywords=pkgnum;_dummy=1;maxrecords=100;_type=html;offset=100"><B><FONT SIZE="+1">Next</FONT></B></A> - - - - </TD> - </TR> - </TABLE> - - - - - </TD> - </TR> - </TABLE> - </BODY> -</HTML> - - - - - - diff --git a/FS-Test/share/output/search/cust_pkg_churn.html/agentnum=:status=setup:begin=1438412400:end=1441090800:order_by=cust_pkg.pkgnum b/FS-Test/share/output/search/cust_pkg_churn.html/agentnum=:status=setup:begin=1438412400:end=1441090800:order_by=cust_pkg.pkgnum index 92493adbb..b9e53fa57 100644 --- a/FS-Test/share/output/search/cust_pkg_churn.html/agentnum=:status=setup:begin=1438412400:end=1441090800:order_by=cust_pkg.pkgnum +++ b/FS-Test/share/output/search/cust_pkg_churn.html/agentnum=:status=setup:begin=1438412400:end=1441090800:order_by=cust_pkg.pkgnum @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/search/cust_pkg_summary.cgi/beginning=02%2F01%2F2016:ending=02%2F28%2F2016:classnum=0 b/FS-Test/share/output/search/cust_pkg_summary.cgi/beginning=02%2F01%2F2016:ending=02%2F28%2F2016:classnum=0 index 5df716b94..f003efdf8 100644 --- a/FS-Test/share/output/search/cust_pkg_summary.cgi/beginning=02%2F01%2F2016:ending=02%2F28%2F2016:classnum=0 +++ b/FS-Test/share/output/search/cust_pkg_summary.cgi/beginning=02%2F01%2F2016:ending=02%2F28%2F2016:classnum=0 @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/search/h_cust_pkg.html/classnum=0:status=active,suspended:date=1454313600:pkgpart=2 b/FS-Test/share/output/search/h_cust_pkg.html/classnum=0:status=active,suspended:date=1454313600:pkgpart=2 index 404e26af0..1a8264147 100644 --- a/FS-Test/share/output/search/h_cust_pkg.html/classnum=0:status=active,suspended:date=1454313600:pkgpart=2 +++ b/FS-Test/share/output/search/h_cust_pkg.html/classnum=0:status=active,suspended:date=1454313600:pkgpart=2 @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/search/report_receivables.cgi/days=0:as_of=03%2F01%2F2016 b/FS-Test/share/output/search/report_receivables.cgi/days=0:as_of=03%2F01%2F2016 index dc51c8826..413100a94 100644 --- a/FS-Test/share/output/search/report_receivables.cgi/days=0:as_of=03%2F01%2F2016 +++ b/FS-Test/share/output/search/report_receivables.cgi/days=0:as_of=03%2F01%2F2016 @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/search/svc_acct.cgi/magic=all:sortby=username b/FS-Test/share/output/search/svc_acct.cgi/magic=all:sortby=username index 88ac10dde..64f89ba0c 100644 --- a/FS-Test/share/output/search/svc_acct.cgi/magic=all:sortby=username +++ b/FS-Test/share/output/search/svc_acct.cgi/magic=all:sortby=username @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/search/svc_broadband.cgi/magic=advanced:custnum=:agentnum=1:routernum=none:cust_pkg_fields=:cust_fields=:_dummy=1:maxrecords=100:_type=html:offset=0:order_by=ip_addr b/FS-Test/share/output/search/svc_broadband.cgi/magic=advanced:custnum=:agentnum=1:routernum=none:cust_pkg_fields=:cust_fields=:_dummy=1:maxrecords=100:_type=html:offset=0:order_by=ip_addr index 896f7201f..22ffa22b8 100644 --- a/FS-Test/share/output/search/svc_broadband.cgi/magic=advanced:custnum=:agentnum=1:routernum=none:cust_pkg_fields=:cust_fields=:_dummy=1:maxrecords=100:_type=html:offset=0:order_by=ip_addr +++ b/FS-Test/share/output/search/svc_broadband.cgi/magic=advanced:custnum=:agentnum=1:routernum=none:cust_pkg_fields=:cust_fields=:_dummy=1:maxrecords=100:_type=html:offset=0:order_by=ip_addr @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/search/svc_domain.cgi/magic=all:sortby=domain b/FS-Test/share/output/search/svc_domain.cgi/magic=all:sortby=domain index b7df3545a..c38527045 100644 --- a/FS-Test/share/output/search/svc_domain.cgi/magic=all:sortby=domain +++ b/FS-Test/share/output/search/svc_domain.cgi/magic=all:sortby=domain @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/search/svc_phone.cgi/magic=all:sortby=phonenum b/FS-Test/share/output/search/svc_phone.cgi/magic=all:sortby=phonenum index 915073f3f..01ca7a521 100644 --- a/FS-Test/share/output/search/svc_phone.cgi/magic=all:sortby=phonenum +++ b/FS-Test/share/output/search/svc_phone.cgi/magic=all:sortby=phonenum @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/search/unprovisioned_services.html b/FS-Test/share/output/search/unprovisioned_services.html index e0c8d1dc6..af2ca4cea 100644 --- a/FS-Test/share/output/search/unprovisioned_services.html +++ b/FS-Test/share/output/search/unprovisioned_services.html @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/view/cust_bill-tex.cgi/invnum=681:notice_name=Invoice b/FS-Test/share/output/view/cust_bill-tex.cgi/invnum=681:notice_name=Invoice index 7d616f6af..fc9294b20 100644 --- a/FS-Test/share/output/view/cust_bill-tex.cgi/invnum=681:notice_name=Invoice +++ b/FS-Test/share/output/view/cust_bill-tex.cgi/invnum=681:notice_name=Invoice @@ -81,7 +81,7 @@ \begin{tabular}{ll}
\returninset
\begin{tabular}{ll}
- \makebox{ \includegraphics{/usr/local/etc/freeside/cache.DBI:Pg:dbname=freeside/cust_bill.681.aSksR2dX.eps}} &
+ \makebox{ \includegraphics{/usr/local/etc/freeside/cache.DBI:Pg:dbname=freeside/cust_bill.681.XoeuvJBe.eps}} &
\begin{minipage}[b]{5.5cm}
Freeside Test 5.0.1\\* 1234 Example Lane\\* @@ -142,7 +142,7 @@ Freeside Test 5.0.1 \returninset
\makebox{
\begin{tabular}{ll}
- \includegraphics{/usr/local/etc/freeside/cache.DBI:Pg:dbname=freeside/cust_bill.681.aSksR2dX.eps} &
+ \includegraphics{/usr/local/etc/freeside/cache.DBI:Pg:dbname=freeside/cust_bill.681.XoeuvJBe.eps} &
\begin{minipage}[b]{5.5cm}
Freeside Test 5.0.1\\* 1234 Example Lane\\* @@ -152,7 +152,7 @@ Exampleton, CA~~54321\\* }
}
{ % ... pages
- %\includegraphics{/usr/local/etc/freeside/cache.DBI:Pg:dbname=freeside/cust_bill.681.aSksR2dX.eps} % Uncomment if you want the logo on all pages.
+ %\includegraphics{/usr/local/etc/freeside/cache.DBI:Pg:dbname=freeside/cust_bill.681.XoeuvJBe.eps} % Uncomment if you want the logo on all pages.
}
}
diff --git a/FS-Test/share/output/view/cust_bill.cgi/681 b/FS-Test/share/output/view/cust_bill.cgi/681 index 3ffad465f..53e49287f 100644 --- a/FS-Test/share/output/view/cust_bill.cgi/681 +++ b/FS-Test/share/output/view/cust_bill.cgi/681 @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/view/cust_main.cgi/135 b/FS-Test/share/output/view/cust_main.cgi/135 index 011c96f0b..5787fca15 100644 --- a/FS-Test/share/output/view/cust_main.cgi/135 +++ b/FS-Test/share/output/view/cust_main.cgi/135 @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/view/cust_main.cgi/custnum=135:show=change_history b/FS-Test/share/output/view/cust_main.cgi/custnum=135:show=change_history index 6d7fd40e1..0b800d686 100644 --- a/FS-Test/share/output/view/cust_main.cgi/custnum=135:show=change_history +++ b/FS-Test/share/output/view/cust_main.cgi/custnum=135:show=change_history @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/view/cust_main.cgi/custnum=135:show=packages b/FS-Test/share/output/view/cust_main.cgi/custnum=135:show=packages index 132d5f6d0..20a969b89 100644 --- a/FS-Test/share/output/view/cust_main.cgi/custnum=135:show=packages +++ b/FS-Test/share/output/view/cust_main.cgi/custnum=135:show=packages @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/view/cust_main.cgi/custnum=135:show=payment_history b/FS-Test/share/output/view/cust_main.cgi/custnum=135:show=payment_history index 58e3b142c..e1e75c58e 100644 --- a/FS-Test/share/output/view/cust_main.cgi/custnum=135:show=payment_history +++ b/FS-Test/share/output/view/cust_main.cgi/custnum=135:show=payment_history @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=packages b/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=packages index ba5791957..757aa17fe 100644 --- a/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=packages +++ b/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=packages @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -2373,6 +2373,216 @@ function clearhint_search_cust_svc(obj, str) { </TR> + + <!--pkgnum: 602--> + <TR CLASS="row1"> + <TD CLASS="inv package" BGCOLOR="" VALIGN="top"> + + <TABLE CLASS="inv package"> + <TR> + <TD COLSPAN=2> + + <A NAME="cust_pkg602" + ID ="cust_pkg602" + ><B>Test one-time charge</B></A> + - + $100.00 - $100.00 one-time + </TD> + </TR> + + + <TR> + <TD COLSPAN=2> + <FONT SIZE=-1> + + ( <A HREF="javascript:void(0);" + onClick="overlib( OLiframeContent('http://localhost/freeside/edit/quick-charge.html?change_pkgnum=602;pkgnum=602', 690, 440, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Modify package 602', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', FGCOLOR, '#f8f8f8', CLOSETEXT, 'Close'); return false;" + + + +>Modify one-time charge</A> ) + ( <A HREF="javascript:void(0);" + onClick="overlib( OLiframeContent('http://localhost/freeside/edit/cust_pkg_discount.html?pkgnum=602', 616, 336, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Discount package 602', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', FGCOLOR, '#f8f8f8', CLOSETEXT, 'Close'); return false;" + + + +>Discount</A> ) + <BR> + + </FONT> + </TD> + </TR> + + + <TR> + <TD COLSPAN=2> + + + + </TD> + </TR> + + + <TR> + <TD COLSPAN=2> + + + <FONT SIZE="-1"> + ( <A HREF="javascript:void(0);" + onClick="overlib( OLiframeContent('http://localhost/freeside/edit/cust_pkg_salesnum.html?;pkgnum=602', 390, 220, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Change package 602', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', FGCOLOR, '#f8f8f8', CLOSETEXT, 'Close'); return false;" + + + +>Change sales person</A> ) + </FONT> + + </TD> + </TR> + + + + <TR> + + <TD> + <FONT SIZE="-1"> + ( <A HREF="javascript:void(0);" + onClick="overlib( OLiframeContent('http://localhost/freeside/edit/cust_pkg_detail.html?pkgnum=602;detailtype=I', 763, 336, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Add invoice details', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', FGCOLOR, '#f8f8f8', CLOSETEXT, 'Close'); return false;" + + + +>Add invoice details</A> ) + </FONT> + </TD> + + <TD> + <FONT SIZE="-1"> + ( <A HREF="javascript:void(0);" + onClick="overlib( OLiframeContent('http://localhost/freeside/edit/cust_pkg_detail.html?pkgnum=602;detailtype=C', 763, 336, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Add comments', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', FGCOLOR, '#f8f8f8', CLOSETEXT, 'Close'); return false;" + + + +>Add comments</A> ) + </FONT> + </TD> + + </TR> + + + </TABLE> + + + +</TD> + + + <TD CLASS="inv" BGCOLOR="" VALIGN="top"> + <TABLE CLASS="inv" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%"> + + + <TR><TD WIDTH="" ALIGN="right">Ordered </TD><TD align="left"><B>Mar</B></TD><TD align="right"><B> 2nd,</B></TD><TD align="right"><B> 2016</B></TD></TR> + + + <TR><TD COLSPAN=4 >One-time charge</TD></TR> + + <TR><TD WIDTH="" ALIGN="right">Billed </TD><TD align="left"><B>Mar</B></TD><TD align="right"><B> 2nd,</B></TD><TD align="right"><B> 2016</B></TD></TR> + + + + + + + + + + + + + + + + + + + + + + </TABLE> +</TD> + + <TD CLASS="inv" BGCOLOR="" WIDTH="20%" VALIGN="top"> + <FONT SIZE=-1> + ( <A HREF="javascript:void(0);" + onClick="overlib( OLiframeContent('http://localhost/freeside/misc/change_pkg_contact.html?pkgnum=602', 616, 192, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Add contact package 602', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', FGCOLOR, '#f8f8f8', CLOSETEXT, 'Close'); return false;" + + + +>Add contact</A> ) + </FONT> + <BR> + + <DIV STYLE="font-style: italic; font-size: small"> + + Default service location<BR>24866 VonRueden Roads<BR>Floor 94 X<BR>Crown Point CT 59629-7714 + + <BR> + <FONT SIZE=-1> + 38.5000000, -121.5000000 + + +<A HREF="javascript:void(0);" + onClick="overlib( OLiframeContent('http://localhost/freeside/view/map.html?name=Oswald%20Schowalter%3A%20Test%20one-time%20charge;lat=38.5000000;lon=-121.5000000', 763, 575, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Oswald Schowalter: Test one-time charge', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', FGCOLOR, '#f8f8f8', CLOSETEXT, 'Close'); return false;" + + + +>map</A> + + <A HREF="javascript:void(0);" + onClick="overlib( OLiframeContent('http://localhost/freeside/view/directions.html?origin=1234%20Example%20Lane%2CExampleton%2C%20CA%20%2054321;name=Oswald%20Schowalter%3A%20Test%20one-time%20charge;lat=38.5000000;lon=-121.5000000', 763, 575, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Oswald Schowalter: Test one-time charge', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', FGCOLOR, '#f8f8f8', CLOSETEXT, 'Close'); return false;" + + + +>directions</A> + +<A HREF="http://localhost/freeside/view/kml.cgi?name=Oswald%20Schowalter%3A%20Test%20one-time%20charge;lat=38.5000000;lon=-121.5000000">earth</A> + + + </FONT> + + </DIV> + + <BR> + <FONT SIZE=-1> + ( <A HREF="javascript:void(0);" + onClick="overlib( OLiframeContent('http://localhost/freeside/misc/change_pkg.cgi?locationnum=-1;pkgpart=6;address1=;address2=;city=;county=;state=;zip=;country=;pkgnum=602', 960, 490, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Change package 602', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', FGCOLOR, '#f8f8f8', CLOSETEXT, 'Close'); return false;" + + + +>Change location</A> ) + ( <A HREF="javascript:void(0);" + onClick="overlib( OLiframeContent('http://localhost/freeside/edit/cust_location.cgi?locationnum=3', 700, 355, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Edit', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', FGCOLOR, '#f8f8f8', CLOSETEXT, 'Close'); return false;" + + + +>Edit location</A> ) + </FONT> + + </TD> + + <TD CLASS="inv" BGCOLOR=""> + <TABLE CLASS="inv" BORDER=0 CELLSPACING=0 CELLPADDING=2 WIDTH="100%"> + <SCRIPT TYPE="text/javascript"> +function clearhint_search_cust_svc(obj, str) { + if (obj.value == str) obj.value = ''; +} + </SCRIPT> + + + </TABLE> + </TD> + + + </TR> + </TABLE> diff --git a/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=payment_history b/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=payment_history index 36a01b077..8d15d4190 100644 --- a/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=payment_history +++ b/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=payment_history @@ -617,7 +617,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -1620,6 +1620,35 @@ function areyousure(href, message) { </TR> + <TR > + <TD VALIGN="top" CLASS="grid" BGCOLOR="#eeeeee"> + + 03/02/2016 + + </FONT> + </TD> + <TD CLASS="grid" BGCOLOR="#eeeeee"> + <A HREF="http://localhost/freeside/view/cust_bill.cgi?1585"><B><FONT SIZE="+1" COLOR="#FF0000">Open Invoice #1585 (Balance 100.00)</FONT></B></A> + + </TD> + <TD VALIGN="top" ALIGN="right" CLASS="grid" BGCOLOR="#eeeeee"> + $100.00 + </TD> + <TD VALIGN="top" ALIGN="right" CLASS="grid" BGCOLOR="#eeeeee"> + + </TD> + <TD VALIGN="top" ALIGN="right" CLASS="grid" BGCOLOR="#eeeeee"> + + </TD> + <TD VALIGN="top" ALIGN="right" CLASS="grid" BGCOLOR="#eeeeee"> + + </TD> + <TD VALIGN="top" ALIGN="right" CLASS="grid" BGCOLOR="#eeeeee"> + $874.03 + </TD> + </TR> + + </TABLE> </TD> </TR> diff --git a/FS-Test/share/output/view/svc_acct.cgi/406 b/FS-Test/share/output/view/svc_acct.cgi/406 index 32d9a568a..60867f8d4 100644 --- a/FS-Test/share/output/view/svc_acct.cgi/406 +++ b/FS-Test/share/output/view/svc_acct.cgi/406 @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -1015,7 +1015,7 @@ function updateTicketLink() { } </SCRIPT> <A NAME="tickets"><FONT CLASS="fsinnerbox-title">Tickets</FONT></A> -<A id="CreateTicketLink" HREF="http://localhost/freeside//rt/Ticket/Create.html?Requestors=&new-MemberOf=freeside%3A%2F%2Ffreeside%2Fcust_svc%2F406&Queue=1">Create new ticket</A> +<A id="CreateTicketLink" HREF="http://localhost/freeside//rt/Ticket/Create.html?Requestors=&Queue=1&new-MemberOf=freeside%3A%2F%2Ffreeside%2Fcust_svc%2F406">Create new ticket</A> in queue <SELECT NAME="Queue" id="Queue" onchange="updateTicketLink()"> </SELECT> diff --git a/FS-Test/share/output/view/svc_broadband.cgi/401 b/FS-Test/share/output/view/svc_broadband.cgi/401 index 31877d80e..8bf4026f9 100644 --- a/FS-Test/share/output/view/svc_broadband.cgi/401 +++ b/FS-Test/share/output/view/svc_broadband.cgi/401 @@ -634,7 +634,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); diff --git a/FS-Test/share/output/view/svc_domain.cgi/402 b/FS-Test/share/output/view/svc_domain.cgi/402 index 71977b5d2..b930c3c19 100644 --- a/FS-Test/share/output/view/svc_domain.cgi/402 +++ b/FS-Test/share/output/view/svc_domain.cgi/402 @@ -618,7 +618,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -1025,11 +1025,11 @@ Service #<B>402</B> function updateTicketLink() { var link = document.getElementById('CreateTicketLink'); var selector = document.getElementById('Queue') - link.href = "http://localhost/freeside//rt/Ticket/Create.html?new-MemberOf=freeside://freeside/cust_svc/402;Requestors=;Queue=" + selector.options[selector.selectedIndex].value; + link.href = "http://localhost/freeside//rt/Ticket/Create.html?Requestors=;new-MemberOf=freeside://freeside/cust_svc/402;Queue=" + selector.options[selector.selectedIndex].value; } </SCRIPT> <A NAME="tickets"><FONT CLASS="fsinnerbox-title">Tickets</FONT></A> -<A id="CreateTicketLink" HREF="http://localhost/freeside//rt/Ticket/Create.html?Requestors=&Queue=1&new-MemberOf=freeside%3A%2F%2Ffreeside%2Fcust_svc%2F402">Create new ticket</A> +<A id="CreateTicketLink" HREF="http://localhost/freeside//rt/Ticket/Create.html?Requestors=&new-MemberOf=freeside%3A%2F%2Ffreeside%2Fcust_svc%2F402&Queue=1">Create new ticket</A> in queue <SELECT NAME="Queue" id="Queue" onchange="updateTicketLink()"> </SELECT> diff --git a/FS-Test/share/output/view/svc_phone.cgi/403 b/FS-Test/share/output/view/svc_phone.cgi/403 index 8d53bc103..1389fd7eb 100644 --- a/FS-Test/share/output/view/svc_phone.cgi/403 +++ b/FS-Test/share/output/view/svc_phone.cgi/403 @@ -634,7 +634,7 @@ myMenu48.add(new WebFXMenuItem("Billing", null, "", myMenu65 )); myMenu48.add(new WebFXMenuSeparator()); var myMenu67 = new WebFXMenu; myMenu67.emptyText = ''; -myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" )); +myMenu67.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template/email.html", "Templates for customer notices" )); myMenu67.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." )); myMenu67.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" )); myMenu67.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" )); @@ -954,7 +954,7 @@ function areyousure_delete() { </TD> <TD CLASS="content"> - <A HREF="http://localhost/freeside/view/svc_circuit.html?"></A> + <A HREF="http://localhost/freeside/view/svc_circuit.cgi?"></A> </TD> </TR> @@ -977,7 +977,7 @@ function areyousure_delete() { function updateTicketLink() { var link = document.getElementById('CreateTicketLink'); var selector = document.getElementById('Queue') - link.href = "http://localhost/freeside//rt/Ticket/Create.html?new-MemberOf=freeside://freeside/cust_svc/403;Requestors=;Queue=" + selector.options[selector.selectedIndex].value; + link.href = "http://localhost/freeside//rt/Ticket/Create.html?Requestors=;new-MemberOf=freeside://freeside/cust_svc/403;Queue=" + selector.options[selector.selectedIndex].value; } </SCRIPT> <A NAME="tickets"><FONT CLASS="fsinnerbox-title">Tickets</FONT></A> diff --git a/FS-Test/share/ui_tests b/FS-Test/share/ui_tests index 8292ae521..2370a1d9b 100644 --- a/FS-Test/share/ui_tests +++ b/FS-Test/share/ui_tests @@ -1,7 +1,7 @@ # reports menu items search/cust_main.cgi?browse=last -search/cust_bill.html?OPEN90_date -search/cust_bill.html?date +search/cust_bill.html?keywords=OPEN90_date:order_by=invnum +search/cust_bill.html?keywords=date:order_by=invnum search/cust_bill.html?magic=_date&agentnum=1&beginning=&ending=10%2F01%2F2015&charged_lt=&charged_gt=200.00&owed_lt=&owed_gt=&open=1 search/cust_bill_pkg.cgi?agentnum=1&status=&cust_classnum=&beginning=01%2F01%2F2016&ending=01%2F31%2F2016 search/cust_pay.html?magic=_date&unapplied=0&beginning=01%2F01%2F2016&agentnum=1&order_by=paynum |