diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-09-09 17:28:14 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-09-09 17:28:14 -0700 |
commit | e0dd3887a47d291f804d20fb5a47bf1587663160 (patch) | |
tree | e22eea80ff8998228f58df7a8e976d2d1ee93538 | |
parent | aaecb642260b19488b469e57e5b1a11abcd87620 (diff) | |
parent | 75d07cc54b2e54e50bff80203c6065b215ee5d1c (diff) |
no need for scalar
49 files changed, 3512 insertions, 2439 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 cfa1adbc5..3ab8221b9 100755 --- a/FS-Test/bin/freeside-test-start +++ b/FS-Test/bin/freeside-test-start @@ -4,12 +4,15 @@ VERSION='3.8.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 if [ -f /usr/local/etc/freeside/htpasswd ]; then @@ -44,7 +47,7 @@ if [ -f /usr/local/etc/freeside/htpasswd ]; then fi echo "Installing new htpasswd." -sudo cp $sharedir/htpasswd /usr/local/etc/freeside/htpasswd +sudo cp $testroot/share/htpasswd /usr/local/etc/freeside/htpasswd newtime=$(sudo -u freeside \ psql -tc 'SELECT to_timestamp(max(_date) + 86400) FROM cust_bill' \ diff --git a/FS-Test/bin/freeside-test-stop b/FS-Test/bin/freeside-test-stop index 08485f796..5e221a85b 100755 --- a/FS-Test/bin/freeside-test-stop +++ b/FS-Test/bin/freeside-test-stop @@ -38,9 +38,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 8b1523388..be58ce573 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 2b3e34555..4aabefbcf 100644 --- a/FS-Test/share/output/browse/part_pkg.cgi/active=1 +++ b/FS-Test/share/output/browse/part_pkg.cgi/active=1 @@ -1124,7 +1124,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_verbose: </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">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> @@ -1178,7 +1178,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">cutoff_day: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">prorate_verbose: </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 9002503d4..2c56806b4 100644 --- a/FS-Test/share/output/browse/part_svc.cgi/orderby=active +++ b/FS-Test/share/output/browse/part_svc.cgi/orderby=active @@ -955,7 +955,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"> @@ -967,8 +967,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"> @@ -979,8 +979,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"> @@ -991,20 +991,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"> @@ -1015,8 +1016,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"> @@ -1027,8 +1028,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"> @@ -1039,8 +1040,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"> @@ -1063,8 +1064,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"> @@ -1075,7 +1076,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"> @@ -1087,8 +1088,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"> @@ -1099,21 +1100,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"> @@ -1124,8 +1124,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"> @@ -1181,8 +1181,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"> @@ -1193,8 +1193,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"> @@ -1205,8 +1205,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"> @@ -1217,7 +1217,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"> @@ -1229,8 +1229,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"> @@ -1241,7 +1241,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"> @@ -1253,7 +1253,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"> @@ -1265,7 +1265,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"> @@ -1277,8 +1277,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"> @@ -1289,8 +1289,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"> @@ -1334,8 +1334,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"> @@ -1346,8 +1346,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"> @@ -1370,8 +1370,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"> @@ -1382,32 +1382,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"> @@ -1418,8 +1418,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"> @@ -1430,8 +1430,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"> @@ -1442,8 +1442,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"> @@ -1454,8 +1454,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"> @@ -1466,8 +1466,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"> @@ -1478,8 +1478,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"> @@ -1490,8 +1490,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"> @@ -1502,8 +1502,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"> @@ -1514,8 +1514,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"> @@ -1526,32 +1526,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"> @@ -1562,8 +1562,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"> @@ -1607,8 +1607,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"> @@ -1619,20 +1619,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"> @@ -1643,8 +1643,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"> @@ -1655,8 +1655,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"> @@ -1667,8 +1667,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"> @@ -1679,8 +1679,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"> @@ -1691,8 +1691,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"> @@ -1703,8 +1703,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"> @@ -1715,8 +1715,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"> @@ -1727,8 +1727,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"> @@ -1739,8 +1739,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"> @@ -1751,8 +1751,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"> @@ -1763,8 +1763,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"> @@ -1775,8 +1775,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"> @@ -1787,8 +1787,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"> @@ -1799,8 +1799,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"> @@ -1811,8 +1811,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"> @@ -1823,8 +1823,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"> @@ -1835,8 +1835,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"> @@ -1847,20 +1847,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.cgi/135 b/FS-Test/share/output/edit/cust_main.cgi/135 index 36b93f9a8..0eddec9da 100644 --- a/FS-Test/share/output/edit/cust_main.cgi/135 +++ b/FS-Test/share/output/edit/cust_main.cgi/135 @@ -2168,6 +2168,11 @@ myMenu63.width = 256; >United States (US) + <OPTION VALUE="SS" + + > (SS) + + <OPTION VALUE="AF" >Afghanistan (AF) @@ -2305,7 +2310,7 @@ myMenu63.width = 256; <OPTION VALUE="BQ" - >Bonaire, Sint Eustatius and Saba (BQ) + >Bonaire, Saint Eustatius and Saba (BQ) <OPTION VALUE="BA" @@ -2425,7 +2430,7 @@ myMenu63.width = 256; <OPTION VALUE="CD" - >Congo (The Democratic Republic of the) (CD) + >Congo, The Democratic Republic of the (CD) <OPTION VALUE="CK" @@ -2525,7 +2530,7 @@ myMenu63.width = 256; <OPTION VALUE="FK" - >Falkland Islands (The) [Malvinas] (FK) + >Falkland Islands (Malvinas) (FK) <OPTION VALUE="FO" @@ -2650,12 +2655,12 @@ myMenu63.width = 256; <OPTION VALUE="HM" - >Heard Island and McDonald Islands (HM) + >Heard Island and Mcdonald Islands (HM) <OPTION VALUE="VA" - >Holy See (The) [Vatican City State] (VA) + >Holy See (Vatican City State) (VA) <OPTION VALUE="HN" @@ -2690,7 +2695,7 @@ myMenu63.width = 256; <OPTION VALUE="IR" - >Iran, The Islamic Republic of (IR) + >Iran, Islamic Republic of (IR) <OPTION VALUE="IQ" @@ -2755,12 +2760,12 @@ myMenu63.width = 256; <OPTION VALUE="KP" - >Korea, The Democratic People's Republic of (KP) + >Korea, Democratic People's Republic of (KP) <OPTION VALUE="KR" - >Korea, The Republic of (KR) + >Korea, Republic of (KR) <OPTION VALUE="KW" @@ -2800,7 +2805,7 @@ myMenu63.width = 256; <OPTION VALUE="LY" - >Libya (LY) + >Libyan Arab Jamahiriya (LY) <OPTION VALUE="LI" @@ -2825,7 +2830,7 @@ myMenu63.width = 256; <OPTION VALUE="MK" - >Macedonia, The former Yugoslav Republic of (MK) + >Macedonia, The Former Yugoslav Republic of (MK) <OPTION VALUE="MG" @@ -2890,12 +2895,12 @@ myMenu63.width = 256; <OPTION VALUE="FM" - >Micronesia, The Federated States of (FM) + >Micronesia, Federated States of (FM) <OPTION VALUE="MD" - >Moldova, The Republic of (MD) + >Moldova, Republic of (MD) <OPTION VALUE="MC" @@ -3015,7 +3020,7 @@ myMenu63.width = 256; <OPTION VALUE="PS" - >Palestine, State of (PS) + >Palestinian Territory, Occupied (PS) <OPTION VALUE="PA" @@ -3203,11 +3208,6 @@ myMenu63.width = 256; >South Georgia and the South Sandwich Islands (GS) - <OPTION VALUE="SS" - - >South Sudan (SS) - - <OPTION VALUE="ES" >Spain (ES) @@ -3255,7 +3255,7 @@ myMenu63.width = 256; <OPTION VALUE="TW" - >Taiwan (Province of China) (TW) + >Taiwan, Province of China (TW) <OPTION VALUE="TJ" @@ -3365,7 +3365,7 @@ myMenu63.width = 256; <OPTION VALUE="VE" - >Venezuela, Bolivarian Republic of (VE) + >Venezuela, Bolivarian Republic of (VE) <OPTION VALUE="VN" @@ -3375,12 +3375,12 @@ myMenu63.width = 256; <OPTION VALUE="VG" - >Virgin Islands (British) (VG) + >Virgin Islands, British (VG) <OPTION VALUE="VI" - >Virgin Islands (U.S.) (VI) + >Virgin Islands, U.S. (VI) <OPTION VALUE="WF" @@ -4349,6 +4349,11 @@ myMenu63.width = 256; >United States (US) + <OPTION VALUE="SS" + + > (SS) + + <OPTION VALUE="AF" >Afghanistan (AF) @@ -4486,7 +4491,7 @@ myMenu63.width = 256; <OPTION VALUE="BQ" - >Bonaire, Sint Eustatius and Saba (BQ) + >Bonaire, Saint Eustatius and Saba (BQ) <OPTION VALUE="BA" @@ -4606,7 +4611,7 @@ myMenu63.width = 256; <OPTION VALUE="CD" - >Congo (The Democratic Republic of the) (CD) + >Congo, The Democratic Republic of the (CD) <OPTION VALUE="CK" @@ -4706,7 +4711,7 @@ myMenu63.width = 256; <OPTION VALUE="FK" - >Falkland Islands (The) [Malvinas] (FK) + >Falkland Islands (Malvinas) (FK) <OPTION VALUE="FO" @@ -4831,12 +4836,12 @@ myMenu63.width = 256; <OPTION VALUE="HM" - >Heard Island and McDonald Islands (HM) + >Heard Island and Mcdonald Islands (HM) <OPTION VALUE="VA" - >Holy See (The) [Vatican City State] (VA) + >Holy See (Vatican City State) (VA) <OPTION VALUE="HN" @@ -4871,7 +4876,7 @@ myMenu63.width = 256; <OPTION VALUE="IR" - >Iran, The Islamic Republic of (IR) + >Iran, Islamic Republic of (IR) <OPTION VALUE="IQ" @@ -4936,12 +4941,12 @@ myMenu63.width = 256; <OPTION VALUE="KP" - >Korea, The Democratic People's Republic of (KP) + >Korea, Democratic People's Republic of (KP) <OPTION VALUE="KR" - >Korea, The Republic of (KR) + >Korea, Republic of (KR) <OPTION VALUE="KW" @@ -4981,7 +4986,7 @@ myMenu63.width = 256; <OPTION VALUE="LY" - >Libya (LY) + >Libyan Arab Jamahiriya (LY) <OPTION VALUE="LI" @@ -5006,7 +5011,7 @@ myMenu63.width = 256; <OPTION VALUE="MK" - >Macedonia, The former Yugoslav Republic of (MK) + >Macedonia, The Former Yugoslav Republic of (MK) <OPTION VALUE="MG" @@ -5071,12 +5076,12 @@ myMenu63.width = 256; <OPTION VALUE="FM" - >Micronesia, The Federated States of (FM) + >Micronesia, Federated States of (FM) <OPTION VALUE="MD" - >Moldova, The Republic of (MD) + >Moldova, Republic of (MD) <OPTION VALUE="MC" @@ -5196,7 +5201,7 @@ myMenu63.width = 256; <OPTION VALUE="PS" - >Palestine, State of (PS) + >Palestinian Territory, Occupied (PS) <OPTION VALUE="PA" @@ -5384,11 +5389,6 @@ myMenu63.width = 256; >South Georgia and the South Sandwich Islands (GS) - <OPTION VALUE="SS" - - >South Sudan (SS) - - <OPTION VALUE="ES" >Spain (ES) @@ -5436,7 +5436,7 @@ myMenu63.width = 256; <OPTION VALUE="TW" - >Taiwan (Province of China) (TW) + >Taiwan, Province of China (TW) <OPTION VALUE="TJ" @@ -5546,7 +5546,7 @@ myMenu63.width = 256; <OPTION VALUE="VE" - >Venezuela, Bolivarian Republic of (VE) + >Venezuela, Bolivarian Republic of (VE) <OPTION VALUE="VN" @@ -5556,12 +5556,12 @@ myMenu63.width = 256; <OPTION VALUE="VG" - >Virgin Islands (British) (VG) + >Virgin Islands, British (VG) <OPTION VALUE="VI" - >Virgin Islands (U.S.) (VI) + >Virgin Islands, U.S. (VI) <OPTION VALUE="WF" diff --git a/FS-Test/share/output/edit/part_pkg.cgi/2 b/FS-Test/share/output/edit/part_pkg.cgi/2 index 21bf1f2eb..b4a079378 100644 --- a/FS-Test/share/output/edit/part_pkg.cgi/2 +++ b/FS-Test/share/output/edit/part_pkg.cgi/2 @@ -1304,14 +1304,14 @@ function confirm_submit(f) { >Prorate (Nth of month billing)</OPTION> - <OPTION VALUE="prorate_calendar" + <OPTION VALUE="prorate_delayed" - >Prorate (calendar cycle)</OPTION> + >Prorate (Nth of month billing), with intro period</OPTION> - <OPTION VALUE="prorate_delayed" + <OPTION VALUE="prorate_calendar" - >Prorate (Nth of month billing), with intro period</OPTION> + >Prorate (calendar cycle)</OPTION> <OPTION VALUE="prepaid" @@ -2646,10 +2646,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=-2>Primary</FONT></TH><TH BGCOLOR="#dcdcdc">Service</TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Hide</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" 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> @@ -2668,6 +2673,15 @@ spawn_bill_dst_pkgpart(this);" <TD> <INPUT TYPE="checkbox" NAME="hidden1" VALUE="Y"> </TD> + + <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> <TR> @@ -2686,11 +2700,20 @@ spawn_bill_dst_pkgpart(this);" <TD> <INPUT TYPE="checkbox" NAME="hidden2" VALUE="Y"> </TD> + + <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=-2>Primary</FONT></TH><TH BGCOLOR="#dcdcdc">Service</TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Hide</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" 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> @@ -2708,6 +2731,15 @@ spawn_bill_dst_pkgpart(this);" <TD> <INPUT TYPE="checkbox" NAME="hidden3" VALUE="Y"> </TD> + + <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> <TR> @@ -2726,11 +2758,20 @@ spawn_bill_dst_pkgpart(this);" <TD> <INPUT TYPE="checkbox" NAME="hidden4" VALUE="Y"> </TD> + + <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=-2>Primary</FONT></TH><TH BGCOLOR="#dcdcdc">Service</TH><TH BGCOLOR="#dcdcdc"><FONT SIZE=-1>Hide</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" 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> @@ -2748,10 +2789,43 @@ spawn_bill_dst_pkgpart(this);" <TD> <INPUT TYPE="checkbox" NAME="hidden5" VALUE="Y"> </TD> + + <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> @@ -3120,7 +3194,42 @@ 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 an expiration date this number of months out</TD><TD><INPUT TYPE="text" NAME="flat__expire_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a suspension date this number of months out</TD><TD><INPUT TYPE="text" NAME="flat__adjourn_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a contract end date this number of years out</TD><TD><SELECT NAME="flat__contract_end_months"><OPTION VALUE="" SELECTED>(none)<OPTION VALUE="12">1<OPTION VALUE="24">2<OPTION VALUE="36">3<OPTION VALUE="48">4<OPTION VALUE="60">5</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_totalbytes,seconds,recharge_seconds,recharge_downbytes,bill_suspend_as_cancel,a2billing_retail_initblock_offp,recharge_upbytes,setup_fee,upbytes,unused_credit_change,suspend_bill,start_1st,a2billing_tariff,downbytes,externalid,a2billing_carrier_cost_min,unsuspend_adjust_bill,recur_fee,prorate_round_day,a2billing_retail_cost_min_offp,recur_temporality,contract_end_months,a2billing_retail_increment_offp,a2billing_carrer_initblock_offp,recharge_reset,adjourn_months,prorate_defer_bill,a2billing_simultaccess,totalbytes,expire_months,unused_credit_cancel,sync_bill_date,bill_recur_on_cancel,usage_rollover,a2billing_carrier_increment_offp,recharge_amount,a2billing_type,unused_credit_suspend,add_full_period,delay_cancel,prorate_verbose"> + <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 an expiration date this number of months out</TD><TD> + <INPUT TYPE="text" NAME="flat__expire_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a suspension date this number of months out</TD><TD> + <INPUT TYPE="text" NAME="flat__adjourn_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a contract end date this number of years out</TD><TD> + <SELECT NAME="flat__contract_end_months"><OPTION VALUE="" SELECTED>(none)<OPTION VALUE="12">1<OPTION VALUE="24">2<OPTION VALUE="36">3<OPTION VALUE="48">4<OPTION VALUE="60">5</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,expire_months,adjourn_months,contract_end_months,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> @@ -3129,7 +3238,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="a2billing_carrier_increment_offp,unused_credit_cancel,setup_fee,free_days,recur_notify,a2billing_simultaccess,a2billing_retail_initblock_offp,a2billing_carrer_initblock_offp,a2billing_retail_increment_offp,a2billing_retail_cost_min_offp,delay_cancel,recur_fee,unused_credit_suspend,a2billing_type,a2billing_carrier_cost_min,a2billing_tariff,delay_setup,suspend_bill,unused_credit_change"> + <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> @@ -3138,7 +3261,43 @@ 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 an expiration date this number of months out</TD><TD><INPUT TYPE="text" NAME="flat_introrate__expire_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a suspension date this number of months out</TD><TD><INPUT TYPE="text" NAME="flat_introrate__adjourn_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a contract end date this number of years out</TD><TD><SELECT NAME="flat_introrate__contract_end_months"><OPTION VALUE="" SELECTED>(none)<OPTION VALUE="12">1<OPTION VALUE="24">2<OPTION VALUE="36">3<OPTION VALUE="48">4<OPTION VALUE="60">5</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="a2billing_retail_increment_offp,contract_end_months,recur_temporality,prorate_defer_bill,a2billing_simultaccess,a2billing_carrer_initblock_offp,recharge_reset,adjourn_months,intro_duration,expire_months,totalbytes,bill_recur_on_cancel,sync_bill_date,usage_rollover,a2billing_carrier_increment_offp,unused_credit_cancel,recharge_amount,intro_fee,unused_credit_suspend,add_full_period,a2billing_type,delay_cancel,recharge_totalbytes,seconds,bill_suspend_as_cancel,recharge_downbytes,a2billing_retail_initblock_offp,recharge_seconds,setup_fee,recharge_upbytes,suspend_bill,start_1st,upbytes,unused_credit_change,downbytes,externalid,a2billing_tariff,unsuspend_adjust_bill,recur_fee,a2billing_carrier_cost_min,a2billing_retail_cost_min_offp,prorate_round_day"> + <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 an expiration date this number of months out</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__expire_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a suspension date this number of months out</TD><TD> + <INPUT TYPE="text" NAME="flat_introrate__adjourn_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a contract end date this number of years out</TD><TD> + <SELECT NAME="flat_introrate__contract_end_months"><OPTION VALUE="" SELECTED>(none)<OPTION VALUE="12">1<OPTION VALUE="24">2<OPTION VALUE="36">3<OPTION VALUE="48">4<OPTION VALUE="60">5</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,expire_months,adjourn_months,contract_end_months,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> @@ -3147,25 +3306,107 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: block; z-index: 1" > - <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 an expiration date this number of months out</TD><TD><INPUT TYPE="text" NAME="prorate__expire_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a suspension date this number of months out</TD><TD><INPUT TYPE="text" NAME="prorate__adjourn_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a contract end date this number of years out</TD><TD><SELECT NAME="prorate__contract_end_months"><OPTION VALUE="" SELECTED>(none)<OPTION VALUE="12">1<OPTION VALUE="24">2<OPTION VALUE="36">3<OPTION VALUE="48">4<OPTION VALUE="60">5</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="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="upbytes,unused_credit_change,suspend_bill,start_1st,a2billing_tariff,downbytes,externalid,a2billing_carrier_cost_min,cutoff_day,unsuspend_adjust_bill,recur_fee,prorate_round_day,a2billing_retail_cost_min_offp,recharge_totalbytes,seconds,recharge_seconds,recharge_downbytes,bill_suspend_as_cancel,a2billing_retail_initblock_offp,recharge_upbytes,setup_fee,recharge_amount,a2billing_type,add_full_period,unused_credit_suspend,delay_cancel,prorate_verbose,recur_temporality,a2billing_retail_increment_offp,contract_end_months,recharge_reset,a2billing_carrer_initblock_offp,adjourn_months,prorate_defer_bill,a2billing_simultaccess,totalbytes,expire_months,unused_credit_cancel,usage_rollover,bill_recur_on_cancel,a2billing_carrier_increment_offp,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 an expiration date this number of months out</TD><TD> + <INPUT TYPE="text" NAME="prorate__expire_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a suspension date this number of months out</TD><TD> + <INPUT TYPE="text" NAME="prorate__adjourn_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a contract end date this number of years out</TD><TD> + <SELECT NAME="prorate__contract_end_months"><OPTION VALUE="" SELECTED>(none)<OPTION VALUE="12">1<OPTION VALUE="24">2<OPTION VALUE="36">3<OPTION VALUE="48">4<OPTION VALUE="60">5</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="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,expire_months,adjourn_months,contract_end_months,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_calendar" + <DIV ID="plandprorate_delayed" STYLE="display: none; z-index: 0" > - <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 an expiration date this number of months out</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__expire_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a suspension date this number of months out</TD><TD><INPUT TYPE="text" NAME="prorate_calendar__adjourn_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a contract end date this number of years out</TD><TD><SELECT NAME="prorate_calendar__contract_end_months"><OPTION VALUE="" SELECTED>(none)<OPTION VALUE="12">1<OPTION VALUE="24">2<OPTION VALUE="36">3<OPTION VALUE="48">4<OPTION VALUE="60">5</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="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="recharge_totalbytes,seconds,recharge_seconds,recharge_downbytes,bill_suspend_as_cancel,a2billing_retail_initblock_offp,recharge_upbytes,setup_fee,upbytes,unused_credit_change,suspend_bill,start_1st,a2billing_tariff,downbytes,externalid,a2billing_carrier_cost_min,unsuspend_adjust_bill,cutoff_day,recur_fee,prorate_round_day,a2billing_retail_cost_min_offp,recur_temporality,contract_end_months,a2billing_retail_increment_offp,recharge_reset,a2billing_carrer_initblock_offp,adjourn_months,prorate_defer_bill,a2billing_simultaccess,totalbytes,expire_months,unused_credit_cancel,sync_bill_date,a2billing_carrier_increment_offp,usage_rollover,bill_recur_on_cancel,recharge_amount,a2billing_type,unused_credit_suspend,add_full_period,delay_cancel,prorate_verbose"> + <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="unused_credit_cancel,a2billing_carrier_increment_offp,recur_notify,setup_fee,free_days,a2billing_carrer_initblock_offp,a2billing_simultaccess,a2billing_retail_initblock_offp,a2billing_retail_increment_offp,delay_cancel,a2billing_retail_cost_min_offp,a2billing_type,a2billing_carrier_cost_min,recur_fee,unused_credit_suspend,delay_setup,a2billing_tariff,unused_credit_change,suspend_bill"> + <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 an expiration date this number of months out</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__expire_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a suspension date this number of months out</TD><TD> + <INPUT TYPE="text" NAME="prorate_calendar__adjourn_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a contract end date this number of years out</TD><TD> + <SELECT NAME="prorate_calendar__contract_end_months"><OPTION VALUE="" SELECTED>(none)<OPTION VALUE="12">1<OPTION VALUE="24">2<OPTION VALUE="36">3<OPTION VALUE="48">4<OPTION VALUE="60">5</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="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,expire_months,adjourn_months,contract_end_months,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> @@ -3174,7 +3415,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="totalbytes,recharge_upbytes,setup_fee,recur_action,unused_credit_cancel,usage_rollover,a2billing_carrier_increment_offp,a2billing_retail_increment_offp,seconds,recharge_totalbytes,recharge_reset,a2billing_carrer_initblock_offp,recharge_seconds,a2billing_retail_initblock_offp,a2billing_simultaccess,recharge_downbytes,a2billing_carrier_cost_min,a2billing_type,recur_fee,unused_credit_suspend,delay_cancel,a2billing_retail_cost_min_offp,overlimit_action,unused_credit_change,upbytes,a2billing_tariff,recharge_amount,downbytes"> + <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> @@ -3183,7 +3440,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="upbytes,unused_credit_change,downbytes,externalid,recharge_amount,a2billing_tariff,cutoff_day,unused_credit_suspend,recur_fee,a2billing_carrier_cost_min,a2billing_type,a2billing_retail_cost_min_offp,delay_cancel,recharge_totalbytes,seconds,a2billing_retail_increment_offp,recharge_downbytes,a2billing_retail_initblock_offp,a2billing_simultaccess,recharge_seconds,recharge_reset,a2billing_carrer_initblock_offp,setup_fee,recharge_upbytes,totalbytes,a2billing_carrier_increment_offp,usage_rollover,unused_credit_cancel"> + <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> @@ -3192,7 +3472,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 megabytes included</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_input" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per megabyte 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 megabytes included</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_output" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per megabyte 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 megabytes included</TD><TD><INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_total" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per megabyte 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 megabytes (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="recur_included_hours,unused_credit_change,recur_total_cap,recur_hourly_charge,a2billing_tariff,recur_fee,recur_output_charge,unused_credit_suspend,a2billing_carrier_cost_min,recur_included_total,a2billing_type,recur_total_charge,a2billing_retail_cost_min_offp,delay_cancel,a2billing_retail_increment_offp,global_cap,recur_hourly_cap,a2billing_retail_initblock_offp,a2billing_simultaccess,recur_input_charge,a2billing_carrer_initblock_offp,recur_input_cap,recur_included_output,setup_fee,recur_output_cap,recur_included_input,a2billing_carrier_increment_offp,unused_credit_cancel"> + <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 megabytes included</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_input" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per megabyte 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 megabytes included</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_output" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per megabyte 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 megabytes included</TD><TD> + <INPUT TYPE="text" NAME="sqlradacct_hour__recur_included_total" VALUE="0"></TD></TR><TR><TD ALIGN="right">Additional charge per megabyte 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 megabytes (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> @@ -3201,7 +3504,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_output_cap,setup_fee,recur_included_output,recur_input_cap,monthly_cap,recur_included_input,a2billing_carrier_increment_offp,unused_credit_cancel,a2billing_retail_increment_offp,global_cap,a2billing_retail_initblock_offp,recur_hourly_cap,a2billing_simultaccess,a2billing_carrer_initblock_offp,recur_input_charge,unused_credit_suspend,recur_output_charge,recur_fee,recur_included_total,a2billing_type,a2billing_carrier_cost_min,a2billing_retail_cost_min_offp,recur_total_charge,delay_cancel,unused_credit_change,recur_included_hours,recur_total_cap,a2billing_tariff,recur_hourly_charge"> + <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> @@ -3210,7 +3537,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" @@ -3228,6 +3566,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" @@ -3244,7 +3583,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="accountcode_default">Default plus accountcode<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="basic">Basic<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple2">Simple with source<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="default">Default<OPTION VALUE="simple">Simple<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="accountcode_simple">Simple with accountcode</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="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="basic">Basic<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple2">Simple with source<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="default">Default<OPTION VALUE="simple">Simple<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="accountcode_simple">Simple with accountcode</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="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="basic">Basic<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple2">Simple with source<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="default">Default<OPTION VALUE="simple">Simple<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="accountcode_simple">Simple with accountcode</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="domestic_prefix,bill_only_pkg_dates,selfservice_format,summarize_usage,noskip_src_length_accountcode_tollfree,skip_dst_length_less,use_calltypenum,ignore_unrateable,use_duration,use_amaflags,intrastate_ratenum,skip_max_callers,recur_fee,recur_temporality,a2billing_carrer_initblock_offp,disposition_in,a2billing_simultaccess,ignore_disposition,use_cdrtypenum,unused_credit_cancel,bill_every_call,skip_dst_prefix,rounding,a2billing_carrier_increment_offp,usage_showzero,selfservice_inbound_format,disable_src,a2billing_type,bill_inactive_svcs,delay_cancel,count_available_phones,cdr_svc_method,recur_method,usage_mandate,rating_method,min_charge,a2billing_retail_initblock_offp,skip_lastapp,noskip_dst_length_accountcode_tollfree,skip_dcontext,setup_fee,calls_included,disable_tollfree,unused_credit_change,suspend_bill,a2billing_tariff,output_format,a2billing_carrier_cost_min,cutoff_day,usage_section,prorate_round_day,ignore_cdrtypenum,a2billing_retail_cost_min_offp,default_prefix,skip_same_customer,accountcode_tollfree_field,a2billing_retail_increment_offp,skip_src_length_more,prorate_defer_bill,accountcode_tollfree_ratenum,ratenum,411_rewrite,international_prefix,skip_dstchannel_prefix,use_carrierid,min_included,unused_credit_suspend,sec_granularity,add_full_period,prorate_verbose,ignore_calltypenum"> +</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> @@ -3253,7 +3646,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="default">Default<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="simple">Simple<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="source_default">Default with source<OPTION VALUE="simple2">Simple with source<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="basic">Basic</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="ignore_disposition,use_cdrtypenum,unused_credit_cancel,skip_dstchannel_prefix,use_carrierid,bill_every_call,min_included,a2billing_carrier_increment_offp,recur_temporality,a2billing_retail_increment_offp,a2billing_carrer_initblock_offp,prorate_defer_bill,disposition_in,a2billing_simultaccess,a2billing_type,add_full_period,unused_credit_suspend,sec_granularity,delay_cancel,prorate_verbose,ignore_calltypenum,use_amaflags,skip_lastapp,setup_fee,skip_dcontext,recur_method,usage_mandate,summarize_usage,skip_dst_length_less,use_calltypenum,min_charge,a2billing_retail_initblock_offp,use_duration,a2billing_carrier_cost_min,cutoff_day,recur_fee,usage_section,prorate_round_day,ignore_cdrtypenum,a2billing_retail_cost_min_offp,default_prefix,unused_credit_change,a2billing_tariff,output_format"> + <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="source_default">Default with source<OPTION VALUE="basic">Basic<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple2">Simple with source<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="default">Default<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="simple">Simple<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name</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> @@ -3262,7 +3694,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="accountcode_default">Default plus accountcode<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="basic">Basic<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple2">Simple with source<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="default">Default<OPTION VALUE="simple">Simple<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="accountcode_simple">Simple with accountcode</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="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="basic">Basic<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple2">Simple with source<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="default">Default<OPTION VALUE="simple">Simple<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="accountcode_simple">Simple with accountcode</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="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="basic">Basic<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple2">Simple with source<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="default">Default<OPTION VALUE="simple">Simple<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="accountcode_simple">Simple with accountcode</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="skip_max_callers,recur_fee,intrastate_ratenum,use_amaflags,skip_dst_length_less,noskip_src_length_accountcode_tollfree,use_calltypenum,ignore_unrateable,use_duration,domestic_prefix,bill_only_pkg_dates,selfservice_format,summarize_usage,delay_cancel,count_available_phones,cdr_svc_method,disable_src,a2billing_type,bill_inactive_svcs,selfservice_inbound_format,tiernum,unused_credit_cancel,skip_dst_prefix,bill_every_call,rounding,usage_showzero,a2billing_carrier_increment_offp,ignore_disposition,use_cdrtypenum,a2billing_carrer_initblock_offp,disposition_in,a2billing_simultaccess,recur_temporality,prorate_round_day,ignore_cdrtypenum,a2billing_retail_cost_min_offp,default_prefix,a2billing_carrier_cost_min,cutoff_day,usage_section,a2billing_tariff,output_format,disable_tollfree,unused_credit_change,suspend_bill,calls_included,skip_lastapp,noskip_dst_length_accountcode_tollfree,skip_dcontext,setup_fee,min_charge,a2billing_retail_initblock_offp,recur_method,usage_mandate,rating_method,prorate_verbose,ignore_calltypenum,add_full_period,sec_granularity,unused_credit_suspend,international_prefix,skip_dstchannel_prefix,use_carrierid,min_included,411_rewrite,ratenum,skip_src_length_more,prorate_defer_bill,accountcode_tollfree_ratenum,accountcode_tollfree_field,cdr_inout,skip_same_customer,a2billing_retail_increment_offp"> + <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> @@ -3271,7 +3760,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="accountcode_default">Default plus accountcode<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple2">Simple with source<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<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="sum_count">Number of calls, one line per service<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="simple">Simple</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="unused_credit_change,a2billing_tariff,output_format,a2billing_carrier_cost_min,a2billing_type,add_full_period,unused_credit_suspend,cutoff_day,usage_section,recur_fee,delay_cancel,prorate_round_day,a2billing_retail_cost_min_offp,prorate_verbose,recur_method,usage_mandate,recur_temporality,summarize_usage,a2billing_retail_increment_offp,a2billing_carrer_initblock_offp,prorate_defer_bill,a2billing_retail_initblock_offp,a2billing_simultaccess,setup_fee,unused_credit_cancel,a2billing_carrier_increment_offp"> + <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="source_default">Default with source<OPTION VALUE="basic">Basic<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple2">Simple with source<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="default">Default<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="simple">Simple<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="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> @@ -3280,7 +3790,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="setup_fee,recur_fee,nibble_rate"> + <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> @@ -3289,7 +3806,20 @@ 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">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="a2billing_carrier_increment_offp,unused_credit_cancel,svc_setup_fee,summarize_svcs,svc_recur_fee,setup_fee,a2billing_retail_initblock_offp,a2billing_simultaccess,a2billing_carrer_initblock_offp,a2billing_retail_increment_offp,a2billing_retail_cost_min_offp,delay_cancel,unused_credit_suspend,recur_fee,a2billing_carrier_cost_min,a2billing_type,a2billing_tariff,unused_credit_change"> + <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">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,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> @@ -3298,7 +3828,21 @@ 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">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_tariff,unused_credit_change,delay_cancel,a2billing_retail_cost_min_offp,a2billing_type,a2billing_carrier_cost_min,no_prorate,recur_fee,unused_credit_suspend,a2billing_carrer_initblock_offp,a2billing_retail_initblock_offp,a2billing_simultaccess,a2billing_retail_increment_offp,summarize_svcs,svc_setup_fee,unused_credit_cancel,a2billing_carrier_increment_offp,setup_fee,svc_recur_fee"> + <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">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,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> @@ -3307,7 +3851,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="display_separate_cust,unused_credit_change,a2billing_tariff,a2billing_carrier_cost_min,a2billing_type,unused_credit_suspend,cutoff_day,add_full_period,recur_fee,prorate_round_day,delay_cancel,cost_only,prorate_verbose,a2billing_retail_cost_min_offp,recur_temporality,no_pkg_prorate,a2billing_retail_increment_offp,a2billing_carrer_initblock_offp,prorate_defer_bill,a2billing_retail_initblock_offp,a2billing_simultaccess,setup_fee,unused_credit_cancel,a2billing_carrier_increment_offp,sync_bill_date"> + <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> @@ -3316,7 +3878,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">Number of calls, one line per service<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="simple">Simple<OPTION VALUE="default">Default<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="source_default">Default with source<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple2">Simple with source<OPTION VALUE="basic_upstream_dst_regionname">Basic with upstream destination name<OPTION VALUE="basic">Basic<OPTION VALUE="accountcode_default">Default plus accountcode</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="a2billing_carrer_initblock_offp,prorate_defer_bill,a2billing_retail_initblock_offp,a2billing_simultaccess,recur_method,recur_temporality,usage_mandate,summarize_usage,a2billing_retail_increment_offp,unused_credit_cancel,a2billing_carrier_increment_offp,setup_fee,a2billing_tariff,output_format,unused_credit_change,delay_cancel,prorate_round_day,a2billing_retail_cost_min_offp,prorate_verbose,a2billing_carrier_cost_min,a2billing_type,unused_credit_suspend,add_full_period,cutoff_day,recur_fee,usage_section"> + <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="source_default">Default with source<OPTION VALUE="basic">Basic<OPTION VALUE="sum_duration">Summary, one line per service<OPTION VALUE="simple2">Simple with source<OPTION VALUE="accountcode_default">Default plus accountcode<OPTION VALUE="sum_duration_prefix">Summary, one line per destination prefix<OPTION VALUE="default">Default<OPTION VALUE="sum_count">Number of calls, one line per service<OPTION VALUE="description_default">Default with description field as destination<OPTION VALUE="accountcode_simple">Simple with accountcode<OPTION VALUE="sum_count_class">Summary, one line per usage class<OPTION VALUE="simple">Simple<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> @@ -3325,7 +3908,30 @@ 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 an expiration date this number of months out</TD><TD><INPUT TYPE="text" NAME="torrus_bw_percentile__expire_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a suspension date this number of months out</TD><TD><INPUT TYPE="text" NAME="torrus_bw_percentile__adjourn_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a contract end date this number of years out</TD><TD><SELECT NAME="torrus_bw_percentile__contract_end_months"><OPTION VALUE="" SELECTED>(none)<OPTION VALUE="12">1<OPTION VALUE="24">2<OPTION VALUE="36">3<OPTION VALUE="48">4<OPTION VALUE="60">5</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="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="delay_cancel,a2billing_type,add_full_period,unused_credit_suspend,adjourn_months,a2billing_carrer_initblock_offp,a2billing_simultaccess,prorate_defer_bill,recur_temporality,contract_end_months,a2billing_retail_increment_offp,unused_credit_cancel,a2billing_carrier_increment_offp,sync_bill_date,bill_recur_on_cancel,expire_months,a2billing_tariff,externalid,unused_credit_change,mbps_rate,start_1st,suspend_bill,prorate_round_day,a2billing_retail_cost_min_offp,a2billing_carrier_cost_min,recur_fee,cutoff_day,unsuspend_adjust_bill,a2billing_retail_initblock_offp,bill_suspend_as_cancel,base_mbps,setup_fee"> + <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 an expiration date this number of months out</TD><TD> + <INPUT TYPE="text" NAME="torrus_bw_percentile__expire_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a suspension date this number of months out</TD><TD> + <INPUT TYPE="text" NAME="torrus_bw_percentile__adjourn_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a contract end date this number of years out</TD><TD> + <SELECT NAME="torrus_bw_percentile__contract_end_months"><OPTION VALUE="" SELECTED>(none)<OPTION VALUE="12">1<OPTION VALUE="24">2<OPTION VALUE="36">3<OPTION VALUE="48">4<OPTION VALUE="60">5</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="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,expire_months,adjourn_months,contract_end_months,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> @@ -3334,7 +3940,30 @@ 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 an expiration date this number of months out</TD><TD><INPUT TYPE="text" NAME="torrus_bw_usage__expire_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a suspension date this number of months out</TD><TD><INPUT TYPE="text" NAME="torrus_bw_usage__adjourn_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a contract end date this number of years out</TD><TD><SELECT NAME="torrus_bw_usage__contract_end_months"><OPTION VALUE="" SELECTED>(none)<OPTION VALUE="12">1<OPTION VALUE="24">2<OPTION VALUE="36">3<OPTION VALUE="48">4<OPTION VALUE="60">5</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="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="setup_fee,a2billing_retail_initblock_offp,bill_suspend_as_cancel,prorate_round_day,a2billing_retail_cost_min_offp,a2billing_carrier_cost_min,recur_fee,cutoff_day,unsuspend_adjust_bill,base_gb,a2billing_tariff,externalid,unused_credit_change,start_1st,suspend_bill,unused_credit_cancel,sync_bill_date,bill_recur_on_cancel,a2billing_carrier_increment_offp,expire_months,adjourn_months,a2billing_carrer_initblock_offp,a2billing_simultaccess,prorate_defer_bill,recur_temporality,contract_end_months,a2billing_retail_increment_offp,delay_cancel,a2billing_type,gb_rate,add_full_period,unused_credit_suspend"> + <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 an expiration date this number of months out</TD><TD> + <INPUT TYPE="text" NAME="torrus_bw_usage__expire_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a suspension date this number of months out</TD><TD> + <INPUT TYPE="text" NAME="torrus_bw_usage__adjourn_months" VALUE=""></TD></TR><TR><TD ALIGN="right">Auto-add a contract end date this number of years out</TD><TD> + <SELECT NAME="torrus_bw_usage__contract_end_months"><OPTION VALUE="" SELECTED>(none)<OPTION VALUE="12">1<OPTION VALUE="24">2<OPTION VALUE="36">3<OPTION VALUE="48">4<OPTION VALUE="60">5</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="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,expire_months,adjourn_months,contract_end_months,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> @@ -3343,7 +3972,18 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Rate (per minute)</TD><TD><INPUT TYPE="text" NAME="rt_time__base_rate" 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="rt_time__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="rt_time__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD><INPUT TYPE="checkbox" NAME="rt_time__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="rt_time__OPTIONS" VALUE="setup_fee,unused_credit_cancel,a2billing_carrier_increment_offp,base_rate,a2billing_retail_increment_offp,a2billing_carrer_initblock_offp,a2billing_simultaccess,a2billing_retail_initblock_offp,a2billing_carrier_cost_min,a2billing_type,recur_fee,unused_credit_suspend,delay_cancel,a2billing_retail_cost_min_offp,unused_credit_change,a2billing_tariff"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Rate (per minute)</TD><TD> + <INPUT TYPE="text" NAME="rt_time__base_rate" 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="rt_time__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="rt_time__unused_credit_change" VALUE=1 ></TD></TR><TR><TD ALIGN="right">Automatically suspend for one day before cancelling</TD><TD> + <INPUT TYPE="checkbox" NAME="rt_time__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "rt_time__OPTIONS" + ID = "rt_time__OPTIONS" + VALUE = "base_rate,setup_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> @@ -3352,7 +3992,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="unused_credit_cancel,a2billing_carrier_increment_offp,recur_unit_charge,setup_fee,a2billing_carrer_initblock_offp,a2billing_simultaccess,a2billing_retail_initblock_offp,db_password,query,a2billing_retail_increment_offp,delay_cancel,db_username,a2billing_retail_cost_min_offp,a2billing_carrier_cost_min,a2billing_type,unused_credit_suspend,recur_fee,a2billing_tariff,unused_credit_change,datasrc,recur_included"> + <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> @@ -3361,7 +4017,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="unused_credit_suspend,add_full_period,cutoff_day,recur_fee,a2billing_type,a2billing_carrier_cost_min,a2billing_retail_cost_min_offp,prorate_verbose,delay_cancel,prorate_round_day,db_username,datasrc,unused_credit_change,a2billing_tariff,setup_fee,a2billing_carrier_increment_offp,unused_credit_cancel,db_password,a2billing_retail_increment_offp,query,recur_method,prorate_defer_bill,a2billing_simultaccess,a2billing_retail_initblock_offp,a2billing_carrer_initblock_offp"> + <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> @@ -3370,7 +4046,20 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Number of layers</TD><TD><INPUT TYPE="text" NAME="flat_comission_cust__comission_depth" VALUE="1"></TD></TR><TR><TD ALIGN="right">Commission amount per month (per active package)</TD><TD><INPUT TYPE="text" NAME="flat_comission_cust__comission_amount" VALUE="0"></TD></TR><TR><TD ALIGN="right">Reason type for commission credits</TD><TD><SELECT NAME="flat_comission_cust__reason_type"><OPTION VALUE="4">Credit Reason<OPTION VALUE="5">Legacy</SELECT></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="flat_comission_cust__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_comission_cust__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_comission_cust__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="flat_comission_cust__OPTIONS" VALUE="a2billing_type,a2billing_carrier_cost_min,unused_credit_suspend,recur_fee,delay_cancel,a2billing_retail_cost_min_offp,reason_type,comission_depth,unused_credit_change,a2billing_tariff,comission_amount,setup_fee,unused_credit_cancel,a2billing_carrier_increment_offp,a2billing_retail_increment_offp,a2billing_carrer_initblock_offp,a2billing_retail_initblock_offp,a2billing_simultaccess"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Number of layers</TD><TD> + <INPUT TYPE="text" NAME="flat_comission_cust__comission_depth" VALUE="1"></TD></TR><TR><TD ALIGN="right">Commission amount per month (per active package)</TD><TD> + <INPUT TYPE="text" NAME="flat_comission_cust__comission_amount" VALUE="0"></TD></TR><TR><TD ALIGN="right">Reason type for commission credits</TD><TD> + <SELECT NAME="flat_comission_cust__reason_type"><OPTION VALUE="4">Credit Reason<OPTION VALUE="5">Legacy</SELECT></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_comission_cust__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_comission_cust__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_comission_cust__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "flat_comission_cust__OPTIONS" + ID = "flat_comission_cust__OPTIONS" + VALUE = "comission_depth,comission_amount,reason_type,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> @@ -3379,7 +4068,20 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Number of layers</TD><TD><INPUT TYPE="text" NAME="flat_comission__comission_depth" VALUE="1"></TD></TR><TR><TD ALIGN="right">Commission amount per month (per active package)</TD><TD><INPUT TYPE="text" NAME="flat_comission__comission_amount" VALUE="0"></TD></TR><TR><TD ALIGN="right">Reason type for commission credits</TD><TD><SELECT NAME="flat_comission__reason_type"><OPTION VALUE="4">Credit Reason<OPTION VALUE="5">Legacy</SELECT></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="flat_comission__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_comission__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_comission__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="flat_comission__OPTIONS" VALUE="a2billing_retail_increment_offp,a2billing_simultaccess,a2billing_retail_initblock_offp,a2billing_carrer_initblock_offp,setup_fee,a2billing_carrier_increment_offp,unused_credit_cancel,comission_depth,unused_credit_change,comission_amount,a2billing_tariff,recur_fee,unused_credit_suspend,a2billing_type,a2billing_carrier_cost_min,reason_type,a2billing_retail_cost_min_offp,delay_cancel"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Number of layers</TD><TD> + <INPUT TYPE="text" NAME="flat_comission__comission_depth" VALUE="1"></TD></TR><TR><TD ALIGN="right">Commission amount per month (per active package)</TD><TD> + <INPUT TYPE="text" NAME="flat_comission__comission_amount" VALUE="0"></TD></TR><TR><TD ALIGN="right">Reason type for commission credits</TD><TD> + <SELECT NAME="flat_comission__reason_type"><OPTION VALUE="4">Credit Reason<OPTION VALUE="5">Legacy</SELECT></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_comission__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_comission__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_comission__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "flat_comission__OPTIONS" + ID = "flat_comission__OPTIONS" + VALUE = "comission_depth,comission_amount,reason_type,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> @@ -3388,7 +4090,21 @@ spawn_supp_dst_pkgpart(this);" STYLE="display: none; z-index: 0" > - <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Number of layers</TD><TD><INPUT TYPE="text" NAME="flat_comission_pkg__comission_depth" VALUE="1"></TD></TR><TR><TD ALIGN="right">Commission amount per month (per active package)</TD><TD><INPUT TYPE="text" NAME="flat_comission_pkg__comission_amount" VALUE="0"></TD></TR><TR><TD ALIGN="right">Applicable packages<BR><FONT SIZE="-1">(hold <b>ctrl</b> to select multiple packages)</FONT></TD><TD><SELECT MULTIPLE NAME="flat_comission_pkg__comission_pkgpart"><OPTION VALUE="1">System Domain<OPTION VALUE="2">Monthly prorated account<OPTION VALUE="3">Monthly prorated broadband<OPTION VALUE="4">Annual subscription domain<OPTION VALUE="5">Monthly anniversary phone x4</SELECT></TD></TR><TR><TD ALIGN="right">Reason type for commission credits</TD><TD><SELECT NAME="flat_comission_pkg__reason_type"><OPTION VALUE="4">Credit Reason<OPTION VALUE="5">Legacy</SELECT></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD><INPUT TYPE="checkbox" NAME="flat_comission_pkg__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_comission_pkg__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_comission_pkg__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE="hidden" NAME="flat_comission_pkg__OPTIONS" VALUE="delay_cancel,a2billing_retail_cost_min_offp,reason_type,a2billing_carrier_cost_min,a2billing_type,unused_credit_suspend,recur_fee,a2billing_tariff,comission_amount,unused_credit_change,comission_depth,unused_credit_cancel,a2billing_carrier_increment_offp,comission_pkgpart,setup_fee,a2billing_carrer_initblock_offp,a2billing_simultaccess,a2billing_retail_initblock_offp,a2billing_retail_increment_offp"> + <TABLE BGCOLOR="#cccccc" BORDER=0 CELLSPACING=2><TR><TD ALIGN="right">Number of layers</TD><TD> + <INPUT TYPE="text" NAME="flat_comission_pkg__comission_depth" VALUE="1"></TD></TR><TR><TD ALIGN="right">Commission amount per month (per active package)</TD><TD> + <INPUT TYPE="text" NAME="flat_comission_pkg__comission_amount" VALUE="0"></TD></TR><TR><TD ALIGN="right">Applicable packages<BR><FONT SIZE="-1">(hold <b>ctrl</b> to select multiple packages)</FONT></TD><TD> + <SELECT MULTIPLE NAME="flat_comission_pkg__comission_pkgpart"><OPTION VALUE="1">System Domain<OPTION VALUE="2">Monthly prorated account<OPTION VALUE="3">Monthly prorated broadband<OPTION VALUE="4">Annual subscription domain<OPTION VALUE="5">Monthly anniversary phone x4</SELECT></TD></TR><TR><TD ALIGN="right">Reason type for commission credits</TD><TD> + <SELECT NAME="flat_comission_pkg__reason_type"><OPTION VALUE="4">Credit Reason<OPTION VALUE="5">Legacy</SELECT></TD></TR><TR><TD ALIGN="right">Credit the customer for the unused portion of service at cancellation</TD><TD> + <INPUT TYPE="checkbox" NAME="flat_comission_pkg__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_comission_pkg__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_comission_pkg__delay_cancel" VALUE=1 ></TD></TR></TABLE><INPUT TYPE = "hidden" + NAME = "flat_comission_pkg__OPTIONS" + ID = "flat_comission_pkg__OPTIONS" + VALUE = "comission_depth,comission_amount,comission_pkgpart,reason_type,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> @@ -3409,10 +4125,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -3468,10 +4184,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -3527,10 +4243,10 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_delayed').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('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"; @@ -3586,10 +4302,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_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"; @@ -3637,7 +4353,7 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandprorate').style.zIndex = 1; } - if (planlayer == "prorate_calendar" ) { + if (planlayer == "prorate_delayed" ) { document.getElementById('plandflat').style.display = "none"; document.getElementById('plandflat').style.zIndex = 0; @@ -3647,8 +4363,8 @@ spawn_supp_dst_pkgpart(this);" 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"; @@ -3692,11 +4408,11 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_comission_pkg').style.display = "none"; document.getElementById('plandflat_comission_pkg').style.zIndex = 0; - document.getElementById('plandprorate_calendar').style.display = ""; - document.getElementById('plandprorate_calendar').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; @@ -3706,8 +4422,8 @@ spawn_supp_dst_pkgpart(this);" 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"; @@ -3751,8 +4467,8 @@ spawn_supp_dst_pkgpart(this);" document.getElementById('plandflat_comission_pkg').style.display = "none"; document.getElementById('plandflat_comission_pkg').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" ) { @@ -3765,10 +4481,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -3824,10 +4540,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -3883,10 +4599,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -3942,10 +4658,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4001,10 +4717,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4060,10 +4776,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4119,10 +4835,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4178,10 +4894,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4237,10 +4953,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4296,10 +5012,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4355,10 +5071,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4414,10 +5130,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4473,10 +5189,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4532,10 +5248,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4591,10 +5307,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4650,10 +5366,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4709,10 +5425,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4768,10 +5484,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4827,10 +5543,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4886,10 +5602,10 @@ spawn_supp_dst_pkgpart(this);" 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('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"; @@ -4945,10 +5661,10 @@ spawn_supp_dst_pkgpart(this);" 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('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/search/cust_bill.html/date b/FS-Test/share/output/search/cust_bill.html/keywords=OPEN90_date:order_by=invnum index 85bfc5e5d..52734c9c3 100644 --- a/FS-Test/share/output/search/cust_bill.html/date +++ b/FS-Test/share/output/search/cust_bill.html/keywords=OPEN90_date:order_by=invnum @@ -988,7 +988,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('order_by') > -1) || (field.name.indexOf('days') > -1) || (field.name.indexOf('invoiced') > -1) || (field.name.indexOf('owed') > -1) || (field.name.indexOf('charged') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1033,9 +1033,6 @@ function print_myCallback( jobnum ) { <FORM NAME="print_form"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> -<INPUT TYPE="hidden" NAME="days" VALUE=""> -<INPUT TYPE="hidden" NAME="invoiced" VALUE="1"> </FORM> <SCRIPT TYPE="text/javascript"> @@ -1168,7 +1165,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('order_by') > -1) || (field.name.indexOf('days') > -1) || (field.name.indexOf('invoiced') > -1) || (field.name.indexOf('owed') > -1) || (field.name.indexOf('charged') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1213,9 +1210,6 @@ function email_myCallback( jobnum ) { <FORM NAME="email_form"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> -<INPUT TYPE="hidden" NAME="days" VALUE=""> -<INPUT TYPE="hidden" NAME="invoiced" VALUE="1"> </FORM> <SCRIPT TYPE="text/javascript"> @@ -1348,7 +1342,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('order_by') > -1) || (field.name.indexOf('days') > -1) || (field.name.indexOf('invoiced') > -1) || (field.name.indexOf('owed') > -1) || (field.name.indexOf('charged') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1393,9 +1387,6 @@ function fax_myCallback( jobnum ) { <FORM NAME="fax_form"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> -<INPUT TYPE="hidden" NAME="days" VALUE=""> -<INPUT TYPE="hidden" NAME="invoiced" VALUE="1"> </FORM> <SCRIPT TYPE="text/javascript"> @@ -1528,7 +1519,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('order_by') > -1) || (field.name.indexOf('days') > -1) || (field.name.indexOf('invoiced') > -1) || (field.name.indexOf('owed') > -1) || (field.name.indexOf('charged') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1573,9 +1564,6 @@ function ftp_myCallback( jobnum ) { <FORM NAME="ftp_form"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> -<INPUT TYPE="hidden" NAME="days" VALUE=""> -<INPUT TYPE="hidden" NAME="invoiced" VALUE="1"> </FORM> <SCRIPT TYPE="text/javascript"> @@ -1708,7 +1696,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('order_by') > -1) || (field.name.indexOf('days') > -1) || (field.name.indexOf('invoiced') > -1) || (field.name.indexOf('owed') > -1) || (field.name.indexOf('charged') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1753,9 +1741,6 @@ function spool_myCallback( jobnum ) { <FORM NAME="spool_form"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> -<INPUT TYPE="hidden" NAME="days" VALUE=""> -<INPUT TYPE="hidden" NAME="invoiced" VALUE="1"> </FORM><SCRIPT TYPE="text/javascript"> function confirm_print_process() { @@ -1803,7 +1788,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=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=' + this.options[this.selectedIndex].value;"> <OPTION VALUE="100" SELECTED>100</OPTION> <OPTION VALUE="500" >500</OPTION> @@ -1815,7 +1800,8 @@ function confirm_spool_process() { <BR> - $141620.74 invoiced<BR> + $141620.74 gross sales<BR> + − $0.00 discounted<BR> − $0.00 credited<BR> = $141620.74 net sales<BR> $48352.49 outstanding balance<BR> @@ -1828,12 +1814,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=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=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=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> @@ -1846,45 +1832,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=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=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=date;_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=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=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=date;_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=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=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=date;_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=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=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=date;_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=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=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=date;_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=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=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=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> @@ -1907,7 +1893,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=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" @@ -1916,7 +1902,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=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" @@ -1925,7 +1911,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=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=discounted">Discount</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1934,7 +1920,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=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=credited">Credits</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1943,7 +1929,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=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" @@ -1952,7 +1938,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=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=owed">Balance</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1961,7 +1947,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=OPEN90_date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=_date">Date</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -2526,31 +2512,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> @@ -2558,7 +2544,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> @@ -2567,31 +2553,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> @@ -2599,7 +2585,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> @@ -2608,31 +2594,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> @@ -2640,7 +2626,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> @@ -2854,31 +2840,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> @@ -2886,7 +2872,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> @@ -2895,31 +2881,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> @@ -2927,7 +2913,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> @@ -2977,31 +2963,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> @@ -3009,7 +2995,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> @@ -3018,31 +3004,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> @@ -3050,7 +3036,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> @@ -3059,31 +3045,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> @@ -3091,7 +3077,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> @@ -3100,31 +3086,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> @@ -3132,7 +3118,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> @@ -3141,31 +3127,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> @@ -3173,7 +3159,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> @@ -3182,31 +3168,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> @@ -3214,7 +3200,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> @@ -3223,31 +3209,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> @@ -3255,7 +3241,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> @@ -3264,31 +3250,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> @@ -3296,7 +3282,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> @@ -3305,31 +3291,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> @@ -3337,7 +3323,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> @@ -3346,31 +3332,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> @@ -3378,7 +3364,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> @@ -3387,31 +3373,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> @@ -3419,7 +3405,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> @@ -3428,31 +3414,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> @@ -3460,7 +3446,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> @@ -3469,31 +3455,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> @@ -3501,7 +3487,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> @@ -3510,31 +3496,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> @@ -3542,7 +3528,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> @@ -3551,31 +3537,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> @@ -3583,7 +3569,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> @@ -3592,31 +3578,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> @@ -3624,7 +3610,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> @@ -3633,31 +3619,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> @@ -3665,7 +3651,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> @@ -3756,31 +3742,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> @@ -3788,7 +3774,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> @@ -3797,31 +3783,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> @@ -3829,7 +3815,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> @@ -3838,31 +3824,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> @@ -3870,7 +3856,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> @@ -4617,31 +4603,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> @@ -4649,7 +4635,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> @@ -4658,31 +4644,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> @@ -4690,7 +4676,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> @@ -5027,31 +5013,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> @@ -5059,7 +5045,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> @@ -5068,31 +5054,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> @@ -5100,7 +5086,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> @@ -5109,31 +5095,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> @@ -5141,7 +5127,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> @@ -5150,31 +5136,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> @@ -5182,7 +5168,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> @@ -5478,31 +5464,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> @@ -5510,7 +5496,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> @@ -5519,31 +5505,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> @@ -5551,7 +5537,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> @@ -5601,31 +5587,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> @@ -5633,7 +5619,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> @@ -5642,31 +5628,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> @@ -5674,7 +5660,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> @@ -5929,31 +5915,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> @@ -5961,7 +5947,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> @@ -5970,31 +5956,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> @@ -6002,7 +5988,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> @@ -6011,31 +5997,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> @@ -6043,7 +6029,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> @@ -6052,31 +6038,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> @@ -6084,7 +6070,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> @@ -6099,45 +6085,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=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=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=date;_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=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=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=date;_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=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=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=date;_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=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=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=date;_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=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=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=date;_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=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=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=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/OPEN90_date b/FS-Test/share/output/search/cust_bill.html/keywords=date:order_by=invnum index 0418b3c96..f21efb450 100644 --- a/FS-Test/share/output/search/cust_bill.html/OPEN90_date +++ b/FS-Test/share/output/search/cust_bill.html/keywords=date:order_by=invnum @@ -988,7 +988,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('owed') > -1) || (field.name.indexOf('invoiced') > -1) || (field.name.indexOf('open') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('days') > -1) || (field.name.indexOf('order_by') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1033,10 +1033,6 @@ function print_myCallback( jobnum ) { <FORM NAME="print_form"> -<INPUT TYPE="hidden" NAME="invoiced" VALUE="1"> -<INPUT TYPE="hidden" NAME="open" VALUE="1"> -<INPUT TYPE="hidden" NAME="days" VALUE="90"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> </FORM> <SCRIPT TYPE="text/javascript"> @@ -1169,7 +1165,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('owed') > -1) || (field.name.indexOf('invoiced') > -1) || (field.name.indexOf('open') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('days') > -1) || (field.name.indexOf('order_by') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1214,10 +1210,6 @@ function email_myCallback( jobnum ) { <FORM NAME="email_form"> -<INPUT TYPE="hidden" NAME="invoiced" VALUE="1"> -<INPUT TYPE="hidden" NAME="open" VALUE="1"> -<INPUT TYPE="hidden" NAME="days" VALUE="90"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> </FORM> <SCRIPT TYPE="text/javascript"> @@ -1350,7 +1342,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('owed') > -1) || (field.name.indexOf('invoiced') > -1) || (field.name.indexOf('open') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('days') > -1) || (field.name.indexOf('order_by') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1395,10 +1387,6 @@ function fax_myCallback( jobnum ) { <FORM NAME="fax_form"> -<INPUT TYPE="hidden" NAME="invoiced" VALUE="1"> -<INPUT TYPE="hidden" NAME="open" VALUE="1"> -<INPUT TYPE="hidden" NAME="days" VALUE="90"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> </FORM> <SCRIPT TYPE="text/javascript"> @@ -1531,7 +1519,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('owed') > -1) || (field.name.indexOf('invoiced') > -1) || (field.name.indexOf('open') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('days') > -1) || (field.name.indexOf('order_by') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1576,10 +1564,6 @@ function ftp_myCallback( jobnum ) { <FORM NAME="ftp_form"> -<INPUT TYPE="hidden" NAME="invoiced" VALUE="1"> -<INPUT TYPE="hidden" NAME="open" VALUE="1"> -<INPUT TYPE="hidden" NAME="days" VALUE="90"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> </FORM> <SCRIPT TYPE="text/javascript"> @@ -1712,7 +1696,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('owed') > -1) || (field.name.indexOf('invoiced') > -1) || (field.name.indexOf('open') > -1) || (field.name.indexOf('charged') > -1) || (field.name.indexOf('days') > -1) || (field.name.indexOf('order_by') > -1) + if ( (field.name.indexOf('charged') > -1) || (field.name.indexOf('owed') > -1) ) { if ( field.type == 'select-multiple' ) { @@ -1757,10 +1741,6 @@ function spool_myCallback( jobnum ) { <FORM NAME="spool_form"> -<INPUT TYPE="hidden" NAME="invoiced" VALUE="1"> -<INPUT TYPE="hidden" NAME="open" VALUE="1"> -<INPUT TYPE="hidden" NAME="days" VALUE="90"> -<INPUT TYPE="hidden" NAME="order_by" VALUE="cust_bill._date"> </FORM><SCRIPT TYPE="text/javascript"> function confirm_print_process() { @@ -1805,10 +1785,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=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=' + this.options[this.selectedIndex].value;"> <OPTION VALUE="100" SELECTED>100</OPTION> <OPTION VALUE="500" >500</OPTION> @@ -1820,10 +1800,11 @@ function confirm_spool_process() { <BR> - $20769.29 invoiced<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> @@ -1833,12 +1814,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=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=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=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html-print">printable copy</A> </TD> @@ -1851,12 +1832,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=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=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=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%3Aorder_by%3Dinvnum;_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=500">6</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%3Aorder_by%3Dinvnum;_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=1000">11</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%3Aorder_by%3Dinvnum;_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=1400">15</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%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=100"><B><FONT SIZE="+1">Next</FONT></B></A> @@ -1879,7 +1893,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=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" @@ -1888,7 +1902,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=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=gross">Gross Amount</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1897,7 +1911,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=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=discounted">Discount</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1906,7 +1920,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=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=credited">Credits</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1915,7 +1929,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=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=net">Net Amount</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1924,7 +1938,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=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=owed">Balance</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -1933,7 +1947,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=date%3Aorder_by%3Dinvnum;_dummy=1;maxrecords=100;_type=html;offset=0;order_by=_date">Date</A> </TH> <TH CLASS = "grid" BGCOLOR = "#cccccc" @@ -2006,31 +2020,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> @@ -2038,7 +2052,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> @@ -2047,31 +2061,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> @@ -2079,7 +2093,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> @@ -2088,31 +2102,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> @@ -2120,7 +2134,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> @@ -2129,31 +2143,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> @@ -2161,7 +2175,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> @@ -2170,31 +2184,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> @@ -2202,7 +2216,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> @@ -2211,31 +2225,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> @@ -2243,7 +2257,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> @@ -2252,31 +2266,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> @@ -2284,7 +2298,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> @@ -2293,31 +2307,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> @@ -2325,7 +2339,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> @@ -2334,31 +2348,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> @@ -2366,7 +2380,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> @@ -2375,31 +2389,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> @@ -2407,7 +2421,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> @@ -2416,31 +2430,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> @@ -2448,7 +2462,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> @@ -2457,31 +2471,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> @@ -2489,7 +2503,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> @@ -2498,31 +2512,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> @@ -2530,7 +2544,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> @@ -2539,31 +2553,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> @@ -2571,7 +2585,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> @@ -2580,31 +2594,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> @@ -2612,7 +2626,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> @@ -2621,31 +2635,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> @@ -2653,7 +2667,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> @@ -2662,31 +2676,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> @@ -2694,7 +2708,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> @@ -2703,31 +2717,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> @@ -2735,7 +2749,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> @@ -2744,31 +2758,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> @@ -2776,7 +2790,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> @@ -2785,31 +2799,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> @@ -2817,7 +2831,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> @@ -2826,31 +2840,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> @@ -2858,7 +2872,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> @@ -2867,31 +2881,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> @@ -2899,7 +2913,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> @@ -2908,31 +2922,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> @@ -2940,7 +2954,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> @@ -2949,31 +2963,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> @@ -2981,7 +2995,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> @@ -2990,31 +3004,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> @@ -3022,7 +3036,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> @@ -3031,31 +3045,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> @@ -3063,7 +3077,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> @@ -3072,31 +3086,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> @@ -3104,7 +3118,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> @@ -3113,31 +3127,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> @@ -3145,7 +3159,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> @@ -3154,31 +3168,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> @@ -3186,7 +3200,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> @@ -3195,31 +3209,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> @@ -3227,7 +3241,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> @@ -3236,31 +3250,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> @@ -3268,7 +3282,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> @@ -3277,31 +3291,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> @@ -3309,7 +3323,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> @@ -3318,31 +3332,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> @@ -3350,7 +3364,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> @@ -3359,31 +3373,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> @@ -3391,7 +3405,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> @@ -3400,31 +3414,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> @@ -3432,7 +3446,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> @@ -3441,31 +3455,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> @@ -3473,7 +3487,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> @@ -3482,31 +3496,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> @@ -3514,7 +3528,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> @@ -3523,31 +3537,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> @@ -3555,7 +3569,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> @@ -3564,31 +3578,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> @@ -3596,7 +3610,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> @@ -3605,31 +3619,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> @@ -3637,7 +3651,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> @@ -3646,31 +3660,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> @@ -3678,7 +3692,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> @@ -3687,31 +3701,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> @@ -3719,7 +3733,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> @@ -3728,31 +3742,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> @@ -3760,7 +3774,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> @@ -3769,31 +3783,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> @@ -3801,7 +3815,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> @@ -3810,31 +3824,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> @@ -3842,7 +3856,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> @@ -3851,31 +3865,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> @@ -3883,7 +3897,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> @@ -3892,31 +3906,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> @@ -3924,7 +3938,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> @@ -3933,31 +3947,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> @@ -3965,7 +3979,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> @@ -3974,31 +3988,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> @@ -4006,7 +4020,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> @@ -4015,31 +4029,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> @@ -4047,7 +4061,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> @@ -4056,31 +4070,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> @@ -4088,7 +4102,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> @@ -4097,31 +4111,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> @@ -4129,7 +4143,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> @@ -4138,31 +4152,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> @@ -4170,7 +4184,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> @@ -4179,31 +4193,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> @@ -4211,7 +4225,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> @@ -4220,31 +4234,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> @@ -4252,7 +4266,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> @@ -4261,31 +4275,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> @@ -4293,7 +4307,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> @@ -4302,31 +4316,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> @@ -4334,7 +4348,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> @@ -4343,31 +4357,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> @@ -4375,7 +4389,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> @@ -4384,31 +4398,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> @@ -4416,7 +4430,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> @@ -4425,31 +4439,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> @@ -4457,7 +4471,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> @@ -4466,31 +4480,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> @@ -4498,7 +4512,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> @@ -4507,31 +4521,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> @@ -4539,7 +4553,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> @@ -4548,31 +4562,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> @@ -4580,7 +4594,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> @@ -4589,31 +4603,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> @@ -4621,7 +4635,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> @@ -4630,31 +4644,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> @@ -4662,7 +4676,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> @@ -4671,31 +4685,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> @@ -4703,7 +4717,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> @@ -4712,31 +4726,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> @@ -4744,7 +4758,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> @@ -4753,31 +4767,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> @@ -4785,7 +4799,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> @@ -4794,31 +4808,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> @@ -4826,7 +4840,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> @@ -4835,31 +4849,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> @@ -4867,7 +4881,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> @@ -4876,31 +4890,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> @@ -4908,7 +4922,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> @@ -4917,31 +4931,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> @@ -4949,7 +4963,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> @@ -4958,31 +4972,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> @@ -4990,7 +5004,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> @@ -4999,31 +5013,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> @@ -5031,7 +5045,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> @@ -5040,31 +5054,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> @@ -5072,7 +5086,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> @@ -5081,31 +5095,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> @@ -5113,7 +5127,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> @@ -5122,31 +5136,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> @@ -5154,7 +5168,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> @@ -5163,31 +5177,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> @@ -5204,31 +5218,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> @@ -5236,7 +5250,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> @@ -5245,31 +5259,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> @@ -5277,7 +5291,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> @@ -5286,31 +5300,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> @@ -5318,7 +5332,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> @@ -5327,31 +5341,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> @@ -5359,7 +5373,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> @@ -5368,31 +5382,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> @@ -5400,7 +5414,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> @@ -5409,31 +5423,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> @@ -5441,7 +5455,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> @@ -5450,31 +5464,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> @@ -5482,7 +5496,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> @@ -5491,31 +5505,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> @@ -5523,7 +5537,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> @@ -5532,31 +5546,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> @@ -5564,7 +5578,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> @@ -5573,31 +5587,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> @@ -5605,7 +5619,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> @@ -5614,31 +5628,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> @@ -5646,7 +5660,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> @@ -5655,31 +5669,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> @@ -5687,7 +5701,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> @@ -5696,31 +5710,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> @@ -5728,7 +5742,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> @@ -5737,31 +5751,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> @@ -5769,7 +5783,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> @@ -5778,31 +5792,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> @@ -5810,7 +5824,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> @@ -5819,31 +5833,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> @@ -5851,7 +5865,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> @@ -5860,31 +5874,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> @@ -5892,7 +5906,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> @@ -5901,31 +5915,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> @@ -5933,7 +5947,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> @@ -5942,31 +5956,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> @@ -5974,7 +5988,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> @@ -5983,31 +5997,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> @@ -6015,7 +6029,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> @@ -6024,31 +6038,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> @@ -6056,7 +6070,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> @@ -6071,12 +6085,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=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%3Aorder_by%3Dinvnum;_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=300">4</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%3Aorder_by%3Dinvnum;_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=700">8</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%3Aorder_by%3Dinvnum;_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=1200">13</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%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=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=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_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 e2fab498f..669cc7f1d 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 @@ -995,7 +995,7 @@ myMenu63.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" @@ -1004,7 +1004,7 @@ myMenu63.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 e85a89c37..b54c4d61d 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 @@ -981,7 +981,7 @@ myMenu63.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" @@ -990,7 +990,7 @@ myMenu63.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 0f81c0ad8..74c56aeb5 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 @@ -970,7 +970,7 @@ myMenu63.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" @@ -979,7 +979,7 @@ myMenu63.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 8bc4bf37f..f9daec006 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 @@ -970,7 +970,7 @@ myMenu63.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" @@ -979,7 +979,7 @@ myMenu63.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_pkg.cgi/keywords=pkgnum:order_by=pkgnum b/FS-Test/share/output/search/cust_pkg.cgi/keywords=pkgnum:order_by=pkgnum index d2f5d12be..2596bab68 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 @@ -1267,7 +1267,7 @@ myMenu63.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> @@ -1368,7 +1368,7 @@ myMenu63.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> @@ -1469,7 +1469,7 @@ myMenu63.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> @@ -1570,7 +1570,7 @@ myMenu63.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> @@ -1671,7 +1671,7 @@ myMenu63.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> @@ -1772,7 +1772,7 @@ myMenu63.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> @@ -1873,7 +1873,7 @@ myMenu63.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> @@ -1974,7 +1974,7 @@ myMenu63.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> @@ -2075,7 +2075,7 @@ myMenu63.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> @@ -2176,7 +2176,7 @@ myMenu63.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> @@ -2277,7 +2277,7 @@ myMenu63.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> @@ -2378,7 +2378,7 @@ myMenu63.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> @@ -2479,7 +2479,7 @@ myMenu63.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> @@ -2580,7 +2580,7 @@ myMenu63.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> @@ -2681,7 +2681,7 @@ myMenu63.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> @@ -2782,7 +2782,7 @@ myMenu63.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> @@ -2883,7 +2883,7 @@ myMenu63.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> @@ -2984,7 +2984,7 @@ myMenu63.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> @@ -3085,7 +3085,7 @@ myMenu63.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> @@ -3186,7 +3186,7 @@ myMenu63.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> @@ -3287,7 +3287,7 @@ myMenu63.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> @@ -3388,7 +3388,7 @@ myMenu63.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> @@ -3489,7 +3489,7 @@ myMenu63.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> @@ -3590,7 +3590,7 @@ myMenu63.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> @@ -3691,7 +3691,7 @@ myMenu63.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> @@ -3792,7 +3792,7 @@ myMenu63.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> @@ -3893,7 +3893,7 @@ myMenu63.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> @@ -3994,7 +3994,7 @@ myMenu63.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> @@ -4095,7 +4095,7 @@ myMenu63.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> @@ -4196,7 +4196,7 @@ myMenu63.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> @@ -4297,7 +4297,7 @@ myMenu63.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> @@ -4398,7 +4398,7 @@ myMenu63.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> @@ -4499,7 +4499,7 @@ myMenu63.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> @@ -4600,7 +4600,7 @@ myMenu63.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> @@ -4701,7 +4701,7 @@ myMenu63.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> @@ -4802,7 +4802,7 @@ myMenu63.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> @@ -4903,7 +4903,7 @@ myMenu63.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> @@ -5004,7 +5004,7 @@ myMenu63.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> @@ -5105,7 +5105,7 @@ myMenu63.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> @@ -5206,7 +5206,7 @@ myMenu63.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> @@ -5307,7 +5307,7 @@ myMenu63.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> @@ -5408,7 +5408,7 @@ myMenu63.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> @@ -5509,7 +5509,7 @@ myMenu63.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> @@ -5610,7 +5610,7 @@ myMenu63.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> @@ -5711,7 +5711,7 @@ myMenu63.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> @@ -5812,7 +5812,7 @@ myMenu63.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> @@ -5913,7 +5913,7 @@ myMenu63.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> @@ -6014,7 +6014,7 @@ myMenu63.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> @@ -6115,7 +6115,7 @@ myMenu63.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> @@ -6216,7 +6216,7 @@ myMenu63.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> @@ -6317,7 +6317,7 @@ myMenu63.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> @@ -6418,7 +6418,7 @@ myMenu63.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> @@ -6519,7 +6519,7 @@ myMenu63.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> @@ -6620,7 +6620,7 @@ myMenu63.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> @@ -6721,7 +6721,7 @@ myMenu63.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> @@ -6822,7 +6822,7 @@ myMenu63.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> @@ -6923,7 +6923,7 @@ myMenu63.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> @@ -7024,7 +7024,7 @@ myMenu63.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> @@ -7125,7 +7125,7 @@ myMenu63.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> @@ -7226,7 +7226,7 @@ myMenu63.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> @@ -7327,7 +7327,7 @@ myMenu63.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> @@ -7428,7 +7428,7 @@ myMenu63.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> @@ -7529,7 +7529,7 @@ myMenu63.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> @@ -7630,7 +7630,7 @@ myMenu63.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> @@ -7731,7 +7731,7 @@ myMenu63.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> @@ -7832,7 +7832,7 @@ myMenu63.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> @@ -7933,7 +7933,7 @@ myMenu63.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> @@ -8034,7 +8034,7 @@ myMenu63.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> @@ -8135,7 +8135,7 @@ myMenu63.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> @@ -8236,7 +8236,7 @@ myMenu63.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> @@ -8337,7 +8337,7 @@ myMenu63.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> @@ -8438,7 +8438,7 @@ myMenu63.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> @@ -8539,7 +8539,7 @@ myMenu63.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> @@ -8640,7 +8640,7 @@ myMenu63.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> @@ -8741,7 +8741,7 @@ myMenu63.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> @@ -8842,7 +8842,7 @@ myMenu63.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> @@ -8943,7 +8943,7 @@ myMenu63.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> @@ -9044,7 +9044,7 @@ myMenu63.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> @@ -9145,7 +9145,7 @@ myMenu63.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> @@ -9246,7 +9246,7 @@ myMenu63.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> @@ -9347,7 +9347,7 @@ myMenu63.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> @@ -9448,7 +9448,7 @@ myMenu63.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> @@ -9549,7 +9549,7 @@ myMenu63.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> @@ -9650,7 +9650,7 @@ myMenu63.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> @@ -9751,7 +9751,7 @@ myMenu63.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> @@ -9852,7 +9852,7 @@ myMenu63.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> @@ -9953,7 +9953,7 @@ myMenu63.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> @@ -10054,7 +10054,7 @@ myMenu63.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> @@ -10155,7 +10155,7 @@ myMenu63.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> @@ -10256,7 +10256,7 @@ myMenu63.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> @@ -10357,7 +10357,7 @@ myMenu63.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> @@ -10458,7 +10458,7 @@ myMenu63.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> @@ -10559,7 +10559,7 @@ myMenu63.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> @@ -10660,7 +10660,7 @@ myMenu63.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> @@ -10761,7 +10761,7 @@ myMenu63.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> @@ -10862,7 +10862,7 @@ myMenu63.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> @@ -10963,7 +10963,7 @@ myMenu63.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> @@ -11064,7 +11064,7 @@ myMenu63.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> @@ -11165,7 +11165,7 @@ myMenu63.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> @@ -11266,7 +11266,7 @@ myMenu63.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 17d61b547..ce4af260a 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 @@ -859,7 +859,7 @@ myMenu63.width = 256; ->Change these packages</A><BR><A HREF="http://localhost/freeside/misc/email-customers.html?table=cust_pkg&agent_virt_agentnum=&magic=bill&setup=0&setup=1446361199&classnum=0&pkgpart=5&pkgpart=2&query=0">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> @@ -1252,7 +1252,7 @@ myMenu63.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> @@ -1353,7 +1353,7 @@ myMenu63.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> @@ -1454,7 +1454,7 @@ myMenu63.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> @@ -1555,7 +1555,7 @@ myMenu63.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> @@ -1656,7 +1656,7 @@ myMenu63.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> @@ -1757,7 +1757,7 @@ myMenu63.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> @@ -1858,7 +1858,7 @@ myMenu63.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> @@ -1959,7 +1959,7 @@ myMenu63.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> @@ -2060,7 +2060,7 @@ myMenu63.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> @@ -2161,7 +2161,7 @@ myMenu63.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> @@ -2262,7 +2262,7 @@ myMenu63.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> @@ -2363,7 +2363,7 @@ myMenu63.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> @@ -2464,7 +2464,7 @@ myMenu63.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> @@ -2565,7 +2565,7 @@ myMenu63.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> @@ -2666,7 +2666,7 @@ myMenu63.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> @@ -2767,7 +2767,7 @@ myMenu63.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> @@ -2868,7 +2868,7 @@ myMenu63.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> @@ -2969,7 +2969,7 @@ myMenu63.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> @@ -3070,7 +3070,7 @@ myMenu63.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> @@ -3171,7 +3171,7 @@ myMenu63.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> @@ -3272,7 +3272,7 @@ myMenu63.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> @@ -3373,7 +3373,7 @@ myMenu63.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> @@ -3474,7 +3474,7 @@ myMenu63.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> @@ -3575,7 +3575,7 @@ myMenu63.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> @@ -3676,7 +3676,7 @@ myMenu63.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> @@ -3777,7 +3777,7 @@ myMenu63.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> @@ -3878,7 +3878,7 @@ myMenu63.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> @@ -3979,7 +3979,7 @@ myMenu63.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> @@ -4080,7 +4080,7 @@ myMenu63.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> @@ -4181,7 +4181,7 @@ myMenu63.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> @@ -4282,7 +4282,7 @@ myMenu63.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> @@ -4383,7 +4383,7 @@ myMenu63.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> @@ -4484,7 +4484,7 @@ myMenu63.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> @@ -4585,7 +4585,7 @@ myMenu63.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> @@ -4686,7 +4686,7 @@ myMenu63.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> @@ -4787,7 +4787,7 @@ myMenu63.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> @@ -4888,7 +4888,7 @@ myMenu63.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> @@ -4989,7 +4989,7 @@ myMenu63.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> @@ -5090,7 +5090,7 @@ myMenu63.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> @@ -5191,7 +5191,7 @@ myMenu63.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> @@ -5292,7 +5292,7 @@ myMenu63.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> @@ -5393,7 +5393,7 @@ myMenu63.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> @@ -5494,7 +5494,7 @@ myMenu63.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> @@ -5595,7 +5595,7 @@ myMenu63.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> @@ -5696,7 +5696,7 @@ myMenu63.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> @@ -5797,7 +5797,7 @@ myMenu63.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> @@ -5898,7 +5898,7 @@ myMenu63.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> @@ -5999,7 +5999,7 @@ myMenu63.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> @@ -6100,7 +6100,7 @@ myMenu63.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> @@ -6201,7 +6201,7 @@ myMenu63.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> @@ -6302,7 +6302,7 @@ myMenu63.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> @@ -6403,7 +6403,7 @@ myMenu63.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> @@ -6504,7 +6504,7 @@ myMenu63.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> @@ -6605,7 +6605,7 @@ myMenu63.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> @@ -6706,7 +6706,7 @@ myMenu63.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> @@ -6807,7 +6807,7 @@ myMenu63.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> @@ -6908,7 +6908,7 @@ myMenu63.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> @@ -7009,7 +7009,7 @@ myMenu63.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> @@ -7110,7 +7110,7 @@ myMenu63.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> @@ -7211,7 +7211,7 @@ myMenu63.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> @@ -7312,7 +7312,7 @@ myMenu63.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> @@ -7413,7 +7413,7 @@ myMenu63.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> @@ -7514,7 +7514,7 @@ myMenu63.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> @@ -7615,7 +7615,7 @@ myMenu63.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> @@ -7716,7 +7716,7 @@ myMenu63.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> @@ -7817,7 +7817,7 @@ myMenu63.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> @@ -7918,7 +7918,7 @@ myMenu63.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> @@ -8019,7 +8019,7 @@ myMenu63.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> @@ -8120,7 +8120,7 @@ myMenu63.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> @@ -8221,7 +8221,7 @@ myMenu63.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> @@ -8322,7 +8322,7 @@ myMenu63.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> @@ -8423,7 +8423,7 @@ myMenu63.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> @@ -8524,7 +8524,7 @@ myMenu63.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> @@ -8625,7 +8625,7 @@ myMenu63.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> @@ -8726,7 +8726,7 @@ myMenu63.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> @@ -8827,7 +8827,7 @@ myMenu63.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> @@ -8928,7 +8928,7 @@ myMenu63.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> @@ -9029,7 +9029,7 @@ myMenu63.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> @@ -9130,7 +9130,7 @@ myMenu63.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> @@ -9231,7 +9231,7 @@ myMenu63.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> @@ -9332,7 +9332,7 @@ myMenu63.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> @@ -9433,7 +9433,7 @@ myMenu63.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> @@ -9534,7 +9534,7 @@ myMenu63.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> @@ -9635,7 +9635,7 @@ myMenu63.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> @@ -9736,7 +9736,7 @@ myMenu63.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> @@ -9837,7 +9837,7 @@ myMenu63.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> @@ -9938,7 +9938,7 @@ myMenu63.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> @@ -10039,7 +10039,7 @@ myMenu63.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> @@ -10140,7 +10140,7 @@ myMenu63.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> @@ -10241,7 +10241,7 @@ myMenu63.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> @@ -10342,7 +10342,7 @@ myMenu63.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> @@ -10443,7 +10443,7 @@ myMenu63.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> @@ -10544,7 +10544,7 @@ myMenu63.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> @@ -10645,7 +10645,7 @@ myMenu63.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> @@ -10746,7 +10746,7 @@ myMenu63.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> @@ -10847,7 +10847,7 @@ myMenu63.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> @@ -10948,7 +10948,7 @@ myMenu63.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> @@ -11049,7 +11049,7 @@ myMenu63.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> @@ -11150,7 +11150,7 @@ myMenu63.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> @@ -11251,7 +11251,7 @@ myMenu63.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 108e80195..b0b2cff4b 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 @@ -859,7 +859,7 @@ myMenu63.width = 256; ->Change these packages</A><BR><A HREF="http://localhost/freeside/misc/email-customers.html?table=cust_pkg&agent_virt_agentnum=&custnum=135&query=0&magic=bill">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=&custnum=135&magic=bill&query=0">Email a notice to these customers</A> <BR><BR> @@ -1235,7 +1235,7 @@ myMenu63.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> @@ -1336,7 +1336,7 @@ myMenu63.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> @@ -1437,7 +1437,7 @@ myMenu63.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/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 495acb3d4..cf7990feb 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 @@ -1144,15 +1144,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=2;show=packages;fragment=cust_pkg2#cust_pkg2">2</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=4;show=packages;fragment=cust_pkg10#cust_pkg10">10</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=2;show=packages;fragment=cust_pkg2#cust_pkg2">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=4;show=packages;fragment=cust_pkg10#cust_pkg10">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=2;show=packages;fragment=cust_pkg2#cust_pkg2">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=4;show=packages;fragment=cust_pkg10#cust_pkg10">Monthly prorated account</A></TD> @@ -1180,7 +1180,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 09 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 19 2015</TD> @@ -1228,7 +1228,7 @@ myMenu63.width = 256; - <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?4">Bartoletti, Theodora</A></TD> @@ -1241,15 +1241,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=4;show=packages;fragment=cust_pkg10#cust_pkg10">10</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=2;show=packages;fragment=cust_pkg2#cust_pkg2">2</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=4;show=packages;fragment=cust_pkg10#cust_pkg10">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=2;show=packages;fragment=cust_pkg2#cust_pkg2">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=4;show=packages;fragment=cust_pkg10#cust_pkg10">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=2;show=packages;fragment=cust_pkg2#cust_pkg2">Monthly prorated account</A></TD> @@ -1277,7 +1277,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 19 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 09 2015</TD> @@ -1325,7 +1325,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?4">Bartoletti, Theodora</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?2">Schowalter, Oswald</A></TD> @@ -1338,15 +1338,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=5;show=packages;fragment=cust_pkg12#cust_pkg12">12</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=8;show=packages;fragment=cust_pkg22#cust_pkg22">22</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=5;show=packages;fragment=cust_pkg12#cust_pkg12">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=8;show=packages;fragment=cust_pkg22#cust_pkg22">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=5;show=packages;fragment=cust_pkg12#cust_pkg12">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=8;show=packages;fragment=cust_pkg22#cust_pkg22">Monthly prorated account</A></TD> @@ -1374,11 +1374,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 13 2016</TD> + <TD CLASS="grid" ALIGN=right >Sep 28 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 13 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -1422,11 +1422,11 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?8">Douglas, Willow</A></TD> - <TD CLASS="grid" ALIGN=right >Jan 13 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -1435,15 +1435,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=6;show=packages;fragment=cust_pkg14#cust_pkg14">14</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=9;show=packages;fragment=cust_pkg24#cust_pkg24">24</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=6;show=packages;fragment=cust_pkg14#cust_pkg14">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=9;show=packages;fragment=cust_pkg24#cust_pkg24">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=6;show=packages;fragment=cust_pkg14#cust_pkg14">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=9;show=packages;fragment=cust_pkg24#cust_pkg24">Monthly prorated account</A></TD> @@ -1471,7 +1471,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 02 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 25 2015</TD> @@ -1519,7 +1519,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?6">Johnston, Delphine</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?9">Ankunding, Fahey and Satterfield (Willms, Marcelle)</A></TD> @@ -1532,15 +1532,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=8;show=packages;fragment=cust_pkg22#cust_pkg22">22</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=6;show=packages;fragment=cust_pkg14#cust_pkg14">14</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=8;show=packages;fragment=cust_pkg22#cust_pkg22">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=6;show=packages;fragment=cust_pkg14#cust_pkg14">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=8;show=packages;fragment=cust_pkg22#cust_pkg22">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=6;show=packages;fragment=cust_pkg14#cust_pkg14">Monthly prorated account</A></TD> @@ -1568,7 +1568,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 28 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 02 2015</TD> @@ -1616,7 +1616,7 @@ myMenu63.width = 256; - <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?6">Johnston, Delphine</A></TD> @@ -1629,15 +1629,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=9;show=packages;fragment=cust_pkg24#cust_pkg24">24</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=10;show=packages;fragment=cust_pkg26#cust_pkg26">26</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=9;show=packages;fragment=cust_pkg24#cust_pkg24">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=10;show=packages;fragment=cust_pkg26#cust_pkg26">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=9;show=packages;fragment=cust_pkg24#cust_pkg24">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=10;show=packages;fragment=cust_pkg26#cust_pkg26">Monthly prorated account</A></TD> @@ -1665,7 +1665,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 25 2015</TD> + <TD CLASS="grid" ALIGN=right >Aug 14 2015</TD> @@ -1713,7 +1713,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?9">Ankunding, Fahey and Satterfield (Willms, Marcelle)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?10">Grady, Aniya</A></TD> @@ -1726,15 +1726,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=10;show=packages;fragment=cust_pkg26#cust_pkg26">26</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=16;show=packages;fragment=cust_pkg46#cust_pkg46">46</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=10;show=packages;fragment=cust_pkg26#cust_pkg26">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=16;show=packages;fragment=cust_pkg46#cust_pkg46">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=10;show=packages;fragment=cust_pkg26#cust_pkg26">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=16;show=packages;fragment=cust_pkg46#cust_pkg46">Monthly prorated account</A></TD> @@ -1762,7 +1762,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 14 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 14 2015</TD> @@ -1810,7 +1810,7 @@ myMenu63.width = 256; - <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?16">McDermott, Alejandra</A></TD> @@ -1823,15 +1823,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=12;show=packages;fragment=cust_pkg34#cust_pkg34">34</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=20;show=packages;fragment=cust_pkg58#cust_pkg58">58</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=12;show=packages;fragment=cust_pkg34#cust_pkg34">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=20;show=packages;fragment=cust_pkg58#cust_pkg58">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=12;show=packages;fragment=cust_pkg34#cust_pkg34">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=20;show=packages;fragment=cust_pkg58#cust_pkg58">Monthly prorated account</A></TD> @@ -1859,11 +1859,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 16 2016</TD> + <TD CLASS="grid" ALIGN=right >Oct 19 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 16 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -1907,11 +1907,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?12">Kuhlman, Niko</A></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 >Jan 16 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -1920,15 +1920,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=13;show=packages;fragment=cust_pkg36#cust_pkg36">36</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=14;show=packages;fragment=cust_pkg38#cust_pkg38">38</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=13;show=packages;fragment=cust_pkg36#cust_pkg36">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=14;show=packages;fragment=cust_pkg38#cust_pkg38">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=13;show=packages;fragment=cust_pkg36#cust_pkg36">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=14;show=packages;fragment=cust_pkg38#cust_pkg38">Monthly prorated account</A></TD> @@ -1956,7 +1956,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 12 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 17 2015</TD> @@ -2004,7 +2004,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?14">Fritsch, Earnestine</A></TD> @@ -2017,15 +2017,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=14;show=packages;fragment=cust_pkg38#cust_pkg38">38</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=13;show=packages;fragment=cust_pkg36#cust_pkg36">36</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=14;show=packages;fragment=cust_pkg38#cust_pkg38">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=13;show=packages;fragment=cust_pkg36#cust_pkg36">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=14;show=packages;fragment=cust_pkg38#cust_pkg38">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=13;show=packages;fragment=cust_pkg36#cust_pkg36">Monthly prorated account</A></TD> @@ -2053,7 +2053,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 17 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 12 2015</TD> @@ -2101,7 +2101,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?14">Fritsch, Earnestine</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?13">Feest, Bechtelar and Harber (Douglas, Geovany)</A></TD> @@ -2114,15 +2114,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=16;show=packages;fragment=cust_pkg46#cust_pkg46">46</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=17;show=packages;fragment=cust_pkg48#cust_pkg48">48</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=16;show=packages;fragment=cust_pkg46#cust_pkg46">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=17;show=packages;fragment=cust_pkg48#cust_pkg48">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=16;show=packages;fragment=cust_pkg46#cust_pkg46">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=17;show=packages;fragment=cust_pkg48#cust_pkg48">Monthly prorated account</A></TD> @@ -2150,7 +2150,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 14 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 21 2015</TD> @@ -2198,7 +2198,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?16">McDermott, Alejandra</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?17">Leffler, Abshire and Orn (Hyatt, Reggie)</A></TD> @@ -2211,15 +2211,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=17;show=packages;fragment=cust_pkg48#cust_pkg48">48</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=18;show=packages;fragment=cust_pkg50#cust_pkg50">50</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=17;show=packages;fragment=cust_pkg48#cust_pkg48">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=18;show=packages;fragment=cust_pkg50#cust_pkg50">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=17;show=packages;fragment=cust_pkg48#cust_pkg48">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=18;show=packages;fragment=cust_pkg50#cust_pkg50">Monthly prorated account</A></TD> @@ -2247,7 +2247,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 21 2015</TD> + <TD CLASS="grid" ALIGN=right >Aug 08 2015</TD> @@ -2295,7 +2295,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?18">Zemlak, Asia</A></TD> @@ -2308,15 +2308,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=18;show=packages;fragment=cust_pkg50#cust_pkg50">50</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=21;show=packages;fragment=cust_pkg60#cust_pkg60">60</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=18;show=packages;fragment=cust_pkg50#cust_pkg50">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=21;show=packages;fragment=cust_pkg60#cust_pkg60">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=18;show=packages;fragment=cust_pkg50#cust_pkg50">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=21;show=packages;fragment=cust_pkg60#cust_pkg60">Monthly prorated account</A></TD> @@ -2344,7 +2344,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 08 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 16 2015</TD> @@ -2392,7 +2392,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?18">Zemlak, Asia</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?21">Zemlak and Sons (Swift, Maximilian)</A></TD> @@ -2405,15 +2405,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=20;show=packages;fragment=cust_pkg58#cust_pkg58">58</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=28;show=packages;fragment=cust_pkg82#cust_pkg82">82</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=20;show=packages;fragment=cust_pkg58#cust_pkg58">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=28;show=packages;fragment=cust_pkg82#cust_pkg82">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=20;show=packages;fragment=cust_pkg58#cust_pkg58">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=28;show=packages;fragment=cust_pkg82#cust_pkg82">Monthly prorated account</A></TD> @@ -2441,7 +2441,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 19 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 13 2015</TD> @@ -2489,7 +2489,7 @@ myMenu63.width = 256; - <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?28">Hackett, Garnet</A></TD> @@ -2502,15 +2502,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=21;show=packages;fragment=cust_pkg60#cust_pkg60">60</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=24;show=packages;fragment=cust_pkg70#cust_pkg70">70</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=21;show=packages;fragment=cust_pkg60#cust_pkg60">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=24;show=packages;fragment=cust_pkg70#cust_pkg70">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=21;show=packages;fragment=cust_pkg60#cust_pkg60">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=24;show=packages;fragment=cust_pkg70#cust_pkg70">Monthly prorated account</A></TD> @@ -2538,7 +2538,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 16 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 10 2015</TD> @@ -2586,7 +2586,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?24">Conn, Marisol</A></TD> @@ -2599,15 +2599,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=22;show=packages;fragment=cust_pkg62#cust_pkg62">62</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=25;show=packages;fragment=cust_pkg72#cust_pkg72">72</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=22;show=packages;fragment=cust_pkg62#cust_pkg62">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=25;show=packages;fragment=cust_pkg72#cust_pkg72">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=22;show=packages;fragment=cust_pkg62#cust_pkg62">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=25;show=packages;fragment=cust_pkg72#cust_pkg72">Monthly prorated account</A></TD> @@ -2635,11 +2635,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 26 2016</TD> + <TD CLASS="grid" ALIGN=right >Aug 19 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 26 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -2683,11 +2683,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?22">Johnston, Florence</A></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 >Jan 26 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -2696,15 +2696,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=24;show=packages;fragment=cust_pkg70#cust_pkg70">70</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=29;show=packages;fragment=cust_pkg84#cust_pkg84">84</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=24;show=packages;fragment=cust_pkg70#cust_pkg70">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=29;show=packages;fragment=cust_pkg84#cust_pkg84">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=24;show=packages;fragment=cust_pkg70#cust_pkg70">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=29;show=packages;fragment=cust_pkg84#cust_pkg84">Monthly prorated account</A></TD> @@ -2732,7 +2732,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 10 2015</TD> + <TD CLASS="grid" ALIGN=right >Aug 22 2015</TD> @@ -2780,7 +2780,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?24">Conn, Marisol</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?29">Lehner-Klein (Smitham, Pansy)</A></TD> @@ -2793,15 +2793,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=25;show=packages;fragment=cust_pkg72#cust_pkg72">72</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=30;show=packages;fragment=cust_pkg86#cust_pkg86">86</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=25;show=packages;fragment=cust_pkg72#cust_pkg72">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=30;show=packages;fragment=cust_pkg86#cust_pkg86">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=25;show=packages;fragment=cust_pkg72#cust_pkg72">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=30;show=packages;fragment=cust_pkg86#cust_pkg86">Monthly prorated account</A></TD> @@ -2829,7 +2829,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 19 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 28 2015</TD> @@ -2877,7 +2877,7 @@ myMenu63.width = 256; - <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?30">Toy, Bethany</A></TD> @@ -2987,15 +2987,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=28;show=packages;fragment=cust_pkg82#cust_pkg82">82</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=32;show=packages;fragment=cust_pkg94#cust_pkg94">94</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=28;show=packages;fragment=cust_pkg82#cust_pkg82">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=32;show=packages;fragment=cust_pkg94#cust_pkg94">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=28;show=packages;fragment=cust_pkg82#cust_pkg82">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=32;show=packages;fragment=cust_pkg94#cust_pkg94">Monthly prorated account</A></TD> @@ -3023,7 +3023,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 13 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 21 2015</TD> @@ -3071,7 +3071,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?28">Hackett, Garnet</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?32">Swaniawski, Adrienne</A></TD> @@ -3084,15 +3084,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=29;show=packages;fragment=cust_pkg84#cust_pkg84">84</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=33;show=packages;fragment=cust_pkg96#cust_pkg96">96</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=29;show=packages;fragment=cust_pkg84#cust_pkg84">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=33;show=packages;fragment=cust_pkg96#cust_pkg96">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=29;show=packages;fragment=cust_pkg84#cust_pkg84">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=33;show=packages;fragment=cust_pkg96#cust_pkg96">Monthly prorated account</A></TD> @@ -3120,7 +3120,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 22 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 11 2015</TD> @@ -3168,7 +3168,7 @@ myMenu63.width = 256; - <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?33">Buckridge, Spinka and Gerlach (Larkin, Lue)</A></TD> @@ -3181,15 +3181,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=30;show=packages;fragment=cust_pkg86#cust_pkg86">86</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=37;show=packages;fragment=cust_pkg108#cust_pkg108">108</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=30;show=packages;fragment=cust_pkg86#cust_pkg86">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=37;show=packages;fragment=cust_pkg108#cust_pkg108">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=30;show=packages;fragment=cust_pkg86#cust_pkg86">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=37;show=packages;fragment=cust_pkg108#cust_pkg108">Monthly prorated account</A></TD> @@ -3217,7 +3217,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 28 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 18 2015</TD> @@ -3265,7 +3265,7 @@ myMenu63.width = 256; - <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?37">Hodkiewicz-Raynor (Macejkovic, Leann)</A></TD> @@ -3278,15 +3278,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=32;show=packages;fragment=cust_pkg94#cust_pkg94">94</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=40;show=packages;fragment=cust_pkg118#cust_pkg118">118</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=32;show=packages;fragment=cust_pkg94#cust_pkg94">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=40;show=packages;fragment=cust_pkg118#cust_pkg118">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=32;show=packages;fragment=cust_pkg94#cust_pkg94">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=40;show=packages;fragment=cust_pkg118#cust_pkg118">Monthly prorated account</A></TD> @@ -3314,7 +3314,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 21 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 13 2015</TD> @@ -3362,7 +3362,7 @@ myMenu63.width = 256; - <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?40">Brekke, Tillman</A></TD> @@ -3375,15 +3375,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=33;show=packages;fragment=cust_pkg96#cust_pkg96">96</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=34;show=packages;fragment=cust_pkg98#cust_pkg98">98</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=33;show=packages;fragment=cust_pkg96#cust_pkg96">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=34;show=packages;fragment=cust_pkg98#cust_pkg98">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=33;show=packages;fragment=cust_pkg96#cust_pkg96">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=34;show=packages;fragment=cust_pkg98#cust_pkg98">Monthly prorated account</A></TD> @@ -3411,7 +3411,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 11 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 14 2015</TD> @@ -3459,7 +3459,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?34">Kunde, Noemi</A></TD> @@ -3472,15 +3472,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=34;show=packages;fragment=cust_pkg98#cust_pkg98">98</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=38;show=packages;fragment=cust_pkg110#cust_pkg110">110</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=34;show=packages;fragment=cust_pkg98#cust_pkg98">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=38;show=packages;fragment=cust_pkg110#cust_pkg110">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=34;show=packages;fragment=cust_pkg98#cust_pkg98">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=38;show=packages;fragment=cust_pkg110#cust_pkg110">Monthly prorated account</A></TD> @@ -3508,7 +3508,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 14 2015</TD> + <TD CLASS="grid" ALIGN=right >Aug 26 2015</TD> @@ -3556,7 +3556,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?34">Kunde, Noemi</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?38">Christiansen, Leone</A></TD> @@ -3569,15 +3569,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=36;show=packages;fragment=cust_pkg106#cust_pkg106">106</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=48;show=packages;fragment=cust_pkg142#cust_pkg142">142</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=36;show=packages;fragment=cust_pkg106#cust_pkg106">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=48;show=packages;fragment=cust_pkg142#cust_pkg142">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=36;show=packages;fragment=cust_pkg106#cust_pkg106">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=48;show=packages;fragment=cust_pkg142#cust_pkg142">Monthly prorated account</A></TD> @@ -3605,11 +3605,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 21 2016</TD> + <TD CLASS="grid" ALIGN=right >Nov 21 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 21 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -3653,11 +3653,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?36">Cronin, Javier</A></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 >Jan 21 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -3666,15 +3666,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=37;show=packages;fragment=cust_pkg108#cust_pkg108">108</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=44;show=packages;fragment=cust_pkg130#cust_pkg130">130</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=37;show=packages;fragment=cust_pkg108#cust_pkg108">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=44;show=packages;fragment=cust_pkg130#cust_pkg130">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=37;show=packages;fragment=cust_pkg108#cust_pkg108">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=44;show=packages;fragment=cust_pkg130#cust_pkg130">Monthly prorated account</A></TD> @@ -3702,7 +3702,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 18 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 22 2015</TD> @@ -3750,7 +3750,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?44">Kling, Pearlie</A></TD> @@ -3763,15 +3763,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=38;show=packages;fragment=cust_pkg110#cust_pkg110">110</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=45;show=packages;fragment=cust_pkg132#cust_pkg132">132</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=38;show=packages;fragment=cust_pkg110#cust_pkg110">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=45;show=packages;fragment=cust_pkg132#cust_pkg132">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=38;show=packages;fragment=cust_pkg110#cust_pkg110">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=45;show=packages;fragment=cust_pkg132#cust_pkg132">Monthly prorated account</A></TD> @@ -3799,7 +3799,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 26 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 05 2015</TD> @@ -3847,7 +3847,7 @@ myMenu63.width = 256; - <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?45">Shanahan LLC (Brown, Ceasar)</A></TD> @@ -3860,15 +3860,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=40;show=packages;fragment=cust_pkg118#cust_pkg118">118</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=50;show=packages;fragment=cust_pkg146#cust_pkg146">146</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=40;show=packages;fragment=cust_pkg118#cust_pkg118">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=50;show=packages;fragment=cust_pkg146#cust_pkg146">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=40;show=packages;fragment=cust_pkg118#cust_pkg118">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=50;show=packages;fragment=cust_pkg146#cust_pkg146">Monthly prorated account</A></TD> @@ -3896,7 +3896,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 13 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 14 2015</TD> @@ -3944,7 +3944,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?40">Brekke, Tillman</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?50">Marquardt, Abbey</A></TD> @@ -3957,15 +3957,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=41;show=packages;fragment=cust_pkg120#cust_pkg120">120</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=49;show=packages;fragment=cust_pkg144#cust_pkg144">144</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=41;show=packages;fragment=cust_pkg120#cust_pkg120">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=49;show=packages;fragment=cust_pkg144#cust_pkg144">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=41;show=packages;fragment=cust_pkg120#cust_pkg120">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=49;show=packages;fragment=cust_pkg144#cust_pkg144">Monthly prorated account</A></TD> @@ -3993,11 +3993,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 22 2016</TD> + <TD CLASS="grid" ALIGN=right >Oct 08 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 22 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -4041,11 +4041,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?41">Torphy Group (Glover, Casandra)</A></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 >Jan 22 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -4054,15 +4054,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=42;show=packages;fragment=cust_pkg122#cust_pkg122">122</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=46;show=packages;fragment=cust_pkg134#cust_pkg134">134</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=42;show=packages;fragment=cust_pkg122#cust_pkg122">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=46;show=packages;fragment=cust_pkg134#cust_pkg134">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=42;show=packages;fragment=cust_pkg122#cust_pkg122">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=46;show=packages;fragment=cust_pkg134#cust_pkg134">Monthly prorated account</A></TD> @@ -4090,11 +4090,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 16 2016</TD> + <TD CLASS="grid" ALIGN=right >Aug 12 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 16 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -4138,11 +4138,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?42">Kuhic, Gia</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?46">Steuber, Ryley</A></TD> - <TD CLASS="grid" ALIGN=right >Jan 16 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -4151,15 +4151,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=44;show=packages;fragment=cust_pkg130#cust_pkg130">130</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=52;show=packages;fragment=cust_pkg154#cust_pkg154">154</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=44;show=packages;fragment=cust_pkg130#cust_pkg130">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=52;show=packages;fragment=cust_pkg154#cust_pkg154">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=44;show=packages;fragment=cust_pkg130#cust_pkg130">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=52;show=packages;fragment=cust_pkg154#cust_pkg154">Monthly prorated account</A></TD> @@ -4187,7 +4187,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 22 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 21 2015</TD> @@ -4235,7 +4235,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?44">Kling, Pearlie</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?52">Frami, Gayle</A></TD> @@ -4248,15 +4248,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=45;show=packages;fragment=cust_pkg132#cust_pkg132">132</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=53;show=packages;fragment=cust_pkg156#cust_pkg156">156</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=45;show=packages;fragment=cust_pkg132#cust_pkg132">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=53;show=packages;fragment=cust_pkg156#cust_pkg156">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=45;show=packages;fragment=cust_pkg132#cust_pkg132">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=53;show=packages;fragment=cust_pkg156#cust_pkg156">Monthly prorated account</A></TD> @@ -4284,7 +4284,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 05 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 20 2015</TD> @@ -4332,7 +4332,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?53">Balistreri-Schoen (Schultz, Jaylan)</A></TD> @@ -4345,15 +4345,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=46;show=packages;fragment=cust_pkg134#cust_pkg134">134</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=56;show=packages;fragment=cust_pkg166#cust_pkg166">166</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=46;show=packages;fragment=cust_pkg134#cust_pkg134">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=56;show=packages;fragment=cust_pkg166#cust_pkg166">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=46;show=packages;fragment=cust_pkg134#cust_pkg134">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=56;show=packages;fragment=cust_pkg166#cust_pkg166">Monthly prorated account</A></TD> @@ -4381,7 +4381,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 12 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 31 2015</TD> @@ -4429,7 +4429,7 @@ myMenu63.width = 256; - <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?56">Morar, Braulio</A></TD> @@ -4442,15 +4442,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=48;show=packages;fragment=cust_pkg142#cust_pkg142">142</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=60;show=packages;fragment=cust_pkg178#cust_pkg178">178</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=48;show=packages;fragment=cust_pkg142#cust_pkg142">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=60;show=packages;fragment=cust_pkg178#cust_pkg178">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=48;show=packages;fragment=cust_pkg142#cust_pkg142">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=60;show=packages;fragment=cust_pkg178#cust_pkg178">Monthly prorated account</A></TD> @@ -4478,7 +4478,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 21 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 24 2015</TD> @@ -4526,7 +4526,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?48">Mohr, Florine</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?60">Goldner, Verlie</A></TD> @@ -4539,15 +4539,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=49;show=packages;fragment=cust_pkg144#cust_pkg144">144</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=58;show=packages;fragment=cust_pkg170#cust_pkg170">170</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=49;show=packages;fragment=cust_pkg144#cust_pkg144">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=58;show=packages;fragment=cust_pkg170#cust_pkg170">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=49;show=packages;fragment=cust_pkg144#cust_pkg144">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=58;show=packages;fragment=cust_pkg170#cust_pkg170">Monthly prorated account</A></TD> @@ -4575,7 +4575,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 08 2015</TD> + <TD CLASS="grid" ALIGN=right >Aug 31 2015</TD> @@ -4623,7 +4623,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?58">Schultz, Colten</A></TD> @@ -4636,15 +4636,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=50;show=packages;fragment=cust_pkg146#cust_pkg146">146</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=62;show=packages;fragment=cust_pkg182#cust_pkg182">182</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=50;show=packages;fragment=cust_pkg146#cust_pkg146">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=62;show=packages;fragment=cust_pkg182#cust_pkg182">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=50;show=packages;fragment=cust_pkg146#cust_pkg146">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=62;show=packages;fragment=cust_pkg182#cust_pkg182">Monthly prorated account</A></TD> @@ -4672,7 +4672,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 14 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 21 2015</TD> @@ -4720,7 +4720,7 @@ myMenu63.width = 256; - <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?62">Turcotte, Webster</A></TD> @@ -4733,15 +4733,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=52;show=packages;fragment=cust_pkg154#cust_pkg154">154</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=61;show=packages;fragment=cust_pkg180#cust_pkg180">180</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=52;show=packages;fragment=cust_pkg154#cust_pkg154">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=61;show=packages;fragment=cust_pkg180#cust_pkg180">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=52;show=packages;fragment=cust_pkg154#cust_pkg154">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=61;show=packages;fragment=cust_pkg180#cust_pkg180">Monthly prorated account</A></TD> @@ -4769,7 +4769,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 21 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 02 2015</TD> @@ -4817,7 +4817,7 @@ myMenu63.width = 256; - <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?61">Leuschke-Stamm (Dibbert, Betsy)</A></TD> @@ -4830,15 +4830,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=53;show=packages;fragment=cust_pkg156#cust_pkg156">156</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=54;show=packages;fragment=cust_pkg158#cust_pkg158">158</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=53;show=packages;fragment=cust_pkg156#cust_pkg156">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=54;show=packages;fragment=cust_pkg158#cust_pkg158">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=53;show=packages;fragment=cust_pkg156#cust_pkg156">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=54;show=packages;fragment=cust_pkg158#cust_pkg158">Monthly prorated account</A></TD> @@ -4866,7 +4866,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 20 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 30 2015</TD> @@ -4914,7 +4914,7 @@ myMenu63.width = 256; - <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?54">Thiel, Dagmar</A></TD> @@ -4927,15 +4927,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=54;show=packages;fragment=cust_pkg158#cust_pkg158">158</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=57;show=packages;fragment=cust_pkg168#cust_pkg168">168</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=54;show=packages;fragment=cust_pkg158#cust_pkg158">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=57;show=packages;fragment=cust_pkg168#cust_pkg168">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=54;show=packages;fragment=cust_pkg158#cust_pkg158">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=57;show=packages;fragment=cust_pkg168#cust_pkg168">Monthly prorated account</A></TD> @@ -4963,7 +4963,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 30 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 29 2015</TD> @@ -5011,7 +5011,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?54">Thiel, Dagmar</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?57">Sawayn and Sons (Beier, Olin)</A></TD> @@ -5024,15 +5024,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=56;show=packages;fragment=cust_pkg166#cust_pkg166">166</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=64;show=packages;fragment=cust_pkg190#cust_pkg190">190</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=56;show=packages;fragment=cust_pkg166#cust_pkg166">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=64;show=packages;fragment=cust_pkg190#cust_pkg190">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=56;show=packages;fragment=cust_pkg166#cust_pkg166">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=64;show=packages;fragment=cust_pkg190#cust_pkg190">Monthly prorated account</A></TD> @@ -5060,7 +5060,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 31 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 28 2015</TD> @@ -5108,7 +5108,7 @@ myMenu63.width = 256; - <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?64">Pagac, Mariano</A></TD> @@ -5121,15 +5121,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=57;show=packages;fragment=cust_pkg168#cust_pkg168">168</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=65;show=packages;fragment=cust_pkg192#cust_pkg192">192</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=57;show=packages;fragment=cust_pkg168#cust_pkg168">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=65;show=packages;fragment=cust_pkg192#cust_pkg192">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=57;show=packages;fragment=cust_pkg168#cust_pkg168">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=65;show=packages;fragment=cust_pkg192#cust_pkg192">Monthly prorated account</A></TD> @@ -5157,7 +5157,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 29 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 08 2015</TD> @@ -5205,7 +5205,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?57">Sawayn and Sons (Beier, Olin)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?65">O'Reilly-Mraz (Pagac, Kennedi)</A></TD> @@ -5218,15 +5218,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=58;show=packages;fragment=cust_pkg170#cust_pkg170">170</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=66;show=packages;fragment=cust_pkg194#cust_pkg194">194</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=58;show=packages;fragment=cust_pkg170#cust_pkg170">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=66;show=packages;fragment=cust_pkg194#cust_pkg194">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=58;show=packages;fragment=cust_pkg170#cust_pkg170">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=66;show=packages;fragment=cust_pkg194#cust_pkg194">Monthly prorated account</A></TD> @@ -5254,7 +5254,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 31 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 24 2015</TD> @@ -5302,7 +5302,7 @@ myMenu63.width = 256; - <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?66">Abbott, Addison</A></TD> @@ -5315,15 +5315,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=60;show=packages;fragment=cust_pkg178#cust_pkg178">178</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=69;show=packages;fragment=cust_pkg204#cust_pkg204">204</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=60;show=packages;fragment=cust_pkg178#cust_pkg178">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=69;show=packages;fragment=cust_pkg204#cust_pkg204">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=60;show=packages;fragment=cust_pkg178#cust_pkg178">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=69;show=packages;fragment=cust_pkg204#cust_pkg204">Monthly prorated account</A></TD> @@ -5351,7 +5351,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 24 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 02 2015</TD> @@ -5399,7 +5399,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?60">Goldner, Verlie</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?69">Moore-Cummerata (DuBuque, Russ)</A></TD> @@ -5412,15 +5412,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=61;show=packages;fragment=cust_pkg180#cust_pkg180">180</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=70;show=packages;fragment=cust_pkg206#cust_pkg206">206</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=61;show=packages;fragment=cust_pkg180#cust_pkg180">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=70;show=packages;fragment=cust_pkg206#cust_pkg206">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=61;show=packages;fragment=cust_pkg180#cust_pkg180">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=70;show=packages;fragment=cust_pkg206#cust_pkg206">Monthly prorated account</A></TD> @@ -5448,7 +5448,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 02 2015</TD> + <TD CLASS="grid" ALIGN=right >Aug 19 2015</TD> @@ -5496,7 +5496,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?70">Brown, Danial</A></TD> @@ -5509,15 +5509,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=62;show=packages;fragment=cust_pkg182#cust_pkg182">182</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=68;show=packages;fragment=cust_pkg202#cust_pkg202">202</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=62;show=packages;fragment=cust_pkg182#cust_pkg182">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=68;show=packages;fragment=cust_pkg202#cust_pkg202">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=62;show=packages;fragment=cust_pkg182#cust_pkg182">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=68;show=packages;fragment=cust_pkg202#cust_pkg202">Monthly prorated account</A></TD> @@ -5545,7 +5545,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 21 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 15 2015</TD> @@ -5593,7 +5593,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?62">Turcotte, Webster</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?68">Nikolaus, Katelyn</A></TD> @@ -5606,15 +5606,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=64;show=packages;fragment=cust_pkg190#cust_pkg190">190</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=72;show=packages;fragment=cust_pkg214#cust_pkg214">214</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=64;show=packages;fragment=cust_pkg190#cust_pkg190">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=72;show=packages;fragment=cust_pkg214#cust_pkg214">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=64;show=packages;fragment=cust_pkg190#cust_pkg190">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=72;show=packages;fragment=cust_pkg214#cust_pkg214">Monthly prorated account</A></TD> @@ -5642,7 +5642,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 28 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 03 2015</TD> @@ -5690,7 +5690,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?64">Pagac, Mariano</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?72">Lehner, Ryann</A></TD> @@ -5703,15 +5703,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=65;show=packages;fragment=cust_pkg192#cust_pkg192">192</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=74;show=packages;fragment=cust_pkg218#cust_pkg218">218</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=65;show=packages;fragment=cust_pkg192#cust_pkg192">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=74;show=packages;fragment=cust_pkg218#cust_pkg218">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=65;show=packages;fragment=cust_pkg192#cust_pkg192">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=74;show=packages;fragment=cust_pkg218#cust_pkg218">Monthly prorated account</A></TD> @@ -5739,7 +5739,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 08 2015</TD> + <TD CLASS="grid" ALIGN=right >Aug 17 2015</TD> @@ -5787,7 +5787,7 @@ myMenu63.width = 256; - <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?74">Boyer, Lamont</A></TD> @@ -5800,15 +5800,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=66;show=packages;fragment=cust_pkg194#cust_pkg194">194</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=73;show=packages;fragment=cust_pkg216#cust_pkg216">216</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=66;show=packages;fragment=cust_pkg194#cust_pkg194">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=73;show=packages;fragment=cust_pkg216#cust_pkg216">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=66;show=packages;fragment=cust_pkg194#cust_pkg194">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=73;show=packages;fragment=cust_pkg216#cust_pkg216">Monthly prorated account</A></TD> @@ -5836,7 +5836,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 24 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 23 2015</TD> @@ -5884,7 +5884,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?66">Abbott, Addison</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?73">Balistreri-Koepp (Effertz, Laurie)</A></TD> @@ -5897,15 +5897,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=68;show=packages;fragment=cust_pkg202#cust_pkg202">202</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=76;show=packages;fragment=cust_pkg226#cust_pkg226">226</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=68;show=packages;fragment=cust_pkg202#cust_pkg202">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=76;show=packages;fragment=cust_pkg226#cust_pkg226">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=68;show=packages;fragment=cust_pkg202#cust_pkg202">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=76;show=packages;fragment=cust_pkg226#cust_pkg226">Monthly prorated account</A></TD> @@ -5933,7 +5933,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 15 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 27 2015</TD> @@ -5981,7 +5981,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?68">Nikolaus, Katelyn</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?76">Monahan, Tyrese</A></TD> @@ -5994,15 +5994,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=69;show=packages;fragment=cust_pkg204#cust_pkg204">204</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=80;show=packages;fragment=cust_pkg238#cust_pkg238">238</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=69;show=packages;fragment=cust_pkg204#cust_pkg204">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=80;show=packages;fragment=cust_pkg238#cust_pkg238">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=69;show=packages;fragment=cust_pkg204#cust_pkg204">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=80;show=packages;fragment=cust_pkg238#cust_pkg238">Monthly prorated account</A></TD> @@ -6030,7 +6030,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 02 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 13 2015</TD> @@ -6078,7 +6078,7 @@ myMenu63.width = 256; - <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?80">Jakubowski, Jarrell</A></TD> @@ -6091,15 +6091,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=70;show=packages;fragment=cust_pkg206#cust_pkg206">206</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=77;show=packages;fragment=cust_pkg228#cust_pkg228">228</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=70;show=packages;fragment=cust_pkg206#cust_pkg206">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=77;show=packages;fragment=cust_pkg228#cust_pkg228">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=70;show=packages;fragment=cust_pkg206#cust_pkg206">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=77;show=packages;fragment=cust_pkg228#cust_pkg228">Monthly prorated account</A></TD> @@ -6127,7 +6127,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 19 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 18 2015</TD> @@ -6175,7 +6175,7 @@ myMenu63.width = 256; - <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?77">Kunze Inc (Ernser, Coralie)</A></TD> @@ -6188,15 +6188,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=72;show=packages;fragment=cust_pkg214#cust_pkg214">214</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=81;show=packages;fragment=cust_pkg240#cust_pkg240">240</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=72;show=packages;fragment=cust_pkg214#cust_pkg214">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=81;show=packages;fragment=cust_pkg240#cust_pkg240">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=72;show=packages;fragment=cust_pkg214#cust_pkg214">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=81;show=packages;fragment=cust_pkg240#cust_pkg240">Monthly prorated account</A></TD> @@ -6224,7 +6224,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 03 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 25 2015</TD> @@ -6272,7 +6272,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?72">Lehner, Ryann</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?81">Corkery LLC (Beahan, Sebastian)</A></TD> @@ -6285,15 +6285,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=73;show=packages;fragment=cust_pkg216#cust_pkg216">216</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=82;show=packages;fragment=cust_pkg242#cust_pkg242">242</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=73;show=packages;fragment=cust_pkg216#cust_pkg216">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=82;show=packages;fragment=cust_pkg242#cust_pkg242">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=73;show=packages;fragment=cust_pkg216#cust_pkg216">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=82;show=packages;fragment=cust_pkg242#cust_pkg242">Monthly prorated account</A></TD> @@ -6321,7 +6321,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 23 2015</TD> + <TD CLASS="grid" ALIGN=right >Aug 30 2015</TD> @@ -6369,7 +6369,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?73">Balistreri-Koepp (Effertz, Laurie)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?82">Kessler, Dana</A></TD> @@ -6382,15 +6382,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=74;show=packages;fragment=cust_pkg218#cust_pkg218">218</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=84;show=packages;fragment=cust_pkg250#cust_pkg250">250</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=74;show=packages;fragment=cust_pkg218#cust_pkg218">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=84;show=packages;fragment=cust_pkg250#cust_pkg250">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=74;show=packages;fragment=cust_pkg218#cust_pkg218">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=84;show=packages;fragment=cust_pkg250#cust_pkg250">Monthly prorated account</A></TD> @@ -6418,7 +6418,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 17 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 04 2015</TD> @@ -6466,7 +6466,7 @@ myMenu63.width = 256; - <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?84">Pacocha, Matilde</A></TD> @@ -6479,15 +6479,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=76;show=packages;fragment=cust_pkg226#cust_pkg226">226</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=85;show=packages;fragment=cust_pkg252#cust_pkg252">252</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=76;show=packages;fragment=cust_pkg226#cust_pkg226">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=85;show=packages;fragment=cust_pkg252#cust_pkg252">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=76;show=packages;fragment=cust_pkg226#cust_pkg226">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=85;show=packages;fragment=cust_pkg252#cust_pkg252">Monthly prorated account</A></TD> @@ -6515,7 +6515,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 27 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 22 2015</TD> @@ -6563,7 +6563,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?76">Monahan, Tyrese</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?85">Spinka Inc (Runte, Emmalee)</A></TD> @@ -6576,15 +6576,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=77;show=packages;fragment=cust_pkg228#cust_pkg228">228</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=86;show=packages;fragment=cust_pkg254#cust_pkg254">254</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=77;show=packages;fragment=cust_pkg228#cust_pkg228">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=86;show=packages;fragment=cust_pkg254#cust_pkg254">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=77;show=packages;fragment=cust_pkg228#cust_pkg228">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=86;show=packages;fragment=cust_pkg254#cust_pkg254">Monthly prorated account</A></TD> @@ -6612,7 +6612,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 18 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 27 2015</TD> @@ -6660,7 +6660,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?86">Crona, Dandre</A></TD> @@ -6673,15 +6673,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=78;show=packages;fragment=cust_pkg230#cust_pkg230">230</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=92;show=packages;fragment=cust_pkg274#cust_pkg274">274</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=78;show=packages;fragment=cust_pkg230#cust_pkg230">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=92;show=packages;fragment=cust_pkg274#cust_pkg274">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=78;show=packages;fragment=cust_pkg230#cust_pkg230">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=92;show=packages;fragment=cust_pkg274#cust_pkg274">Monthly prorated account</A></TD> @@ -6709,11 +6709,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 12 2016</TD> + <TD CLASS="grid" ALIGN=right >Aug 07 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 12 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -6757,11 +6757,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?78">Gulgowski, Orin</A></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 >Jan 12 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -6770,15 +6770,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=80;show=packages;fragment=cust_pkg238#cust_pkg238">238</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=93;show=packages;fragment=cust_pkg276#cust_pkg276">276</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=80;show=packages;fragment=cust_pkg238#cust_pkg238">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=93;show=packages;fragment=cust_pkg276#cust_pkg276">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=80;show=packages;fragment=cust_pkg238#cust_pkg238">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=93;show=packages;fragment=cust_pkg276#cust_pkg276">Monthly prorated account</A></TD> @@ -6806,7 +6806,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 13 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 06 2015</TD> @@ -6854,7 +6854,7 @@ myMenu63.width = 256; - <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?93">Dach, Lueilwitz and Koepp (Kovacek, Frank)</A></TD> @@ -6867,15 +6867,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=81;show=packages;fragment=cust_pkg240#cust_pkg240">240</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=96;show=packages;fragment=cust_pkg286#cust_pkg286">286</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=81;show=packages;fragment=cust_pkg240#cust_pkg240">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=96;show=packages;fragment=cust_pkg286#cust_pkg286">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=81;show=packages;fragment=cust_pkg240#cust_pkg240">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=96;show=packages;fragment=cust_pkg286#cust_pkg286">Monthly prorated account</A></TD> @@ -6903,7 +6903,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 25 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 08 2015</TD> @@ -6951,7 +6951,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?81">Corkery LLC (Beahan, Sebastian)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?96">Muller, Kenyatta</A></TD> @@ -6964,15 +6964,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=82;show=packages;fragment=cust_pkg242#cust_pkg242">242</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=94;show=packages;fragment=cust_pkg278#cust_pkg278">278</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=82;show=packages;fragment=cust_pkg242#cust_pkg242">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=94;show=packages;fragment=cust_pkg278#cust_pkg278">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=82;show=packages;fragment=cust_pkg242#cust_pkg242">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=94;show=packages;fragment=cust_pkg278#cust_pkg278">Monthly prorated account</A></TD> @@ -7000,7 +7000,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 30 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 06 2015</TD> @@ -7048,7 +7048,7 @@ myMenu63.width = 256; - <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?94">McKenzie, Kareem</A></TD> @@ -7061,15 +7061,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=84;show=packages;fragment=cust_pkg250#cust_pkg250">250</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=97;show=packages;fragment=cust_pkg288#cust_pkg288">288</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=84;show=packages;fragment=cust_pkg250#cust_pkg250">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=97;show=packages;fragment=cust_pkg288#cust_pkg288">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=84;show=packages;fragment=cust_pkg250#cust_pkg250">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=97;show=packages;fragment=cust_pkg288#cust_pkg288">Monthly prorated account</A></TD> @@ -7097,7 +7097,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 04 2015</TD> + <TD CLASS="grid" ALIGN=right >Aug 18 2015</TD> @@ -7145,7 +7145,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?84">Pacocha, Matilde</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> @@ -7158,15 +7158,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=85;show=packages;fragment=cust_pkg252#cust_pkg252">252</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=98;show=packages;fragment=cust_pkg290#cust_pkg290">290</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=85;show=packages;fragment=cust_pkg252#cust_pkg252">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=98;show=packages;fragment=cust_pkg290#cust_pkg290">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=85;show=packages;fragment=cust_pkg252#cust_pkg252">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=98;show=packages;fragment=cust_pkg290#cust_pkg290">Monthly prorated account</A></TD> @@ -7194,7 +7194,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 22 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 27 2015</TD> @@ -7242,7 +7242,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?85">Spinka Inc (Runte, Emmalee)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?98">Gleichner, Delmer</A></TD> @@ -7255,15 +7255,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=86;show=packages;fragment=cust_pkg254#cust_pkg254">254</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=100;show=packages;fragment=cust_pkg298#cust_pkg298">298</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=86;show=packages;fragment=cust_pkg254#cust_pkg254">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=100;show=packages;fragment=cust_pkg298#cust_pkg298">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=86;show=packages;fragment=cust_pkg254#cust_pkg254">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=100;show=packages;fragment=cust_pkg298#cust_pkg298">Monthly prorated account</A></TD> @@ -7291,7 +7291,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 27 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 12 2015</TD> @@ -7339,7 +7339,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?86">Crona, Dandre</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?100">Dibbert, Roman</A></TD> @@ -7352,15 +7352,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=88;show=packages;fragment=cust_pkg262#cust_pkg262">262</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=102;show=packages;fragment=cust_pkg302#cust_pkg302">302</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=88;show=packages;fragment=cust_pkg262#cust_pkg262">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=102;show=packages;fragment=cust_pkg302#cust_pkg302">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=88;show=packages;fragment=cust_pkg262#cust_pkg262">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=102;show=packages;fragment=cust_pkg302#cust_pkg302">Monthly prorated account</A></TD> @@ -7388,11 +7388,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 02 2016</TD> + <TD CLASS="grid" ALIGN=right >Dec 19 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 02 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -7436,11 +7436,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?88">Moore, Lina</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?102">Rau, Dale</A></TD> - <TD CLASS="grid" ALIGN=right >Jan 02 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -7449,15 +7449,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=89;show=packages;fragment=cust_pkg264#cust_pkg264">264</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=101;show=packages;fragment=cust_pkg300#cust_pkg300">300</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=89;show=packages;fragment=cust_pkg264#cust_pkg264">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=101;show=packages;fragment=cust_pkg300#cust_pkg300">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=89;show=packages;fragment=cust_pkg264#cust_pkg264">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=101;show=packages;fragment=cust_pkg300#cust_pkg300">Monthly prorated account</A></TD> @@ -7485,11 +7485,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 19 2016</TD> + <TD CLASS="grid" ALIGN=right >Sep 20 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 19 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -7533,11 +7533,11 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?101">Flatley, Yundt and Pacocha (Volkman, Tabitha)</A></TD> - <TD CLASS="grid" ALIGN=right >Jan 19 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -7546,15 +7546,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=90;show=packages;fragment=cust_pkg266#cust_pkg266">266</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=108;show=packages;fragment=cust_pkg322#cust_pkg322">322</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=90;show=packages;fragment=cust_pkg266#cust_pkg266">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=108;show=packages;fragment=cust_pkg322#cust_pkg322">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=90;show=packages;fragment=cust_pkg266#cust_pkg266">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=108;show=packages;fragment=cust_pkg322#cust_pkg322">Monthly prorated account</A></TD> @@ -7582,11 +7582,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 15 2016</TD> + <TD CLASS="grid" ALIGN=right >Dec 08 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 15 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -7630,11 +7630,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?90">Emard, Mauricio</A></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 >Jan 15 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -7643,15 +7643,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=92;show=packages;fragment=cust_pkg274#cust_pkg274">274</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=105;show=packages;fragment=cust_pkg312#cust_pkg312">312</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=92;show=packages;fragment=cust_pkg274#cust_pkg274">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=105;show=packages;fragment=cust_pkg312#cust_pkg312">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=92;show=packages;fragment=cust_pkg274#cust_pkg274">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=105;show=packages;fragment=cust_pkg312#cust_pkg312">Monthly prorated account</A></TD> @@ -7679,7 +7679,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 07 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 03 2015</TD> @@ -7727,7 +7727,7 @@ myMenu63.width = 256; - <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?105">Barton-Goodwin (Schroeder, Brian)</A></TD> @@ -7740,15 +7740,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=93;show=packages;fragment=cust_pkg276#cust_pkg276">276</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=106;show=packages;fragment=cust_pkg314#cust_pkg314">314</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=93;show=packages;fragment=cust_pkg276#cust_pkg276">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=106;show=packages;fragment=cust_pkg314#cust_pkg314">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=93;show=packages;fragment=cust_pkg276#cust_pkg276">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=106;show=packages;fragment=cust_pkg314#cust_pkg314">Monthly prorated account</A></TD> @@ -7776,7 +7776,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 06 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 31 2015</TD> @@ -7824,7 +7824,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?106">Hermiston, Alexa</A></TD> @@ -7837,15 +7837,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=94;show=packages;fragment=cust_pkg278#cust_pkg278">278</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=109;show=packages;fragment=cust_pkg324#cust_pkg324">324</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=94;show=packages;fragment=cust_pkg278#cust_pkg278">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=109;show=packages;fragment=cust_pkg324#cust_pkg324">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=94;show=packages;fragment=cust_pkg278#cust_pkg278">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=109;show=packages;fragment=cust_pkg324#cust_pkg324">Monthly prorated account</A></TD> @@ -7873,7 +7873,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 06 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 04 2015</TD> @@ -7921,7 +7921,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?94">McKenzie, Kareem</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?109">Lind-Bahringer (Ratke, Roma)</A></TD> @@ -7934,15 +7934,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=96;show=packages;fragment=cust_pkg286#cust_pkg286">286</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=112;show=packages;fragment=cust_pkg334#cust_pkg334">334</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=96;show=packages;fragment=cust_pkg286#cust_pkg286">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=112;show=packages;fragment=cust_pkg334#cust_pkg334">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=96;show=packages;fragment=cust_pkg286#cust_pkg286">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=112;show=packages;fragment=cust_pkg334#cust_pkg334">Monthly prorated account</A></TD> @@ -7970,7 +7970,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 08 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 22 2015</TD> @@ -8018,7 +8018,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?96">Muller, Kenyatta</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?112">Gleason, Ahmed</A></TD> @@ -8031,15 +8031,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=97;show=packages;fragment=cust_pkg288#cust_pkg288">288</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=116;show=packages;fragment=cust_pkg346#cust_pkg346">346</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=97;show=packages;fragment=cust_pkg288#cust_pkg288">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=116;show=packages;fragment=cust_pkg346#cust_pkg346">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=97;show=packages;fragment=cust_pkg288#cust_pkg288">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=116;show=packages;fragment=cust_pkg346#cust_pkg346">Monthly prorated account</A></TD> @@ -8067,7 +8067,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 18 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 18 2015</TD> @@ -8115,7 +8115,7 @@ myMenu63.width = 256; - <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?116">Konopelski, Barry</A></TD> @@ -8128,15 +8128,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=98;show=packages;fragment=cust_pkg290#cust_pkg290">290</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=113;show=packages;fragment=cust_pkg336#cust_pkg336">336</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=98;show=packages;fragment=cust_pkg290#cust_pkg290">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=113;show=packages;fragment=cust_pkg336#cust_pkg336">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=98;show=packages;fragment=cust_pkg290#cust_pkg290">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=113;show=packages;fragment=cust_pkg336#cust_pkg336">Monthly prorated account</A></TD> @@ -8164,7 +8164,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 27 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 12 2015</TD> @@ -8212,7 +8212,7 @@ myMenu63.width = 256; - <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?113">Paucek, Swaniawski and Carter (DuBuque, Freda)</A></TD> @@ -8225,15 +8225,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=100;show=packages;fragment=cust_pkg298#cust_pkg298">298</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=114;show=packages;fragment=cust_pkg338#cust_pkg338">338</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=100;show=packages;fragment=cust_pkg298#cust_pkg298">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=114;show=packages;fragment=cust_pkg338#cust_pkg338">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=100;show=packages;fragment=cust_pkg298#cust_pkg298">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=114;show=packages;fragment=cust_pkg338#cust_pkg338">Monthly prorated account</A></TD> @@ -8261,7 +8261,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 12 2015</TD> + <TD CLASS="grid" ALIGN=right >Aug 17 2015</TD> @@ -8309,7 +8309,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?100">Dibbert, Roman</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?114">Donnelly, Raleigh</A></TD> @@ -8322,15 +8322,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=101;show=packages;fragment=cust_pkg300#cust_pkg300">300</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=118;show=packages;fragment=cust_pkg350#cust_pkg350">350</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=101;show=packages;fragment=cust_pkg300#cust_pkg300">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=118;show=packages;fragment=cust_pkg350#cust_pkg350">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=101;show=packages;fragment=cust_pkg300#cust_pkg300">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=118;show=packages;fragment=cust_pkg350#cust_pkg350">Monthly prorated account</A></TD> @@ -8358,7 +8358,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 20 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 30 2015</TD> @@ -8406,7 +8406,7 @@ myMenu63.width = 256; - <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?118">Feeney, Brice</A></TD> @@ -8419,15 +8419,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=102;show=packages;fragment=cust_pkg302#cust_pkg302">302</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=117;show=packages;fragment=cust_pkg348#cust_pkg348">348</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=102;show=packages;fragment=cust_pkg302#cust_pkg302">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=117;show=packages;fragment=cust_pkg348#cust_pkg348">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=102;show=packages;fragment=cust_pkg302#cust_pkg302">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=117;show=packages;fragment=cust_pkg348#cust_pkg348">Monthly prorated account</A></TD> @@ -8455,7 +8455,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 19 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 07 2015</TD> @@ -8503,7 +8503,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?102">Rau, Dale</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?117">Bernier-Nader (Hane, Floy)</A></TD> @@ -8516,15 +8516,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=104;show=packages;fragment=cust_pkg310#cust_pkg310">310</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=120;show=packages;fragment=cust_pkg358#cust_pkg358">358</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=104;show=packages;fragment=cust_pkg310#cust_pkg310">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=120;show=packages;fragment=cust_pkg358#cust_pkg358">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=104;show=packages;fragment=cust_pkg310#cust_pkg310">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=120;show=packages;fragment=cust_pkg358#cust_pkg358">Monthly prorated account</A></TD> @@ -8552,11 +8552,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 15 2016</TD> + <TD CLASS="grid" ALIGN=right >Nov 04 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 15 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -8600,11 +8600,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?104">Stanton, Christop</A></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 >Jan 15 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -8613,15 +8613,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=105;show=packages;fragment=cust_pkg312#cust_pkg312">312</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=121;show=packages;fragment=cust_pkg360#cust_pkg360">360</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=105;show=packages;fragment=cust_pkg312#cust_pkg312">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=121;show=packages;fragment=cust_pkg360#cust_pkg360">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=105;show=packages;fragment=cust_pkg312#cust_pkg312">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=121;show=packages;fragment=cust_pkg360#cust_pkg360">Monthly prorated account</A></TD> @@ -8649,7 +8649,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 03 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 29 2015</TD> @@ -8697,7 +8697,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?121">Cole, Graham and Towne (Hickle, Javier)</A></TD> @@ -8710,15 +8710,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=106;show=packages;fragment=cust_pkg314#cust_pkg314">314</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=122;show=packages;fragment=cust_pkg362#cust_pkg362">362</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=106;show=packages;fragment=cust_pkg314#cust_pkg314">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=122;show=packages;fragment=cust_pkg362#cust_pkg362">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=106;show=packages;fragment=cust_pkg314#cust_pkg314">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=122;show=packages;fragment=cust_pkg362#cust_pkg362">Monthly prorated account</A></TD> @@ -8746,7 +8746,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 31 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 04 2015</TD> @@ -8794,7 +8794,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?106">Hermiston, Alexa</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?122">Mayert, Scotty</A></TD> @@ -8807,15 +8807,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=108;show=packages;fragment=cust_pkg322#cust_pkg322">322</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=126;show=packages;fragment=cust_pkg374#cust_pkg374">374</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=108;show=packages;fragment=cust_pkg322#cust_pkg322">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=126;show=packages;fragment=cust_pkg374#cust_pkg374">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=108;show=packages;fragment=cust_pkg322#cust_pkg322">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=126;show=packages;fragment=cust_pkg374#cust_pkg374">Monthly prorated account</A></TD> @@ -8843,7 +8843,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 08 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 28 2015</TD> @@ -8891,7 +8891,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?108">Emmerich, Neil</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?126">Kunze, Michale</A></TD> @@ -8904,15 +8904,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=109;show=packages;fragment=cust_pkg324#cust_pkg324">324</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=128;show=packages;fragment=cust_pkg382#cust_pkg382">382</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=109;show=packages;fragment=cust_pkg324#cust_pkg324">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=128;show=packages;fragment=cust_pkg382#cust_pkg382">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=109;show=packages;fragment=cust_pkg324#cust_pkg324">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=128;show=packages;fragment=cust_pkg382#cust_pkg382">Monthly prorated account</A></TD> @@ -8940,7 +8940,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 04 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 08 2015</TD> @@ -8988,7 +8988,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?128">Powlowski, Veda</A></TD> @@ -9001,15 +9001,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=110;show=packages;fragment=cust_pkg326#cust_pkg326">326</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=132;show=packages;fragment=cust_pkg394#cust_pkg394">394</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=110;show=packages;fragment=cust_pkg326#cust_pkg326">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=132;show=packages;fragment=cust_pkg394#cust_pkg394">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=110;show=packages;fragment=cust_pkg326#cust_pkg326">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=132;show=packages;fragment=cust_pkg394#cust_pkg394">Monthly prorated account</A></TD> @@ -9037,11 +9037,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 12 2016</TD> + <TD CLASS="grid" ALIGN=right >Nov 12 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 12 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -9085,11 +9085,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?110">Cummings, Hadley</A></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 >Jan 12 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -9098,15 +9098,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=112;show=packages;fragment=cust_pkg334#cust_pkg334">334</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=129;show=packages;fragment=cust_pkg384#cust_pkg384">384</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=112;show=packages;fragment=cust_pkg334#cust_pkg334">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=129;show=packages;fragment=cust_pkg384#cust_pkg384">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=112;show=packages;fragment=cust_pkg334#cust_pkg334">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=129;show=packages;fragment=cust_pkg384#cust_pkg384">Monthly prorated account</A></TD> @@ -9134,7 +9134,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 22 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 28 2015</TD> @@ -9182,7 +9182,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?112">Gleason, Ahmed</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?129">Quitzon Group (Davis, Jeffery)</A></TD> @@ -9195,15 +9195,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=113;show=packages;fragment=cust_pkg336#cust_pkg336">336</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=134;show=packages;fragment=cust_pkg398#cust_pkg398">398</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=113;show=packages;fragment=cust_pkg336#cust_pkg336">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=134;show=packages;fragment=cust_pkg398#cust_pkg398">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=113;show=packages;fragment=cust_pkg336#cust_pkg336">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=134;show=packages;fragment=cust_pkg398#cust_pkg398">Monthly prorated account</A></TD> @@ -9231,7 +9231,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 12 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 20 2015</TD> @@ -9279,7 +9279,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?134">Stokes, Janelle</A></TD> @@ -9292,15 +9292,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=114;show=packages;fragment=cust_pkg338#cust_pkg338">338</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=130;show=packages;fragment=cust_pkg386#cust_pkg386">386</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=114;show=packages;fragment=cust_pkg338#cust_pkg338">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=130;show=packages;fragment=cust_pkg386#cust_pkg386">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=114;show=packages;fragment=cust_pkg338#cust_pkg338">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=130;show=packages;fragment=cust_pkg386#cust_pkg386">Monthly prorated account</A></TD> @@ -9328,7 +9328,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Aug 17 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 26 2015</TD> @@ -9376,7 +9376,7 @@ myMenu63.width = 256; - <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?130">Carter, Cathy</A></TD> @@ -9389,15 +9389,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=116;show=packages;fragment=cust_pkg346#cust_pkg346">346</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=136;show=packages;fragment=cust_pkg406#cust_pkg406">406</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=116;show=packages;fragment=cust_pkg346#cust_pkg346">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=136;show=packages;fragment=cust_pkg406#cust_pkg406">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=116;show=packages;fragment=cust_pkg346#cust_pkg346">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=136;show=packages;fragment=cust_pkg406#cust_pkg406">Monthly prorated account</A></TD> @@ -9425,7 +9425,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 18 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 31 2015</TD> @@ -9473,7 +9473,7 @@ myMenu63.width = 256; - <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?136">Kub, Julie</A></TD> @@ -9486,15 +9486,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=117;show=packages;fragment=cust_pkg348#cust_pkg348">348</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=137;show=packages;fragment=cust_pkg408#cust_pkg408">408</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=117;show=packages;fragment=cust_pkg348#cust_pkg348">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=137;show=packages;fragment=cust_pkg408#cust_pkg408">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=117;show=packages;fragment=cust_pkg348#cust_pkg348">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=137;show=packages;fragment=cust_pkg408#cust_pkg408">Monthly prorated account</A></TD> @@ -9522,7 +9522,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 07 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 28 2015</TD> @@ -9570,7 +9570,7 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?137">Kohler Group (Bechtelar, Leopoldo)</A></TD> @@ -9583,15 +9583,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=118;show=packages;fragment=cust_pkg350#cust_pkg350">350</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=145;show=packages;fragment=cust_pkg432#cust_pkg432">432</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=118;show=packages;fragment=cust_pkg350#cust_pkg350">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=145;show=packages;fragment=cust_pkg432#cust_pkg432">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=118;show=packages;fragment=cust_pkg350#cust_pkg350">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=145;show=packages;fragment=cust_pkg432#cust_pkg432">Monthly prorated account</A></TD> @@ -9619,7 +9619,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Dec 30 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 12 2015</TD> @@ -9667,7 +9667,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?118">Feeney, Brice</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?145">Zboncak, Schmidt and Howell (Pouros, Robb)</A></TD> @@ -9680,15 +9680,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=120;show=packages;fragment=cust_pkg358#cust_pkg358">358</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=138;show=packages;fragment=cust_pkg410#cust_pkg410">410</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=120;show=packages;fragment=cust_pkg358#cust_pkg358">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=138;show=packages;fragment=cust_pkg410#cust_pkg410">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=120;show=packages;fragment=cust_pkg358#cust_pkg358">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=138;show=packages;fragment=cust_pkg410#cust_pkg410">Monthly prorated account</A></TD> @@ -9716,7 +9716,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 04 2015</TD> + <TD CLASS="grid" ALIGN=right >Aug 13 2015</TD> @@ -9764,7 +9764,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?120">Mante, Demond</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?138">Leuschke, Edd</A></TD> @@ -9777,15 +9777,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=121;show=packages;fragment=cust_pkg360#cust_pkg360">360</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=142;show=packages;fragment=cust_pkg422#cust_pkg422">422</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=121;show=packages;fragment=cust_pkg360#cust_pkg360">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=142;show=packages;fragment=cust_pkg422#cust_pkg422">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=121;show=packages;fragment=cust_pkg360#cust_pkg360">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=142;show=packages;fragment=cust_pkg422#cust_pkg422">Monthly prorated account</A></TD> @@ -9813,7 +9813,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 29 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 16 2015</TD> @@ -9861,7 +9861,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?121">Cole, Graham and Towne (Hickle, Javier)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?142">Pollich, Kieran</A></TD> @@ -9874,15 +9874,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=122;show=packages;fragment=cust_pkg362#cust_pkg362">362</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=141;show=packages;fragment=cust_pkg420#cust_pkg420">420</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=122;show=packages;fragment=cust_pkg362#cust_pkg362">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=141;show=packages;fragment=cust_pkg420#cust_pkg420">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=122;show=packages;fragment=cust_pkg362#cust_pkg362">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=141;show=packages;fragment=cust_pkg420#cust_pkg420">Monthly prorated account</A></TD> @@ -9910,7 +9910,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 04 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 30 2015</TD> @@ -9958,7 +9958,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?122">Mayert, Scotty</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?141">Hamill-McKenzie (Heathcote, Ismael)</A></TD> @@ -9971,15 +9971,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=124;show=packages;fragment=cust_pkg370#cust_pkg370">370</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=140;show=packages;fragment=cust_pkg418#cust_pkg418">418</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=124;show=packages;fragment=cust_pkg370#cust_pkg370">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=140;show=packages;fragment=cust_pkg418#cust_pkg418">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=124;show=packages;fragment=cust_pkg370#cust_pkg370">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=140;show=packages;fragment=cust_pkg418#cust_pkg418">Monthly prorated account</A></TD> @@ -10007,11 +10007,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 28 2016</TD> + <TD CLASS="grid" ALIGN=right >Dec 11 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 28 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -10055,11 +10055,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?124">Conn, Brown</A></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 >Jan 28 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -10068,15 +10068,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=125;show=packages;fragment=cust_pkg372#cust_pkg372">372</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=144;show=packages;fragment=cust_pkg430#cust_pkg430">430</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=125;show=packages;fragment=cust_pkg372#cust_pkg372">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=144;show=packages;fragment=cust_pkg430#cust_pkg430">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=125;show=packages;fragment=cust_pkg372#cust_pkg372">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=144;show=packages;fragment=cust_pkg430#cust_pkg430">Monthly prorated account</A></TD> @@ -10104,11 +10104,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 06 2016</TD> + <TD CLASS="grid" ALIGN=right >Dec 08 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 06 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -10152,11 +10152,11 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?144">Frami, Miller</A></TD> - <TD CLASS="grid" ALIGN=right >Jan 06 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -10165,15 +10165,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=126;show=packages;fragment=cust_pkg374#cust_pkg374">374</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=149;show=packages;fragment=cust_pkg444#cust_pkg444">444</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=126;show=packages;fragment=cust_pkg374#cust_pkg374">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=149;show=packages;fragment=cust_pkg444#cust_pkg444">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=126;show=packages;fragment=cust_pkg374#cust_pkg374">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=149;show=packages;fragment=cust_pkg444#cust_pkg444">Monthly prorated account</A></TD> @@ -10201,7 +10201,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 28 2015</TD> + <TD CLASS="grid" ALIGN=right >Sep 14 2015</TD> @@ -10249,7 +10249,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?126">Kunze, Michale</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?149">O'Keefe Inc (Schamberger, Felix)</A></TD> @@ -10262,15 +10262,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=128;show=packages;fragment=cust_pkg382#cust_pkg382">382</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=150;show=packages;fragment=cust_pkg446#cust_pkg446">446</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=128;show=packages;fragment=cust_pkg382#cust_pkg382">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=150;show=packages;fragment=cust_pkg446#cust_pkg446">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=128;show=packages;fragment=cust_pkg382#cust_pkg382">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=150;show=packages;fragment=cust_pkg446#cust_pkg446">Monthly prorated account</A></TD> @@ -10298,7 +10298,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Oct 08 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 24 2015</TD> @@ -10346,7 +10346,7 @@ myMenu63.width = 256; - <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?150">Schuster, Ed</A></TD> @@ -10359,15 +10359,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=129;show=packages;fragment=cust_pkg384#cust_pkg384">384</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=153;show=packages;fragment=cust_pkg456#cust_pkg456">456</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=129;show=packages;fragment=cust_pkg384#cust_pkg384">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=153;show=packages;fragment=cust_pkg456#cust_pkg456">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=129;show=packages;fragment=cust_pkg384#cust_pkg384">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=153;show=packages;fragment=cust_pkg456#cust_pkg456">Monthly prorated account</A></TD> @@ -10395,7 +10395,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 28 2015</TD> + <TD CLASS="grid" ALIGN=right >Dec 13 2015</TD> @@ -10443,7 +10443,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?129">Quitzon Group (Davis, Jeffery)</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?153">Lind Group (Padberg, Irving)</A></TD> @@ -10456,15 +10456,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=130;show=packages;fragment=cust_pkg386#cust_pkg386">386</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=152;show=packages;fragment=cust_pkg454#cust_pkg454">454</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=130;show=packages;fragment=cust_pkg386#cust_pkg386">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=152;show=packages;fragment=cust_pkg454#cust_pkg454">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=130;show=packages;fragment=cust_pkg386#cust_pkg386">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=152;show=packages;fragment=cust_pkg454#cust_pkg454">Monthly prorated account</A></TD> @@ -10492,7 +10492,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 26 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 17 2015</TD> @@ -10540,7 +10540,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?130">Carter, Cathy</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?152">Klocko, Fleta</A></TD> @@ -10553,15 +10553,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=132;show=packages;fragment=cust_pkg394#cust_pkg394">394</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=156;show=packages;fragment=cust_pkg466#cust_pkg466">466</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=132;show=packages;fragment=cust_pkg394#cust_pkg394">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=156;show=packages;fragment=cust_pkg466#cust_pkg466">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=132;show=packages;fragment=cust_pkg394#cust_pkg394">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=156;show=packages;fragment=cust_pkg466#cust_pkg466">Monthly prorated account</A></TD> @@ -10589,7 +10589,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Nov 12 2015</TD> + <TD CLASS="grid" ALIGN=right >Oct 08 2015</TD> @@ -10637,7 +10637,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?132">Kris, Josie</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?156">Upton, Otho</A></TD> @@ -10650,15 +10650,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=133;show=packages;fragment=cust_pkg396#cust_pkg396">396</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=157;show=packages;fragment=cust_pkg468#cust_pkg468">468</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=133;show=packages;fragment=cust_pkg396#cust_pkg396">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=157;show=packages;fragment=cust_pkg468#cust_pkg468">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=133;show=packages;fragment=cust_pkg396#cust_pkg396">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=157;show=packages;fragment=cust_pkg468#cust_pkg468">Monthly prorated account</A></TD> @@ -10686,11 +10686,11 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Jan 13 2016</TD> + <TD CLASS="grid" ALIGN=right >Aug 14 2015</TD> - <TD CLASS="grid" ALIGN=right >Jan 13 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> @@ -10734,11 +10734,11 @@ myMenu63.width = 256; - <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=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?157">Weimann Inc (Cartwright, Judah)</A></TD> - <TD CLASS="grid" ALIGN=right >Jan 13 2016</TD> + <TD CLASS="grid" ALIGN=right >Jan 01 2016</TD> </TR> @@ -10747,15 +10747,15 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=134;show=packages;fragment=cust_pkg398#cust_pkg398">398</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=158;show=packages;fragment=cust_pkg470#cust_pkg470">470</A></TD> - <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=134;show=packages;fragment=cust_pkg398#cust_pkg398">1</A></TD> + <TD CLASS="grid" ALIGN=right ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=158;show=packages;fragment=cust_pkg470#cust_pkg470">1</A></TD> - <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=134;show=packages;fragment=cust_pkg398#cust_pkg398">Monthly prorated account</A></TD> + <TD CLASS="grid" ALIGN=left ><A HREF="http://localhost/freeside/view/cust_main.cgi?custnum=158;show=packages;fragment=cust_pkg470#cust_pkg470">Monthly prorated account</A></TD> @@ -10783,7 +10783,7 @@ myMenu63.width = 256; - <TD CLASS="grid" ALIGN=right >Sep 20 2015</TD> + <TD CLASS="grid" ALIGN=right >Nov 23 2015</TD> @@ -10831,7 +10831,7 @@ myMenu63.width = 256; - <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?158">Parker, Rosemary</A></TD> 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 7703ebb72..e33efdbce 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 @@ -854,7 +854,7 @@ myMenu63.width = 256; - <A HREF="http://localhost/freeside/misc/email-customers.html?table=svc_broadband&agent_virt_agentnum=&routernum=none&agentnum=1">Email a notice to these customers</A> + <A HREF="http://localhost/freeside/misc/email-customers.html?table=svc_broadband&agent_virt_agentnum=&agentnum=1&routernum=none">Email a notice to these customers</A> 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 48710db6f..ddecb6a93 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.cM8FaNY6.eps}} &
+ \makebox{ \includegraphics{/usr/local/etc/freeside/cache.DBI:Pg:dbname=freeside/cust_bill.681.mLOXyPgw.eps}} &
\begin{minipage}[b]{5.5cm}
Freeside Test 3.8.1\\* 1234 Example Lane\\* @@ -142,7 +142,7 @@ Freeside Test 3.8.1 \returninset
\makebox{
\begin{tabular}{ll}
- \includegraphics{/usr/local/etc/freeside/cache.DBI:Pg:dbname=freeside/cust_bill.681.cM8FaNY6.eps} &
+ \includegraphics{/usr/local/etc/freeside/cache.DBI:Pg:dbname=freeside/cust_bill.681.mLOXyPgw.eps} &
\begin{minipage}[b]{5.5cm}
Freeside Test 3.8.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.cM8FaNY6.eps} % Uncomment if you want the logo on all pages.
+ %\includegraphics{/usr/local/etc/freeside/cache.DBI:Pg:dbname=freeside/cust_bill.681.mLOXyPgw.eps} % Uncomment if you want the logo on all pages.
}
}
diff --git a/FS-Test/share/output/view/svc_acct.cgi/406 b/FS-Test/share/output/view/svc_acct.cgi/406 index 0d568e37d..4695293df 100644 --- a/FS-Test/share/output/view/svc_acct.cgi/406 +++ b/FS-Test/share/output/view/svc_acct.cgi/406 @@ -1004,11 +1004,11 @@ function changepw406_toggle(val) { 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/406;Requestors=;Queue=" + selector.options[selector.selectedIndex].value; + link.href = "http://localhost/freeside//rt/Ticket/Create.html?Requestors=;new-MemberOf=freeside://freeside/cust_svc/406;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%2F406">Create new ticket</A> +<A id="CreateTicketLink" HREF="http://localhost/freeside//rt/Ticket/Create.html?Queue=1&new-MemberOf=freeside%3A%2F%2Ffreeside%2Fcust_svc%2F406&Requestors=">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 45ad34c1e..ecd56d88c 100644 --- a/FS-Test/share/output/view/svc_broadband.cgi/401 +++ b/FS-Test/share/output/view/svc_broadband.cgi/401 @@ -933,7 +933,7 @@ function areyousure_delete() { </TD> <TD CLASS="content"> - <SPAN CLASS="mac_addr">00:00:7E:43:6B:F5 (CLUSTRIX CORPORATION)</SPAN> + <SPAN CLASS="mac_addr">00:00:7E:43:6B:F5</SPAN> <TD> @@ -957,7 +957,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?Queue=1&Requestors=&new-MemberOf=freeside%3A%2F%2Ffreeside%2Fcust_svc%2F401">Create new ticket</A> +<A id="CreateTicketLink" HREF="http://localhost/freeside//rt/Ticket/Create.html?Queue=1&new-MemberOf=freeside%3A%2F%2Ffreeside%2Fcust_svc%2F401&Requestors=">Create new ticket</A> in queue <SELECT NAME="Queue" id="Queue" onchange="updateTicketLink()"> </SELECT> diff --git a/FS-Test/share/output/view/svc_domain.cgi/402 b/FS-Test/share/output/view/svc_domain.cgi/402 index 56b116338..5306a07c2 100644 --- a/FS-Test/share/output/view/svc_domain.cgi/402 +++ b/FS-Test/share/output/view/svc_domain.cgi/402 @@ -1022,7 +1022,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=&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?Queue=1&new-MemberOf=freeside%3A%2F%2Ffreeside%2Fcust_svc%2F402&Requestors=">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 a4e43924d..2f10a2dd7 100644 --- a/FS-Test/share/output/view/svc_phone.cgi/403 +++ b/FS-Test/share/output/view/svc_phone.cgi/403 @@ -947,7 +947,7 @@ function areyousure_delete() { </TD> <TD CLASS="content"> - <A HREF="http://localhost/freeside/view/svc_circuit.html?1"></A> + <A HREF="http://localhost/freeside/view/svc_circuit.cgi?1"></A> <TD> </TR> @@ -974,7 +974,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?new-MemberOf=freeside%3A%2F%2Ffreeside%2Fcust_svc%2F403&Requestors=&Queue=1">Create new ticket</A> +<A id="CreateTicketLink" HREF="http://localhost/freeside//rt/Ticket/Create.html?Queue=1&new-MemberOf=freeside%3A%2F%2Ffreeside%2Fcust_svc%2F403&Requestors=">Create new ticket</A> in queue <SELECT NAME="Queue" id="Queue" onchange="updateTicketLink()"> </SELECT> 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 diff --git a/FS/FS/Report/Table.pm b/FS/FS/Report/Table.pm index 4b1ad05d6..eeb99bac5 100644 --- a/FS/FS/Report/Table.pm +++ b/FS/FS/Report/Table.pm @@ -753,6 +753,33 @@ sub cust_bill_pkg_taxes { $self->scalar_sql($total_sql); } +#all credits applied to matching pkg line items (ie not taxes) + +sub cust_bill_pkg_credits { + my $self = shift; + my ($speriod, $eperiod, $agentnum, %opt) = @_; + + $agentnum ||= $opt{'agentnum'}; + + my @where = ( + '(cust_bill_pkg.pkgnum != 0 OR feepart IS NOT NULL)', + $self->with_classnum($opt{'classnum'}, $opt{'use_override'}), + $self->with_report_option(%opt), + $self->in_time_period_and_agent($speriod, $eperiod, $agentnum), + $self->with_refnum(%opt), + $self->with_cust_classnum(%opt) + ); + + my $total_sql = "SELECT COALESCE(SUM(cust_credit_bill_pkg.amount),0) + FROM cust_bill_pkg + $cust_bill_pkg_join + LEFT JOIN cust_credit_bill_pkg + USING ( billpkgnum ) + WHERE " . join(' AND ', grep $_, @where); + + $self->scalar_sql($total_sql); +} + ##### package churn report ##### =item active_pkg: The number of packages that were active at the start of diff --git a/FS/FS/TicketSystem/RT_External.pm b/FS/FS/TicketSystem/RT_External.pm index c2aac2db7..20d78c8fc 100644 --- a/FS/FS/TicketSystem/RT_External.pm +++ b/FS/FS/TicketSystem/RT_External.pm @@ -316,22 +316,22 @@ sub href_params_new_ticket { my $subtype = $object->table; my $pkey = $object->get($object->primary_key); - my %param = ( + my @param = ( 'Queue' => ($cust_main->agent->ticketing_queueid || $default_queueid), 'new-MemberOf'=> "freeside://freeside/$subtype/$pkey", 'Requestors' => $requestors, ); - ( $self->baseurl.'Ticket/Create.html', %param ); + ( $self->baseurl.'Ticket/Create.html', @param ); } sub href_new_ticket { my $self = shift; - my( $base, %param ) = $self->href_params_new_ticket(@_); + my( $base, @param ) = $self->href_params_new_ticket(@_); my $uri = new URI $base; - $uri->query_form(%param); + $uri->query_form(@param); $uri; } diff --git a/FS/FS/UI/Web.pm b/FS/FS/UI/Web.pm index 69de5e157..d73d9cfc0 100644 --- a/FS/FS/UI/Web.pm +++ b/FS/FS/UI/Web.pm @@ -623,6 +623,7 @@ sub random_id { if (!defined $NO_RANDOM_IDS) { my $conf = FS::Conf->new; $NO_RANDOM_IDS = $conf->exists('no_random_ids') ? 1 : 0; + warn "TEST MODE--RANDOM ID NUMBERS DISABLED\n" if $NO_RANDOM_IDS; } if ( $NO_RANDOM_IDS ) { if ( $digits > 0 ) { diff --git a/FS/FS/cdr.pm b/FS/FS/cdr.pm index db9832a4b..cdca6fc75 100644 --- a/FS/FS/cdr.pm +++ b/FS/FS/cdr.pm @@ -1458,7 +1458,7 @@ as keys (for use with part_pkg::voip_cdr) and "pretty" format names as values. sub invoice_formats { map { ($_ => $export_names{$_}->{'name'}) } grep { $export_names{$_}->{'invoice_header'} } - keys %export_names; + sort keys %export_names; } =item invoice_header FORMAT diff --git a/FS/FS/cust_main/Billing.pm b/FS/FS/cust_main/Billing.pm index ec780e61e..014d71529 100644 --- a/FS/FS/cust_main/Billing.pm +++ b/FS/FS/cust_main/Billing.pm @@ -810,6 +810,7 @@ sub bill { } #discard bundled packages of 0 value +# XXX we should reconsider whether we even need this sub _omit_zero_value_bundles { my @in = @_; @@ -818,11 +819,20 @@ sub _omit_zero_value_bundles { my $discount_show_always = $conf->exists('discount-show-always'); my $show_this = 0; + # Sort @in the same way we do during invoice rendering, so we can identify + # bundles. See FS::Template_Mixin::_items_nontax. + @in = sort { $a->pkgnum <=> $b->pkgnum or + $a->sdate <=> $b->sdate or + ($a->pkgpart_override ? 0 : -1) or + ($b->pkgpart_override ? 0 : 1) or + $b->hidden cmp $a->hidden or + $a->pkgpart_override <=> $b->pkgpart_override + } @in; + # this is a pack-and-deliver pattern. every time there's a cust_bill_pkg # _without_ pkgpart_override, that's the start of the new bundle. if there's # an existing bundle, and it contains a nonzero amount (or a zero amount # that's displayable anyway), push all line items in the bundle. - foreach my $cust_bill_pkg ( @in ) { if (scalar(@bundle) and !$cust_bill_pkg->pkgpart_override) { diff --git a/FS/FS/discount.pm b/FS/FS/discount.pm index 14911395b..dd6960495 100644 --- a/FS/FS/discount.pm +++ b/FS/FS/discount.pm @@ -198,7 +198,13 @@ sub description { ( my $months = $self->months ) =~ s/\.0+$//; $months =~ s/(\.\d*[1-9])0+$/$1/; - $desc .= " for $months months" if $months; + if ($months) { + if ($months == 1) { + $desc .= " for 1 month"; + } else { + $desc .= " for $months months"; + } + } $desc .= ', applies to setup' if $self->setup; diff --git a/FS/FS/part_pkg/discount_Mixin.pm b/FS/FS/part_pkg/discount_Mixin.pm index 31802758c..5de7d8ea5 100644 --- a/FS/FS/part_pkg/discount_Mixin.pm +++ b/FS/FS/part_pkg/discount_Mixin.pm @@ -28,11 +28,15 @@ sub calc_recur { =head METHODS -=item calc_discount +=item calc_discount CUST_PKG, SDATE, DETAILS_ARRAYREF, PARAM_HASHREF -Takes all the arguments of calc_recur. Calculates and returns the amount -by which to reduce the recurring fee; also increments months used on the -discount. +Takes all the arguments of calc_recur. Calculates and returns the amount +by which to reduce the charge; also increments months used on the discount. + +If there is a setup fee, this will be called once with 'setup_charge' => the +setup fee amount (and should return the discount to be applied to the setup +charge, if any), and again without it (for the recurring fee discount). +PARAM_HASHREF carries over between the two invocations. =cut @@ -40,9 +44,9 @@ sub calc_discount { my($self, $cust_pkg, $sdate, $details, $param ) = @_; my $conf = new FS::Conf; - my $br = $self->base_recur_permonth($cust_pkg, $sdate); - $br += $param->{'override_charges'} if $param->{'override_charges'}; - + my $br = $self->base_recur($cust_pkg, $sdate); + $br += $param->{'override_charges'} * ($cust_pkg->part_pkg->freq || 0) if $param->{'override_charges'}; + my $tot_discount = 0; #UI enforces just 1 for now, will need ordering when they can be stacked @@ -80,52 +84,125 @@ sub calc_discount { my $discount_left; my $discount = $cust_pkg_discount->discount; #UI enforces one or the other (for now? probably for good) + # $chg_months: the number of months we are charging recur for + # $months: $chg_months or the months left on the discount, whchever is less + + my $chg_months = $cust_pkg->part_pkg->freq || 1; + if ( defined($param->{'months'}) ) { # then override + $chg_months = $param->{'months'}; + } + + my $months = $chg_months; + if ( $discount->months ) { + $months = min( $chg_months, + $discount->months - $cust_pkg_discount->months_used ); + } + + # $amount is now the (estimated) discount amount on the recurring charge. + # if it's a percent discount, that's base recur * percentage. + my $amount = 0; - $amount += $discount->amount - if $cust_pkg->pkgpart == $param->{'real_pkgpart'}; - $amount += sprintf('%.2f', $discount->percent * $br / 100 ); - my $chg_months = defined($param->{'months'}) ? - $param->{'months'} : - $cust_pkg->part_pkg->freq; - - my $months = $discount->months - ? min( $chg_months, - $discount->months - $cust_pkg_discount->months_used ) - : $chg_months; if (defined $param->{'setup_charge'}) { + + # we are calculating the setup discount. + # if this discount doesn't apply to setup fees, skip it. + # if it's a percent discount, set $amount = percent * setup_charge. + # if it's a flat amount discount for one month: + # - if the discount amount > setup_charge, then set it to setup_charge, + # and set 'discount_left_recur' to the difference. + # - otherwise set it to just the discount amount. + # if it's a flat amount discount for other than one month: + # - skip the discount. unsure, leaving it alone for now. + next unless $discount->setup; + $months = 0; # never count a setup discount as a month of discount + # (the recur discount in the same month should do it) + if ( $discount->percent > 0 ) { - $amount = sprintf('%.2f', $discount->percent * $param->{'setup_charge'} / 100 ); - $months = 1; - } elsif ( $discount->amount > 0 && $discount->months == 1) { - $discount_left = $param->{'setup_charge'} - $discount->amount; - $amount = $param->{'setup_charge'} if $discount_left < 0; - $amount = $discount->amount if $discount_left >= 0; - $months = 1; - + $amount = $discount->percent * $param->{'setup_charge'} / 100; + } elsif ( $discount->amount > 0 && ($discount->months || 0) == 1) { + # apply the discount amount, up to a maximum of the setup charge + $amount = min($discount->amount, $param->{'setup_charge'}); + $discount_left = sprintf('%.2f', $discount->amount - $amount); # transfer remainder of discount, if any, to recur - $param->{'discount_left_recur'}{$discount->discountnum} = - 0 - $discount_left if $discount_left < 0; + $param->{'discount_left_recur'}{$discount->discountnum} = $discount_left; } else { + # I guess we don't allow multiple-month flat amount discounts to + # apply to setup? next; } - } elsif ( defined $param->{'discount_left_recur'}{$discount->discountnum} - && $param->{'discount_left_recur'}{$discount->discountnum} > 0 - ) { - # use up transferred remainder of discount from setup + + } else { + + # we are calculating a recurring fee discount. estimate the recurring + # fee: + # XXX it would be more accurate for calc_recur to just _tell us_ what + # it's going to charge + + my $recur_charge = $br * ($cust_pkg->quantity || 1) * $chg_months / $self->freq; + # round this, because the real recur charge is rounded + $recur_charge = sprintf('%.2f', $recur_charge); + + # if it's a percentage discount, calculate it based on that estimate. + # otherwise use the flat amount. + + if ( $discount->percent > 0 ) { + $amount = $recur_charge * $discount->percent / 100; + } elsif ( $discount->amount > 0 + and $cust_pkg->pkgpart == $param->{'real_pkgpart'} ) { + $amount = $discount->amount * $months; + } + + if ( exists $param->{'discount_left_recur'}{$discount->discountnum} ) { + # there is a discount_left_recur entry for this discountnum, so this + # is the second (recur) pass on the discount. use up transferred + # remainder of discount from setup. + # + # note that discount_left_recur can now be zero. $amount = $param->{'discount_left_recur'}{$discount->discountnum}; $param->{'discount_left_recur'}{$discount->discountnum} = 0; - $months = 1; - } elsif ( $discount->setup - && $discount->months == 1 - && $discount->amount > 0 - ) { - next; - } + $months = 1; # XXX really? not $chg_months? + } + #elsif ( $discount->setup + # && ($discount->months || 0) == 1 + # && $discount->amount > 0 + # ) { + # next; + # + # RT #11512: bugfix to prevent applying flat discount to both setup + # and recur. The original implementation ignored discount_left_recur + # if it was zero, so if the setup fee used up the entire flat + # discount, the recurring charge would get to use the entire flat + # discount also. This bugfix was a kludge. Instead, we now allow + # discount_left_recur to be zero in that case, and then the available + # recur discount is zero. + #} + + # transfer remainder of discount, if any, to setup + # this is used when the recur phase wants to add a setup fee + # (prorate_defer_bill): the "discount_left_setup" amount will + # be subtracted in _make_lines. + if ( $discount->setup && $discount->amount > 0 + && ($discount->months || 0) != 1 + ) + { + # $amount is no longer permonth at this point! correct. very good. + $discount_left = $amount - $recur_charge; # backward, as above + if ( $discount_left > 0 ) { + $amount = $recur_charge; + $param->{'discount_left_setup'}{$discount->discountnum} = + 0 - $discount_left; + } + } - if ( ! defined $param->{'setup_charge'} ) { + # cap the discount amount at the recur charge + $amount = min($amount, $recur_charge); + + # if this is the base pkgpart, schedule increment_months_used to run at + # the end of billing. (addon packages haven't been calculated yet, so + # don't let the discount expire during the billing process. RT#17045.) if ( $cust_pkg->pkgpart == $param->{'real_pkgpart'} ) { push @{ $param->{precommit_hooks} }, sub { my $error = $cust_pkg_discount->increment_months_used($months); @@ -133,63 +210,22 @@ sub calc_discount { }; } - $amount = min($amount, $br); - $amount *= $months; } $amount = sprintf('%.2f', $amount + 0.00000001 ); #so 1.005 rounds to 1.01 next unless $amount > 0; - # transfer remainder of discount, if any, to setup - if ( $discount->setup && $discount->amount > 0 - && (!$discount->months || $discount->months != 1) - && !defined $param->{'setup_charge'} - ) - { - $discount_left = $br - $amount; - if ( $discount_left < 0 ) { - $amount = $br; - $param->{'discount_left_setup'}{$discount->discountnum} = - 0 - $discount_left; - } - } - #record details in cust_bill_pkg_discount my $cust_bill_pkg_discount = new FS::cust_bill_pkg_discount { 'pkgdiscountnum' => $cust_pkg_discount->pkgdiscountnum, 'amount' => $amount, 'months' => $months, + # XXX should have a 'setuprecur' }; push @{ $param->{'discounts'} }, $cust_bill_pkg_discount; $tot_discount += $amount; - #add details on discount to invoice - # no longer! this is now done during rendering based on the existence - # of the cust_bill_pkg_discount record - # - #my $money_char = $conf->config('money_char') || '$'; - #$months = sprintf('%.2f', $months) if $months =~ /\./; - - #my $d = 'Includes '; - #my $format; - - #if ( $months eq '1' ) { - # $d .= "discount of $money_char$amount"; - # $d .= " each" if $cust_pkg->quantity > 1; - # $format = 'Undiscounted amount: %s%.2f'; - #} else { - # $d .= 'setup ' if defined $param->{'setup_charge'}; - # $d .= 'discount of '. $discount->description_short; - # $d .= " for $months months" - # unless defined $param->{'setup_charge'}; - # $d .= ": $money_char$amount" if $discount->percent; - # $format = 'Undiscounted monthly amount: %s%.2f'; - #} - - #push @$details, $d; - #push @$details, sprintf( $format, $money_char, $br ); - } sprintf('%.2f', $tot_discount); diff --git a/FS/FS/part_pkg/prorate_calendar.pm b/FS/FS/part_pkg/prorate_calendar.pm index 83a80f5d0..c50cae0d7 100644 --- a/FS/FS/part_pkg/prorate_calendar.pm +++ b/FS/FS/part_pkg/prorate_calendar.pm @@ -36,7 +36,7 @@ use base 'FS::part_pkg::flat'; }, 'fieldorder' => [ 'cutoff_day', 'prorate_defer_bill', 'prorate_round_day', 'prorate_verbose' ], 'freq' => 'm', - 'weight' => 20, + 'weight' => 23, ); my %freq_max_days = ( # the length of the shortest period of each cycle type diff --git a/FS/FS/svc_Tower_Mixin.pm b/FS/FS/svc_Tower_Mixin.pm index 3da07c1cd..dab096ddc 100644 --- a/FS/FS/svc_Tower_Mixin.pm +++ b/FS/FS/svc_Tower_Mixin.pm @@ -37,7 +37,13 @@ sub tower_sector_sql { my $in = join(',', map { /^(\d+)$/ ? $1 : () } @$value); my @orwhere; push @orwhere, "tower_sector.$field IN ($in)" if $in; - push @orwhere, "tower_sector.$field IS NULL" if grep /^none$/, @$value; + if ( grep /^none$/, @$value ) { + # then allow this field to be null + push @orwhere, "tower_sector.$field IS NULL"; + # and if this field is the sector, also allow the default sector + # on the tower + push @orwhere, "sectorname = '_default'" if $field eq 'sectornum'; + } push @where, '( '.join(' OR ', @orwhere).' )'; } elsif ( $value =~ /^(\d+)$/ ) { diff --git a/httemplate/browse/part_pkg.cgi b/httemplate/browse/part_pkg.cgi index 2769f8512..11eca6702 100755 --- a/httemplate/browse/part_pkg.cgi +++ b/httemplate/browse/part_pkg.cgi @@ -537,6 +537,7 @@ push @fields, }, ]; } + sort grep { $options{$_} =~ /\S/ } grep { $_ !~ /^(setup|recur)_fee$/ and $_ !~ /^report_option_\d+$/ } diff --git a/httemplate/browse/part_svc.cgi b/httemplate/browse/part_svc.cgi index ec5f321dd..88f8d8d19 100755 --- a/httemplate/browse/part_svc.cgi +++ b/httemplate/browse/part_svc.cgi @@ -161,7 +161,7 @@ function part_export_areyousure(href) { % } % % my($n1)=''; -% foreach my $field ( @fields ) { +% foreach my $field ( sort @fields ) { % % #a few lines of false laziness w/edit/part_svc.cgi % my $def = FS::part_svc->svc_table_fields($svcdb)->{$field}; diff --git a/httemplate/edit/part_pkg.cgi b/httemplate/edit/part_pkg.cgi index bdceb3364..2802ddc33 100755 --- a/httemplate/edit/part_pkg.cgi +++ b/httemplate/edit/part_pkg.cgi @@ -866,9 +866,13 @@ my $html_bottom = sub { #$html .= '</SELECT></TD></TR>'; my $href = $plans{$layer}->{'fields'}; - my @fields = exists($plans{$layer}->{'fieldorder'}) - ? @{$plans{$layer}->{'fieldorder'}} - : keys %{ $href }; + my @fields; + if ( $plans{$layer}->{'fieldorder'} ) { + @fields = @{ $plans{$layer}->{'fieldorder'} }; + } else { + warn "FS::part_pkg::$layer has no fieldorder.\n"; + @fields = keys %$href; + } # hash of dependencies for each of the Pricing Plan fields. # make sure NOT to use double-quotes inside the 'msg' value. @@ -906,7 +910,8 @@ my $html_bottom = sub { next if !$display; } - $html .= '<TR><TD ALIGN="right">'. $href->{$field}{'name'}. '</TD><TD>'; + $html .= '<TR><TD ALIGN="right">'. $href->{$field}{'name'}. '</TD><TD> + '; my $format = sub { shift }; $format = $href->{$field}{'format'} if exists($href->{$field}{'format'}); @@ -1005,9 +1010,11 @@ my $html_bottom = sub { $html .= '</TD></TR>'; } $html .= '</TABLE>'; - - $html .= qq(<INPUT TYPE="hidden" NAME="${layer}__OPTIONS" VALUE="). - join(',', keys %{ $href } ). '">'; + + $html .= include('/elements/hidden.html', + field => $layer.'__OPTIONS', + value => join(',', @fields) + ); $html; diff --git a/httemplate/elements/email-link.html b/httemplate/elements/email-link.html index 2612faabb..16935cf98 100644 --- a/httemplate/elements/email-link.html +++ b/httemplate/elements/email-link.html @@ -10,7 +10,8 @@ die "'table' required" if !$table; die "'search_hash' required" if !$search_hash; my $uri = new URI; -$uri->query_form($search_hash); +my @params = map { $_, $search_hash->{$_} } sort keys %$search_hash; +$uri->query_form(@params); my $query = $uri->query; my $label = ($opt{'label'} || 'Email a notice to these customers'); </%init> diff --git a/httemplate/elements/form-create_ticket.html b/httemplate/elements/form-create_ticket.html index 362e82397..d76c0d83e 100644 --- a/httemplate/elements/form-create_ticket.html +++ b/httemplate/elements/form-create_ticket.html @@ -6,7 +6,7 @@ function updateTicketLink() { link.href = "<% $new_base.'?'. join(';', map( { ($_ eq 'Queue') ? () : "$_=$new_param{$_}"} - keys %new_param),'Queue=') %>" + selector.options[selector.selectedIndex].value; + sort keys %new_param),'Queue=') %>" + selector.options[selector.selectedIndex].value; } </SCRIPT> <A NAME="tickets"><FONT CLASS="fsinnerbox-title">Tickets</FONT></A> diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html index f96c05ea5..efd9033db 100644 --- a/httemplate/elements/menu.html +++ b/httemplate/elements/menu.html @@ -389,6 +389,8 @@ if( $curuser->access_right('Financial reports') ) { $report_financial{'Tax Liability (vendor tax data)'} = [ $fsurl.'search/report_newtax.html', 'Tax liability report (vendor tax data)' ] if $taxproducts; + $report_financial{'Monthly Sales and Taxes'} = [$fsurl.'search/tax_sales.html', 'Monthly sales and taxes report']; + # most sites don't need this but there isn't really a config to enable it $report_financial{'E911 Fee Summary'} = [ $fsurl.'search/report_e911.html', 'E911 fee summary' ]; diff --git a/httemplate/elements/select-tower_sector.html b/httemplate/elements/select-tower_sector.html index a16d3bfa0..59b016359 100644 --- a/httemplate/elements/select-tower_sector.html +++ b/httemplate/elements/select-tower_sector.html @@ -12,7 +12,7 @@ table => 'tower', name_col => 'towername', id => 'towernum', - field => 'dummy_towernum', + field => 'towernum', onchange => 'change_towernum(this.value);', element_etc => 'STYLE="vertical-align:top"', &> @@ -63,5 +63,5 @@ foreach my $towernum (keys %sectors_of) { } } -my $empty_label = $opt{'empty_label'} || 'Include services with no tower/sector'; +my $empty_label = $opt{'empty_label'} || 'Include services with no sector'; </%init> diff --git a/httemplate/graph/elements/report.html b/httemplate/graph/elements/report.html index f1b0d166d..b5d214816 100644 --- a/httemplate/graph/elements/report.html +++ b/httemplate/graph/elements/report.html @@ -11,6 +11,7 @@ Example: #these run parallel to items, and can be given as hashes 'row_labels' => \@row_labels, #required 'colors' => \@colors, #required + 'bgcolors' => \@bgcolors, #optional 'graph_labels' => \@graph_labels, #defaults to row_labels 'links' => \@links, #optional @@ -22,7 +23,7 @@ Example: #optional 'nototal' => 1, - 'graph_type' => 'LinesPoints', + 'graph_type' => 'LinesPoints', #can be 'none' for no graph 'bottom_total' => 1, 'sprintf' => '%u', #sprintf format, overrides default %.2f 'disable_money' => 1, @@ -231,7 +232,8 @@ any delimiter and linked from the elements in @data. % foreach my $row ( @items ) { % #make a style % my $color = shift @{ $opt{'colors'} }; -% push @styles, ".i$i { text-align: right; color: #$color; }"; +% my $bgcolor = $opt{'bgcolors'} ? (shift @{ $opt{'bgcolors'} }) : 'ffffff'; +% push @styles, ".i$i { text-align: right; color: #$color; background: #$bgcolor; }"; % #create the data row % my $links = shift @{$opt{'links'}} || ['']; % my $link_prefix = shift @$links; diff --git a/httemplate/misc/batch-cust_pay.html b/httemplate/misc/batch-cust_pay.html index 9f2540cc7..197ade14f 100644 --- a/httemplate/misc/batch-cust_pay.html +++ b/httemplate/misc/batch-cust_pay.html @@ -101,6 +101,10 @@ function select_discount_term(row) { var invoices_for_row = new Object; +var preloading = 0; // the number of preloading threads currently running + +// callback from toggle_application_row: we've received a list of +// the customer's open invoices. store them. function update_invoices(rownum, invoices) { invoices_for_row[rownum] = new Object; // only called before create_application_row @@ -113,6 +117,12 @@ function toggle_application_row(ev, next) { if (!next) next = function(){}; //optional continuation var rownum = this.getAttribute('rownum'); if ( this.checked ) { + // the user has opted to apply the payment to specific invoices. + // - lock the customer + // - fetch the list of open invoices + // - create a row to select an invoice + // - then optionally call "next", with this as the invocant + // and the rownum as argument; we use this to preload rows. var custnum = document.getElementById('custnum'+rownum).value; if (!custnum) return; lock_payment_row(rownum, true); @@ -124,6 +134,9 @@ function toggle_application_row(ev, next) { } ); } else { + // the user has opted not to do that. + // - remove all application rows + // - unlock the customer var row = document.getElementById('row'+rownum); var table_rows = row.parentNode.rows; for (i = row.sectionRowIndex; i < table_rows.count; i++) { @@ -183,6 +196,16 @@ function amount_unapplied(rownum) { var change_app_amount; +// the user has chosen an invoice. the previously chosen invoice is still +// in curr_invoice +// - if there is a value there, put it back on the invoices_for_row list for +// this customer. +// - then _remove_ the newly chosen invoice from that list. +// - find the "owed" element for this application row and set its value to the +// amount owed on that invoice. +// - find the "amount" element for this application row and set its value to +// either "owed" or the remaining payment amount, whichever is less. +// - call change_app_amount() on that element. function choose_app_invnum() { var rownum = this.getAttribute('rownum'); var appnum = this.getAttribute('appnum'); @@ -210,8 +233,10 @@ function choose_app_invnum() { } } +// the invoice selector has gained focus. clear its list of options, and +// replace them with the list of open invoices (from invoices_for_row). +// if there's already a selected invoice, prepend that to the list. function focus_app_invnum() { -% # invoice numbers just display as invoice numbers var rownum = this.getAttribute('rownum'); var add_opt = function(obj, value, label) { var o = document.createElement('OPTION'); @@ -233,14 +258,15 @@ function focus_app_invnum() { } } +// an application amount has been changed. if there's any unapplied payment +// amount, and any remaining invoices_for_row, add a blank application row. +// (but don't do this while preloading; it will unconditionally add enough +// rows to show all the attempted applications) function change_app_amount() { var rownum = this.getAttribute('rownum'); var appnum = this.getAttribute('appnum'); -%# maybe some kind of warning if amount_unapplied < 0? -%# only spawn a new application row if there are open invoices left, -%# and this is the highest-numbered application row for the customer, -%# and the sum of the applied amounts is < the amount of the payment, - if ( Object.keys(invoices_for_row[rownum]).length > 0 + if ( preloading == 0 + && Object.keys(invoices_for_row[rownum]).length > 0 && !document.getElementById( 'row'+rownum+'.'+(parseInt(appnum) + 1) ) && amount_unapplied(rownum) > 0 ) { @@ -248,6 +274,9 @@ function change_app_amount() { } } +// we're creating a payment application row. +// create the following elements: <TR>, <TD>s, "Apply to invoice" caption, +// invnum selector, "owed" display, amount input box, delete button. function create_application_row(rownum, appnum) { var payment_row = document.getElementById('row'+rownum); var tr_app = document.createElement('TR'); @@ -341,29 +370,45 @@ function preload() { var enable = document.getElementById('enable_app'+rownum); enable.checked = true; var preload_row = function(r) {//continuation from toggle_application_row - for (appnum=0; appnum < row_obj[r].length; appnum++) { - this_app = row_obj[r][appnum]; - var x = r + '.' + appnum; - //set invnum - var select_invnum = document.getElementById('invnum'+x); - focus_app_invnum.call(select_invnum); - for (i=0; i<select_invnum.options.length; i++) { - if (select_invnum.options[i].value == this_app.invnum) { - select_invnum.selectedIndex = i; + + preloading++; + + try { + for (appnum=0; appnum < row_obj[r].length; appnum++) { + this_app = row_obj[r][appnum]; + var x = r + '.' + appnum; + //set invnum + var select_invnum = document.getElementById('invnum'+x); + focus_app_invnum.call(select_invnum); + for (i=0; i<select_invnum.options.length; i++) { + if (select_invnum.options[i].value == this_app.invnum) { + select_invnum.selectedIndex = i; + } } - } - choose_app_invnum.call(select_invnum); - //set amount - var input_amount = document.getElementById('amount'+x); - input_amount.value = this_app.amount; - - //set error - var span_error = document.getElementById('error'+x); - span_error.innerHTML = this_app.error; - change_app_amount.call(input_amount); //creates next row - } //for appnum + choose_app_invnum.call(select_invnum); + //set amount + var input_amount = document.getElementById('amount'+x); + input_amount.value = this_app.amount; + + //set error + var span_error = document.getElementById('error'+x); + span_error.innerHTML = this_app.error; + + // create another row (unconditionally) + create_application_row(r, appnum + 1); + + } //for appnum + + } finally { + preloading--; + } + }; //preload_row function + + // enable application rows on the selected customer. this creates + // the first row, then kicks off preloading. toggle_application_row.call(enable, null, preload_row); + } // if (row_obj[rownum].length } //for rownum } diff --git a/httemplate/search/cust_bill.html b/httemplate/search/cust_bill.html index 62f5f7afa..88e291b5b 100755 --- a/httemplate/search/cust_bill.html +++ b/httemplate/search/cust_bill.html @@ -197,7 +197,7 @@ my $html_init = join("\n", map { ( my $action = $_ ) =~ s/_$//; include('/elements/progress-init.html', $_.'form', - [ keys %search ], + [ sort keys %search ], "../misc/${_}invoices.cgi", { 'message' => "Invoices re-${action}ed" }, #would be nice to show the number of them, but... $_, #key @@ -207,7 +207,7 @@ my $html_init = join("\n", map { my @values = ref($search{$f}) ? @{ $search{$f} } : $search{$f}; map qq!<INPUT TYPE="hidden" NAME="$f" VALUE="$_">!, @values; } - keys %search + sort keys %search ), qq!</FORM>! } qw( print_ email_ fax_ ftp_ spool_ ) ). diff --git a/httemplate/search/tax_sales.cgi b/httemplate/search/tax_sales.cgi new file mode 100644 index 000000000..4b28c934a --- /dev/null +++ b/httemplate/search/tax_sales.cgi @@ -0,0 +1,172 @@ + +<% include('/graph/elements/report.html', + 'title' => 'Monthly Sales and Taxes Report', + 'items' => \@row_labels, + 'data' => \@rowdata, + 'row_labels' => \@row_labels, + 'colors' => \@rowcolors, + 'bgcolors' => \@rowbgcolors, + 'col_labels' => \@col_labels, + 'graph_type' => 'none', + ) %> + +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Financial reports'); + +# validate cgi input +my $start_month = $cgi->param('start_month'); +die "Bad start month" unless $start_month =~ /^\d*$/; +my $start_year = $cgi->param('start_year'); +die "Bad start year" unless $start_year =~ /^\d*$/; +my $end_month = $cgi->param('end_month'); +die "Bad end month" unless $end_month =~ /^\d*$/; +my $end_year = $cgi->param('end_year'); +die "Bad end year" unless $end_year =~ /^\d*$/; +die "End year before start year" if $end_year < $start_year; +die "End month before start month" if ($start_year == $end_year) && ($end_month < $start_month); +my $country = $cgi->param('country'); +die "Bad country code" unless $country =~ /^\w\w$/; + +# Data structure for building final table +# row order will be calculated separately +# +# $data->{$rowlabel} = \@rowvalues +# + +my $data = {}; + +### Calculate package values + +my @pkg_class = qsearch('pkg_class'); +my @pkg_classnum = map { $_->classnum } @pkg_class; +unshift(@pkg_classnum,0); +my @pkg_classname = map { $_->classname } @pkg_class; +unshift(@pkg_classname,'(empty class)'); + +# some false laziness with graph/elements/monthly.html +my %reportopts = ( + 'items' => [ qw( cust_bill_pkg cust_bill_pkg_credits ) ], + 'cross_params' => [ map { [ 'classnum', $_ ] } @pkg_classnum ], + 'start_month' => $start_month, + 'start_year' => $start_year, + 'end_month' => $end_month, + 'end_year' => $end_year, +); +my $pkgreport = new FS::Report::Table::Monthly(%reportopts); +my $pkgdata = $pkgreport->data; + +# assuming every month/year combo is included in results, +# just use this list for the final table +my @col_labels = @{$pkgdata->{'label'}}; + +# unpack report data into a more manageable format +foreach my $item ( qw( invoiced credited ) ) { # invoiced, credited + my $itemref = shift @{$pkgdata->{'data'}}; + foreach my $label (@{$pkgdata->{'label'}}) { # month/year + my $labelref = shift @$itemref; + foreach my $classname (@pkg_classname) { # pkg class + my $value = shift @$labelref; + my $rowlabel = $classname.' '.$item; + $data->{$rowlabel} ||= []; + push(@{$data->{$rowlabel}},$value); + } + } +} + +### Calculate tax values + +# false laziness w report_tax.html, put this in FS::Report::Tax? +my $sth = dbh->prepare('SELECT DISTINCT(COALESCE(taxname, \'Tax\')) FROM cust_main_county'); +$sth->execute or die $sth->errstr; +my @taxnames = map { $_->[0] } @{ $sth->fetchall_arrayref }; +$sth->finish; + +# get DateTime objects for start & end +my $startdate = DateTime->new( + year => $start_year, + month => $start_month, + day => 1 + ); +my $enddate = DateTime->new( + year => $end_year, + month => $end_month, + day => 1 + ); +$enddate->add( months => 1 )->subtract( seconds => 1 ); # the last second of the month + +# common to all tax reports +my %params = ( + 'country' => $country, + 'credit_date' => 'cust_bill', +); + +# run a report for each month, for each tax +my $countdate = $startdate->clone; +while ($countdate < $enddate) { + + # set report start date, iterate to end of this month, set report end date + $params{'beginning'} = $countdate->epoch; + $params{'ending'} = $countdate->add( months => 1 )->subtract( seconds => 1 )->epoch; + + # run a report for each tax name + foreach my $taxname (@taxnames) { + $params{'taxname'} = $taxname; + my $report = FS::Report::Tax->report_internal(%params); + + # extract totals from report, kinda awkward + my $pkgclass = ''; # this will get more complicated if we breakdown by pkgclass + my @values = (0,0); + if ($report->{'total'}->{$pkgclass}) { + my %totals = map { $$_[0] => $$_[2] } @{$report->{'total'}->{$pkgclass}}; + $values[0] = $totals{'tax'}; + $values[1] = $totals{'credit'}; + } + + # treat each tax class like it's an additional pkg class + foreach my $item ( qw ( invoiced credited ) ) { + my $rowlabel = $taxname . ' ' . $item; + my $value = shift @values; + $data->{$rowlabel} ||= []; + push(@{$data->{$rowlabel}},$value); + } + + } + + # iterate to next month + $countdate->add( seconds => 1 ); +} + +# put the data in the order we want it +my @row_labels; +my @rowdata; +my @rowcolors; +my @rowbgcolors; +my $pkgcount = 0; #for colors +foreach my $classname (@pkg_classname,@taxnames) { + my $istax = ($pkgcount++ < @pkg_classname) ? 0 : 1; + my @classlabels = (); + my @classdata = (); + my @classcolors = (); + my @classbgcolors = (); + my $hasdata = 0; + foreach my $item ( qw( invoiced credited ) ) { + my $rowlabel = $classname . ' ' . $item; + my $rowdata = $data->{$rowlabel}; + my $rowcolor = $istax ? '0000ff' : '000000'; + my $rowbgcolor = ($item eq 'credited') ? 'cccccc' : 'ffffff'; + $hasdata = 1 if grep { $_ } @$rowdata; + push(@classlabels,$rowlabel); + push(@classdata,$rowdata); + push(@classcolors,$rowcolor); + push(@classbgcolors,$rowbgcolor); + } + next unless $hasdata; # don't include class if it has no data in time range + push(@row_labels,@classlabels); + push(@rowdata,@classdata); + push(@rowcolors,@classcolors); + push(@rowbgcolors,@classbgcolors); +} + +</%init> diff --git a/httemplate/search/tax_sales.html b/httemplate/search/tax_sales.html new file mode 100755 index 000000000..61cf86e2e --- /dev/null +++ b/httemplate/search/tax_sales.html @@ -0,0 +1,35 @@ +<% include('/elements/header.html', 'Monthly Sales and Taxes Report' ) %> + +<FORM ACTION="tax_sales.cgi" METHOD="GET"> + +<TABLE> + + <% include('/elements/tr-select-from_to.html') %> + + <% include('/elements/tr-select.html', + 'label' => 'Country', + 'field' => 'country', + 'options' => \@countries, + 'curr_value' => ($conf->config('countrydefault') || 'US'), + ) %> + +</TABLE> + +<BR><INPUT TYPE="submit" VALUE="Get Report"> + +</FORM> + +<% include('/elements/footer.html') %> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Financial reports'); + +my $conf = new FS::Conf; + +# false laziness w report_tax.html, put this in FS::Report::Tax? +my $sth = dbh->prepare('SELECT DISTINCT(country) FROM cust_location'); +$sth->execute or die $sth->errstr; +my @countries = map { $_->[0] } @{ $sth->fetchall_arrayref }; + +</%init> |