From 3e2c2ad8aff1bd361ca07495b2255538c8231079 Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Thu, 6 Aug 2015 23:15:26 -0700 Subject: [PATCH] update tests to keep in sync with v4 --- FS-Test/bin/freeside-test-run | 2 +- FS-Test/bin/freeside-test-start | 7 +- FS-Test/bin/freeside-test-stop | 7 +- FS-Test/lib/FS/Test.pm | 12 +- ...=Test%20one-time%20charge:quantity=1:bill_now=1 | 19 + .../share/output/edit/quick-charge.html/custnum=2 | 399 ++++ ...ning=01%2F01%2F2016:agentnum=1:order_by=paynum} | 734 +++---- .../{pkgnum => keywords=pkgnum:order_by=pkgnum} | 1956 ++++++++--------- ...F31%2F2015:pkgpart=5:pkgpart=2:order_by=pkgnum} | 1696 +++++++-------- ...412400:end=1441090800:order_by=cust_pkg.pkgnum} | 454 ++-- .../invnum=681:notice_name=Invoice | Bin 121868 -> 0 bytes .../invnum=681:notice_name=Invoice | 288 +++ .../view/cust_main.cgi/custnum=2:show=packages | 2225 ++++++++++++++++++++ .../cust_main.cgi/custnum=2:show=payment_history | 1249 +++++++++++ FS-Test/share/ui_tests | 18 +- 15 files changed, 6633 insertions(+), 2433 deletions(-) create mode 100644 FS-Test/share/output/edit/process/quick-charge.cgi/amount=100.00:custnum=2:pkg=Test%20one-time%20charge:quantity=1:bill_now=1 create mode 100644 FS-Test/share/output/edit/quick-charge.html/custnum=2 rename FS-Test/share/output/search/cust_pay.html/{magic=_date:unapplied=0:beginning=01%2F01%2F2016:agentnum=1 => magic=_date:unapplied=0:beginning=01%2F01%2F2016:agentnum=1:order_by=paynum} (84%) rename FS-Test/share/output/search/cust_pkg.cgi/{pkgnum => keywords=pkgnum:order_by=pkgnum} (74%) rename FS-Test/share/output/search/cust_pkg.cgi/{magic=bill:classnum=0:setup_ending=10%2F31%2F2015:pkgpart=5:pkgpart=2 => magic=bill:classnum=0:setup_ending=10%2F31%2F2015:pkgpart=5:pkgpart=2:order_by=pkgnum} (93%) rename FS-Test/share/output/search/cust_pkg_churn.html/{agentnum=:status=setup:begin=1438412400:end=1441090800 => agentnum=:status=setup:begin=1438412400:end=1441090800:order_by=cust_pkg.pkgnum} (99%) delete mode 100644 FS-Test/share/output/view/cust_bill-pdf.cgi/invnum=681:notice_name=Invoice create mode 100644 FS-Test/share/output/view/cust_bill-tex.cgi/invnum=681:notice_name=Invoice create mode 100644 FS-Test/share/output/view/cust_main.cgi/custnum=2:show=packages create mode 100644 FS-Test/share/output/view/cust_main.cgi/custnum=2:show=payment_history diff --git a/FS-Test/bin/freeside-test-run b/FS-Test/bin/freeside-test-run index e709641c1..add1e9b25 100644 --- a/FS-Test/bin/freeside-test-run +++ b/FS-Test/bin/freeside-test-run @@ -14,6 +14,6 @@ freeside-test-stop || true diffname=freeside-test.`date +%Y%m%d`.diff echo "Writing diff to $diffname." -diff -urb "$tempdir" "$sharedir/output" > $diffname +diff -urb "$sharedir/output" "$tempdir" > $diffname diffstat -C $diffname diff --git a/FS-Test/bin/freeside-test-start b/FS-Test/bin/freeside-test-start index 197a84702..cfa1adbc5 100755 --- a/FS-Test/bin/freeside-test-start +++ b/FS-Test/bin/freeside-test-start @@ -49,8 +49,9 @@ sudo cp $sharedir/htpasswd /usr/local/etc/freeside/htpasswd newtime=$(sudo -u freeside \ psql -tc 'SELECT to_timestamp(max(_date) + 86400) FROM cust_bill' \ ) -echo "Setting clock to $newtime." -sudo date -s "$newtime" +# no longer needed since we don't run LaTeX in the test script +#echo "Setting clock to $newtime." +#sudo date -s "$newtime" #echo "Applying upgrades." #sudo -u freeside freeside-upgrade test @@ -58,6 +59,6 @@ sudo date -s "$newtime" # start Apache on a future date when all of the invoice dates are in the past echo "Restarting Apache." -sudo service apache2 start +sudo faketime "$newtime" apache2ctl start echo "Done." diff --git a/FS-Test/bin/freeside-test-stop b/FS-Test/bin/freeside-test-stop index 50668907c..08485f796 100755 --- a/FS-Test/bin/freeside-test-stop +++ b/FS-Test/bin/freeside-test-stop @@ -5,11 +5,12 @@ set -ae echo "Stopping Apache." sudo service apache2 stop -echo "Resetting clock." -sudo hwclock --hctosys - newname=freeside_test_`date +%Y%m%d` if psql -l |grep -q '^ *freeside '; then + if psql -l |grep -q $newname; then + echo "Deleting old test database $newname." + dropdb "$newname" + fi echo "Renaming test database to $newname." psql postgres -c "ALTER DATABASE freeside RENAME TO $newname" fi diff --git a/FS-Test/lib/FS/Test.pm b/FS-Test/lib/FS/Test.pm index 673b8c572..8b1523388 100644 --- a/FS-Test/lib/FS/Test.pm +++ b/FS-Test/lib/FS/Test.pm @@ -116,7 +116,7 @@ sub fetch { my $uri = URI->new( $self->fsurl . '/' . $path); print $uri->path; my $response = $self->mech->get($uri); - print " - " . $response->code . "\n"; + print " - " . $self->mech->status . "\n"; next unless $response->is_success; local $CWD; @@ -139,7 +139,17 @@ sub fetch { push @CWD, $dir; } write_file($file, {binmode => ':utf8'}, $response->decoded_content); + + # Detect Mason errors and make noise about them; they're presumably + # _never_ correct. Mason errors have one convenient property: there's no + # element on the page. + if ( $self->mech->ct eq 'text/html' and !$self->mech->title ) { + print "***error***\n"; + } } } +# what we don't do in here is diff the results. +# Test::HTML::Differences from CPAN would be one way to do that. + 1; # End of FS::Test diff --git a/FS-Test/share/output/edit/process/quick-charge.cgi/amount=100.00:custnum=2:pkg=Test%20one-time%20charge:quantity=1:bill_now=1 b/FS-Test/share/output/edit/process/quick-charge.cgi/amount=100.00:custnum=2:pkg=Test%20one-time%20charge:quantity=1:bill_now=1 new file mode 100644 index 000000000..22d8b4224 --- /dev/null +++ b/FS-Test/share/output/edit/process/quick-charge.cgi/amount=100.00:custnum=2:pkg=Test%20one-time%20charge:quantity=1:bill_now=1 @@ -0,0 +1,19 @@ + <HTML> + <HEAD> + <TITLE> + One-time charge added + + + + + + + +
One-time charge added
+
+
+ + + diff --git a/FS-Test/share/output/edit/quick-charge.html/custnum=2 b/FS-Test/share/output/edit/quick-charge.html/custnum=2 new file mode 100644 index 000000000..507ac5a67 --- /dev/null +++ b/FS-Test/share/output/edit/quick-charge.html/custnum=2 @@ -0,0 +1,399 @@ + + + + + One-time charge + + + + + + + + + + + + +
One-time charge
+
+
+ + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Amount to charge + $ +
Cost$ +
Quantity + +
Package class + + + + + +
Invoice now + + with terms + + +
Charge date + + + + (leave blank to charge immediately) +
Invoice this charge separately + + +
Disable automatic electronic check charge
Tax exempt
Description + +
Optional additional description (also printed on invoice):
+ +
+ + +
+ + + + + + diff --git a/FS-Test/share/output/search/cust_pay.html/magic=_date:unapplied=0:beginning=01%2F01%2F2016:agentnum=1 b/FS-Test/share/output/search/cust_pay.html/magic=_date:unapplied=0:beginning=01%2F01%2F2016:agentnum=1:order_by=paynum similarity index 84% rename from FS-Test/share/output/search/cust_pay.html/magic=_date:unapplied=0:beginning=01%2F01%2F2016:agentnum=1 rename to FS-Test/share/output/search/cust_pay.html/magic=_date:unapplied=0:beginning=01%2F01%2F2016:agentnum=1:order_by=paynum index 8d01b1a8a..d36e6780d 100644 --- a/FS-Test/share/output/search/cust_pay.html/magic=_date:unapplied=0:beginning=01%2F01%2F2016:agentnum=1 +++ b/FS-Test/share/output/search/cust_pay.html/magic=_date:unapplied=0:beginning=01%2F01%2F2016:agentnum=1:order_by=paynum @@ -854,36 +854,36 @@ myMenu63.width = 256;
- All payments (585)Credit card (585) + All payments (585)Credit card (585)

Download full results
-as Excel spreadsheet
-as printable copy
+as Excel spreadsheet
+as printable copy

1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - Next + Next @@ -990,15 +990,15 @@ myMenu63.width = 256; - Card #412393xxxxxx6707 + Card #412300xxxxxx1422 - $60.00 + $30.00 - Jan 10 2016 + Jan 01 2016 @@ -1010,7 +1010,7 @@ myMenu63.width = 256; - Flatley-Hagenes (Donnelly, Odessa) + Bartoletti, Theodora @@ -1019,7 +1019,7 @@ myMenu63.width = 256; - Card #412393xxxxxx6707 + Card #412334xxxxxx9230 @@ -1027,7 +1027,7 @@ myMenu63.width = 256; - Feb 01 2016 + Jan 01 2016 @@ -1039,7 +1039,7 @@ myMenu63.width = 256; - Flatley-Hagenes (Donnelly, Odessa) + Renner Inc (Volkman, Antwan) @@ -1048,15 +1048,15 @@ myMenu63.width = 256; - Card #412393xxxxxx6707 + Card #412382xxxxxx8869 - $60.00 + $120.00 - Feb 10 2016 + Jan 01 2016 @@ -1068,7 +1068,7 @@ myMenu63.width = 256; - Flatley-Hagenes (Donnelly, Odessa) + Ankunding, Fahey and Satterfield (Willms, Marcelle) @@ -1077,15 +1077,15 @@ myMenu63.width = 256; - Card #412393xxxxxx6707 + Card #412381xxxxxx9354 - $90.00 + $120.00 - Mar 01 2016 + Jan 01 2016 @@ -1097,7 +1097,7 @@ myMenu63.width = 256; - Flatley-Hagenes (Donnelly, Odessa) + Johnston, Delphine @@ -1106,11 +1106,11 @@ myMenu63.width = 256; - Card #412300xxxxxx1422 + Card #412393xxxxxx6496 - $30.00 + $120.00 @@ -1126,7 +1126,7 @@ myMenu63.width = 256; - Bartoletti, Theodora + Grady, Aniya @@ -1135,15 +1135,15 @@ myMenu63.width = 256; - Card #412300xxxxxx1422 + Card #412352xxxxxx8661 - $60.00 + $90.00 - Jan 19 2016 + Jan 01 2016 @@ -1155,7 +1155,7 @@ myMenu63.width = 256; - Bartoletti, Theodora + Stracke Inc (Kuhlman, Kaya) @@ -1164,15 +1164,15 @@ myMenu63.width = 256; - Card #412300xxxxxx1422 + Card #412371xxxxxx3676 - $30.00 + $90.00 - Feb 01 2016 + Jan 01 2016 @@ -1184,7 +1184,7 @@ myMenu63.width = 256; - Bartoletti, Theodora + Toy-Gerlach (Zulauf, Sharon) @@ -1193,15 +1193,15 @@ myMenu63.width = 256; - Card #412300xxxxxx1422 + Card #412345xxxxxx4583 - $60.00 + $30.00 - Feb 19 2016 + Jan 01 2016 @@ -1213,7 +1213,7 @@ myMenu63.width = 256; - Bartoletti, Theodora + McDermott, Alejandra @@ -1222,15 +1222,15 @@ myMenu63.width = 256; - Card #412300xxxxxx1422 + Card #412380xxxxxx3823 - $30.00 + $120.00 - Mar 01 2016 + Jan 01 2016 @@ -1242,7 +1242,7 @@ myMenu63.width = 256; - Bartoletti, Theodora + Feest, Bechtelar and Harber (Douglas, Geovany) @@ -1251,7 +1251,7 @@ myMenu63.width = 256; - Card #412381xxxxxx9354 + Card #412390xxxxxx9436 @@ -1271,7 +1271,7 @@ myMenu63.width = 256; - Johnston, Delphine + Zemlak, Asia @@ -1280,7 +1280,7 @@ myMenu63.width = 256; - Card #412381xxxxxx9354 + Card #412396xxxxxx4646 @@ -1288,7 +1288,7 @@ myMenu63.width = 256; - Feb 01 2016 + Jan 01 2016 @@ -1300,7 +1300,7 @@ myMenu63.width = 256; - Johnston, Delphine + Zemlak and Sons (Swift, Maximilian) @@ -1309,15 +1309,15 @@ myMenu63.width = 256; - Card #412381xxxxxx9354 + Card #412353xxxxxx2414 - $120.00 + $90.00 - Mar 01 2016 + Jan 01 2016 @@ -1329,7 +1329,7 @@ myMenu63.width = 256; - Johnston, Delphine + Haag-Schumm (Ullrich, Shemar) @@ -1338,11 +1338,11 @@ myMenu63.width = 256; - Card #412334xxxxxx9230 + Card #412325xxxxxx9052 - $90.00 + $30.00 @@ -1358,7 +1358,7 @@ myMenu63.width = 256; - Renner Inc (Volkman, Antwan) + Hackett, Garnet @@ -1367,15 +1367,15 @@ myMenu63.width = 256; - Card #412334xxxxxx9230 + Card #412371xxxxxx6197 - $60.00 + $90.00 - Jan 23 2016 + Jan 01 2016 @@ -1387,7 +1387,7 @@ myMenu63.width = 256; - Renner Inc (Volkman, Antwan) + Kuhn-Ruecker (Nienow, Kacie) @@ -1396,15 +1396,15 @@ myMenu63.width = 256; - Card #412334xxxxxx9230 + Card #412377xxxxxx7530 - $90.00 + $120.00 - Feb 01 2016 + Jan 01 2016 @@ -1416,7 +1416,7 @@ myMenu63.width = 256; - Renner Inc (Volkman, Antwan) + Kuhlman-Huels (Parisian, Cristopher) @@ -1425,15 +1425,15 @@ myMenu63.width = 256; - Card #412334xxxxxx9230 + Card #412333xxxxxx3755 - $60.00 + $30.00 - Feb 23 2016 + Jan 01 2016 @@ -1445,7 +1445,7 @@ myMenu63.width = 256; - Renner Inc (Volkman, Antwan) + Conn, Marisol @@ -1454,15 +1454,15 @@ myMenu63.width = 256; - Card #412334xxxxxx9230 + Card #412328xxxxxx6431 - $90.00 + $120.00 - Mar 01 2016 + Jan 01 2016 @@ -1474,7 +1474,7 @@ myMenu63.width = 256; - Renner Inc (Volkman, Antwan) + Toy, Bethany @@ -1483,11 +1483,11 @@ myMenu63.width = 256; - Card #412382xxxxxx8869 + Card #412313xxxxxx5222 - $120.00 + $90.00 @@ -1503,7 +1503,7 @@ myMenu63.width = 256; - Ankunding, Fahey and Satterfield (Willms, Marcelle) + Kunze, Ryan and Dare (Schultz, Jasper) @@ -1512,15 +1512,15 @@ myMenu63.width = 256; - Card #412382xxxxxx8869 + Card #412383xxxxxx0173 - $60.00 + $120.00 - Jan 25 2016 + Jan 01 2016 @@ -1532,7 +1532,7 @@ myMenu63.width = 256; - Ankunding, Fahey and Satterfield (Willms, Marcelle) + Buckridge, Spinka and Gerlach (Larkin, Lue) @@ -1541,15 +1541,15 @@ myMenu63.width = 256; - Card #412382xxxxxx8869 + Card #412364xxxxxx5720 - $120.00 + $30.00 - Feb 01 2016 + Jan 01 2016 @@ -1561,7 +1561,7 @@ myMenu63.width = 256; - Ankunding, Fahey and Satterfield (Willms, Marcelle) + Brekke, Tillman @@ -1570,15 +1570,15 @@ myMenu63.width = 256; - Card #412382xxxxxx8869 + Card #412370xxxxxx0947 - $60.00 + $120.00 - Feb 25 2016 + Jan 01 2016 @@ -1590,7 +1590,7 @@ myMenu63.width = 256; - Ankunding, Fahey and Satterfield (Willms, Marcelle) + Hodkiewicz-Raynor (Macejkovic, Leann) @@ -1599,7 +1599,7 @@ myMenu63.width = 256; - Card #412382xxxxxx8869 + Card #412332xxxxxx8907 @@ -1607,7 +1607,7 @@ myMenu63.width = 256; - Mar 01 2016 + Jan 01 2016 @@ -1619,7 +1619,7 @@ myMenu63.width = 256; - Ankunding, Fahey and Satterfield (Willms, Marcelle) + Kunde, Noemi @@ -1628,11 +1628,11 @@ myMenu63.width = 256; - Card #412393xxxxxx6496 + Card #412390xxxxxx5794 - $120.00 + $90.00 @@ -1648,7 +1648,7 @@ myMenu63.width = 256; - Grady, Aniya + Leannon-Pfannerstill (O'Keefe, Bernie) @@ -1657,15 +1657,15 @@ myMenu63.width = 256; - Card #412393xxxxxx6496 + Card #412371xxxxxx6297 - $120.00 + $30.00 - Feb 01 2016 + Jan 01 2016 @@ -1677,7 +1677,7 @@ myMenu63.width = 256; - Grady, Aniya + Mohr, Florine @@ -1686,15 +1686,15 @@ myMenu63.width = 256; - Card #412393xxxxxx6496 + Card #412323xxxxxx3468 - $120.00 + $90.00 - Mar 01 2016 + Jan 01 2016 @@ -1706,7 +1706,7 @@ myMenu63.width = 256; - Grady, Aniya + Medhurst Group (Medhurst, Rafaela) @@ -1715,15 +1715,15 @@ myMenu63.width = 256; - Card #412304xxxxxx6325 + Card #412306xxxxxx5828 - $120.48 + $120.00 - Jan 16 2016 + Jan 01 2016 @@ -1735,7 +1735,7 @@ myMenu63.width = 256; - Kuhlman, Niko + Bernhard LLC (Hintz, Winston) @@ -1744,15 +1744,15 @@ myMenu63.width = 256; - Card #412304xxxxxx6325 + Card #412325xxxxxx5322 - $30.00 + $120.00 - Feb 01 2016 + Jan 01 2016 @@ -1764,7 +1764,7 @@ myMenu63.width = 256; - Kuhlman, Niko + Steuber, Ryley @@ -1773,15 +1773,15 @@ myMenu63.width = 256; - Card #412304xxxxxx6325 + Card #412387xxxxxx0283 - $60.00 + $120.00 - Feb 16 2016 + Jan 01 2016 @@ -1793,7 +1793,7 @@ myMenu63.width = 256; - Kuhlman, Niko + Shanahan LLC (Brown, Ceasar) @@ -1802,7 +1802,7 @@ myMenu63.width = 256; - Card #412304xxxxxx6325 + Card #412392xxxxxx3970 @@ -1810,7 +1810,7 @@ myMenu63.width = 256; - Mar 01 2016 + Jan 01 2016 @@ -1822,7 +1822,7 @@ myMenu63.width = 256; - Kuhlman, Niko + Frami, Gayle @@ -1831,11 +1831,11 @@ myMenu63.width = 256; - Card #412380xxxxxx3823 + Card #412378xxxxxx3202 - $120.00 + $90.00 @@ -1851,7 +1851,7 @@ myMenu63.width = 256; - Feest, Bechtelar and Harber (Douglas, Geovany) + Wiegand-Kohler (Murray, Amparo) @@ -1860,15 +1860,15 @@ myMenu63.width = 256; - Card #412380xxxxxx3823 + Card #412399xxxxxx4977 - $60.00 + $30.00 - Jan 12 2016 + Jan 01 2016 @@ -1880,7 +1880,7 @@ myMenu63.width = 256; - Feest, Bechtelar and Harber (Douglas, Geovany) + Goldner, Verlie @@ -1889,7 +1889,7 @@ myMenu63.width = 256; - Card #412380xxxxxx3823 + Card #412340xxxxxx5576 @@ -1897,7 +1897,7 @@ myMenu63.width = 256; - Feb 01 2016 + Jan 01 2016 @@ -1909,7 +1909,7 @@ myMenu63.width = 256; - Feest, Bechtelar and Harber (Douglas, Geovany) + Leuschke-Stamm (Dibbert, Betsy) @@ -1918,15 +1918,15 @@ myMenu63.width = 256; - Card #412380xxxxxx3823 + Card #412336xxxxxx0282 - $60.00 + $120.00 - Feb 12 2016 + Jan 01 2016 @@ -1938,7 +1938,7 @@ myMenu63.width = 256; - Feest, Bechtelar and Harber (Douglas, Geovany) + Thiel, Dagmar @@ -1947,7 +1947,7 @@ myMenu63.width = 256; - Card #412380xxxxxx3823 + Card #412389xxxxxx2421 @@ -1955,7 +1955,7 @@ myMenu63.width = 256; - Mar 01 2016 + Jan 01 2016 @@ -1967,7 +1967,7 @@ myMenu63.width = 256; - Feest, Bechtelar and Harber (Douglas, Geovany) + Schultz, Colten @@ -1976,11 +1976,11 @@ myMenu63.width = 256; - Card #412352xxxxxx8661 + Card #412327xxxxxx2500 - $90.00 + $120.00 @@ -1996,7 +1996,7 @@ myMenu63.width = 256; - Stracke Inc (Kuhlman, Kaya) + Sawayn and Sons (Beier, Olin) @@ -2005,15 +2005,15 @@ myMenu63.width = 256; - Card #412352xxxxxx8661 + Card #412340xxxxxx7763 - $60.00 + $90.00 - Jan 03 2016 + Jan 01 2016 @@ -2025,7 +2025,7 @@ myMenu63.width = 256; - Stracke Inc (Kuhlman, Kaya) + Luettgen LLC (Grant, Grover) @@ -2034,7 +2034,7 @@ myMenu63.width = 256; - Card #412352xxxxxx8661 + Card #412391xxxxxx1645 @@ -2042,7 +2042,7 @@ myMenu63.width = 256; - Feb 01 2016 + Jan 01 2016 @@ -2054,7 +2054,7 @@ myMenu63.width = 256; - Stracke Inc (Kuhlman, Kaya) + Schultz, Hyatt and Ruecker (Yundt, Berta) @@ -2063,15 +2063,15 @@ myMenu63.width = 256; - Card #412352xxxxxx8661 + Card #412341xxxxxx1664 - $60.00 + $30.00 - Feb 03 2016 + Jan 01 2016 @@ -2083,7 +2083,7 @@ myMenu63.width = 256; - Stracke Inc (Kuhlman, Kaya) + Pagac, Mariano @@ -2092,15 +2092,15 @@ myMenu63.width = 256; - Card #412352xxxxxx8661 + Card #412387xxxxxx9621 - $90.00 + $120.00 - Mar 01 2016 + Jan 01 2016 @@ -2112,7 +2112,7 @@ myMenu63.width = 256; - Stracke Inc (Kuhlman, Kaya) + Moore-Cummerata (DuBuque, Russ) @@ -2121,11 +2121,11 @@ myMenu63.width = 256; - Card #412345xxxxxx4583 + Card #412351xxxxxx3194 - $30.00 + $120.00 @@ -2141,7 +2141,7 @@ myMenu63.width = 256; - McDermott, Alejandra + Abbott, Addison @@ -2150,15 +2150,15 @@ myMenu63.width = 256; - Card #412345xxxxxx4583 + Card #412387xxxxxx5985 - $60.00 + $120.00 - Jan 14 2016 + Jan 01 2016 @@ -2170,7 +2170,7 @@ myMenu63.width = 256; - McDermott, Alejandra + Brown, Danial @@ -2179,7 +2179,7 @@ myMenu63.width = 256; - Card #412345xxxxxx4583 + Card #412307xxxxxx6603 @@ -2187,7 +2187,7 @@ myMenu63.width = 256; - Feb 01 2016 + Jan 01 2016 @@ -2199,7 +2199,7 @@ myMenu63.width = 256; - McDermott, Alejandra + Lehner, Ryann @@ -2208,15 +2208,15 @@ myMenu63.width = 256; - Card #412345xxxxxx4583 + Card #412392xxxxxx5923 - $60.00 + $120.00 - Feb 14 2016 + Jan 01 2016 @@ -2228,7 +2228,7 @@ myMenu63.width = 256; - McDermott, Alejandra + Balistreri-Koepp (Effertz, Laurie) @@ -2237,15 +2237,15 @@ myMenu63.width = 256; - Card #412345xxxxxx4583 + Card #412360xxxxxx2458 - $30.00 + $90.00 - Mar 01 2016 + Jan 01 2016 @@ -2257,7 +2257,7 @@ myMenu63.width = 256; - McDermott, Alejandra + Hoeger-Brown (Shields, Serenity) @@ -2266,11 +2266,11 @@ myMenu63.width = 256; - Card #412390xxxxxx9436 + Card #412373xxxxxx4113 - $120.00 + $90.00 @@ -2286,7 +2286,7 @@ myMenu63.width = 256; - Zemlak, Asia + Corkery-D'Amore (Wyman, Bethel) @@ -2295,15 +2295,15 @@ myMenu63.width = 256; - Card #412390xxxxxx9436 + Card #412328xxxxxx7873 - $120.00 + $30.00 - Feb 01 2016 + Jan 01 2016 @@ -2315,7 +2315,7 @@ myMenu63.width = 256; - Zemlak, Asia + Monahan, Tyrese @@ -2324,7 +2324,7 @@ myMenu63.width = 256; - Card #412390xxxxxx9436 + Card #412328xxxxxx6854 @@ -2332,7 +2332,7 @@ myMenu63.width = 256; - Mar 01 2016 + Jan 01 2016 @@ -2344,7 +2344,7 @@ myMenu63.width = 256; - Zemlak, Asia + Kessler, Dana @@ -2353,11 +2353,11 @@ myMenu63.width = 256; - Card #412371xxxxxx3676 + Card #412311xxxxxx9654 - $90.00 + $120.00 @@ -2373,7 +2373,7 @@ myMenu63.width = 256; - Toy-Gerlach (Zulauf, Sharon) + Corkery LLC (Beahan, Sebastian) @@ -2382,15 +2382,15 @@ myMenu63.width = 256; - Card #412371xxxxxx3676 + Card #412381xxxxxx2589 - $60.00 + $30.00 - Jan 28 2016 + Jan 01 2016 @@ -2402,7 +2402,7 @@ myMenu63.width = 256; - Toy-Gerlach (Zulauf, Sharon) + Pacocha, Matilde @@ -2411,15 +2411,15 @@ myMenu63.width = 256; - Card #412371xxxxxx3676 + Card #412327xxxxxx8175 - $90.00 + $120.00 - Feb 01 2016 + Jan 01 2016 @@ -2431,7 +2431,7 @@ myMenu63.width = 256; - Toy-Gerlach (Zulauf, Sharon) + Spinka Inc (Runte, Emmalee) @@ -2440,15 +2440,15 @@ myMenu63.width = 256; - Card #412371xxxxxx3676 + Card #412384xxxxxx2819 - $60.00 + $90.00 - Feb 28 2016 + Jan 01 2016 @@ -2460,7 +2460,7 @@ myMenu63.width = 256; - Toy-Gerlach (Zulauf, Sharon) + Kozey and Sons (Vandervort, Harmon) @@ -2469,7 +2469,7 @@ myMenu63.width = 256; - Card #412371xxxxxx3676 + Card #412335xxxxxx1714 @@ -2477,7 +2477,7 @@ myMenu63.width = 256; - Mar 01 2016 + Jan 01 2016 @@ -2489,7 +2489,7 @@ myMenu63.width = 256; - Toy-Gerlach (Zulauf, Sharon) + Fay and Sons (Gerhold, Thora) @@ -2498,7 +2498,7 @@ myMenu63.width = 256; - Card #412396xxxxxx4646 + Card #412302xxxxxx4669 @@ -2518,7 +2518,7 @@ myMenu63.width = 256; - Zemlak and Sons (Swift, Maximilian) + Dach, Lueilwitz and Koepp (Kovacek, Frank) @@ -2527,15 +2527,15 @@ myMenu63.width = 256; - Card #412396xxxxxx4646 + Card #412380xxxxxx8241 - $60.00 + $90.00 - Jan 16 2016 + Jan 01 2016 @@ -2547,7 +2547,7 @@ myMenu63.width = 256; - Zemlak and Sons (Swift, Maximilian) + Luettgen-Jacobs (Hintz, Junior) @@ -2556,15 +2556,15 @@ myMenu63.width = 256; - Card #412396xxxxxx4646 + Card #412350xxxxxx1348 - $120.00 + $30.00 - Feb 01 2016 + Jan 01 2016 @@ -2576,7 +2576,7 @@ myMenu63.width = 256; - Zemlak and Sons (Swift, Maximilian) + Muller, Kenyatta @@ -2585,15 +2585,15 @@ myMenu63.width = 256; - Card #412396xxxxxx4646 + Card #412369xxxxxx5713 - $60.00 + $120.00 - Feb 16 2016 + Jan 01 2016 @@ -2605,7 +2605,7 @@ myMenu63.width = 256; - Zemlak and Sons (Swift, Maximilian) + McKenzie, Kareem @@ -2614,7 +2614,7 @@ myMenu63.width = 256; - Card #412396xxxxxx4646 + Card #412369xxxxxx0557 @@ -2622,7 +2622,7 @@ myMenu63.width = 256; - Mar 01 2016 + Jan 01 2016 @@ -2634,7 +2634,7 @@ myMenu63.width = 256; - Zemlak and Sons (Swift, Maximilian) + Braun, Rath and Gutkowski (Wilderman, Reyes) @@ -2643,15 +2643,15 @@ myMenu63.width = 256; - Card #412325xxxxxx5169 + Card #412373xxxxxx2309 - $108.23 + $30.00 - Jan 26 2016 + Jan 01 2016 @@ -2663,7 +2663,7 @@ myMenu63.width = 256; - Johnston, Florence + Dibbert, Roman @@ -2672,15 +2672,15 @@ myMenu63.width = 256; - Card #412325xxxxxx5169 + Card #412338xxxxxx4420 - $120.00 + $90.00 - Feb 01 2016 + Jan 01 2016 @@ -2692,7 +2692,7 @@ myMenu63.width = 256; - Johnston, Florence + Roberts-Schinner (Flatley, Amelia) @@ -2701,7 +2701,7 @@ myMenu63.width = 256; - Card #412325xxxxxx5169 + Card #412388xxxxxx0555 @@ -2709,7 +2709,7 @@ myMenu63.width = 256; - Mar 01 2016 + Jan 01 2016 @@ -2721,7 +2721,7 @@ myMenu63.width = 256; - Johnston, Florence + Rau, Dale @@ -2730,7 +2730,7 @@ myMenu63.width = 256; - Card #412333xxxxxx3755 + Card #412347xxxxxx5960 @@ -2750,7 +2750,7 @@ myMenu63.width = 256; - Conn, Marisol + Emmerich, Neil @@ -2759,15 +2759,15 @@ myMenu63.width = 256; - Card #412333xxxxxx3755 + Card #412381xxxxxx5485 - $60.00 + $120.00 - Jan 10 2016 + Jan 01 2016 @@ -2779,7 +2779,7 @@ myMenu63.width = 256; - Conn, Marisol + Hermiston, Alexa @@ -2788,15 +2788,15 @@ myMenu63.width = 256; - Card #412333xxxxxx3755 + Card #412393xxxxxx5889 - $30.00 + $120.00 - Feb 01 2016 + Jan 01 2016 @@ -2808,7 +2808,7 @@ myMenu63.width = 256; - Conn, Marisol + Barton-Goodwin (Schroeder, Brian) @@ -2817,15 +2817,15 @@ myMenu63.width = 256; - Card #412333xxxxxx3755 + Card #412387xxxxxx0848 - $60.00 + $120.00 - Feb 10 2016 + Jan 01 2016 @@ -2837,7 +2837,7 @@ myMenu63.width = 256; - Conn, Marisol + Lind-Bahringer (Ratke, Roma) @@ -2846,15 +2846,15 @@ myMenu63.width = 256; - Card #412333xxxxxx3755 + Card #412354xxxxxx2694 - $30.00 + $90.00 - Mar 01 2016 + Jan 01 2016 @@ -2866,7 +2866,7 @@ myMenu63.width = 256; - Conn, Marisol + Treutel, Kuhn and Sipes (Wintheiser, Elyse) @@ -2875,11 +2875,11 @@ myMenu63.width = 256; - Card #412377xxxxxx7530 + Card #412346xxxxxx5661 - $120.00 + $90.00 @@ -2895,7 +2895,7 @@ myMenu63.width = 256; - Kuhlman-Huels (Parisian, Cristopher) + Kemmer-O'Connell (Schuster, Alexander) @@ -2904,15 +2904,15 @@ myMenu63.width = 256; - Card #412377xxxxxx7530 + Card #412313xxxxxx3494 - $60.00 + $30.00 - Jan 19 2016 + Jan 01 2016 @@ -2924,7 +2924,7 @@ myMenu63.width = 256; - Kuhlman-Huels (Parisian, Cristopher) + Gleason, Ahmed @@ -2933,7 +2933,7 @@ myMenu63.width = 256; - Card #412377xxxxxx7530 + Card #412350xxxxxx9816 @@ -2941,7 +2941,7 @@ myMenu63.width = 256; - Feb 01 2016 + Jan 01 2016 @@ -2953,7 +2953,7 @@ myMenu63.width = 256; - Kuhlman-Huels (Parisian, Cristopher) + Donnelly, Raleigh @@ -2962,15 +2962,15 @@ myMenu63.width = 256; - Card #412377xxxxxx7530 + Card #412342xxxxxx3863 - $60.00 + $120.00 - Feb 19 2016 + Jan 01 2016 @@ -2982,7 +2982,7 @@ myMenu63.width = 256; - Kuhlman-Huels (Parisian, Cristopher) + Feeney, Brice @@ -2991,15 +2991,15 @@ myMenu63.width = 256; - Card #412377xxxxxx7530 + Card #412351xxxxxx2876 - $120.00 + $30.00 - Mar 01 2016 + Jan 01 2016 @@ -3011,7 +3011,7 @@ myMenu63.width = 256; - Kuhlman-Huels (Parisian, Cristopher) + Mante, Demond @@ -3020,11 +3020,11 @@ myMenu63.width = 256; - Card #412353xxxxxx2414 + Card #412358xxxxxx7955 - $90.00 + $120.00 @@ -3040,7 +3040,7 @@ myMenu63.width = 256; - Haag-Schumm (Ullrich, Shemar) + Bernier-Nader (Hane, Floy) @@ -3049,15 +3049,15 @@ myMenu63.width = 256; - Card #412353xxxxxx2414 + Card #412307xxxxxx4512 - $60.00 + $90.00 - Jan 03 2016 + Jan 01 2016 @@ -3069,7 +3069,7 @@ myMenu63.width = 256; - Haag-Schumm (Ullrich, Shemar) + Zulauf-Schiller (Jacobs, Angelina) @@ -3078,15 +3078,15 @@ myMenu63.width = 256; - Card #412353xxxxxx2414 + Card #412371xxxxxx5182 - $90.00 + $120.00 - Feb 01 2016 + Jan 01 2016 @@ -3098,7 +3098,7 @@ myMenu63.width = 256; - Haag-Schumm (Ullrich, Shemar) + Cole, Graham and Towne (Hickle, Javier) @@ -3107,15 +3107,15 @@ myMenu63.width = 256; - Card #412353xxxxxx2414 + Card #412348xxxxxx0834 - $60.00 + $120.00 - Feb 03 2016 + Jan 01 2016 @@ -3127,7 +3127,7 @@ myMenu63.width = 256; - Haag-Schumm (Ullrich, Shemar) + Kunze, Michale @@ -3136,7 +3136,7 @@ myMenu63.width = 256; - Card #412353xxxxxx2414 + Card #412395xxxxxx7269 @@ -3144,7 +3144,7 @@ myMenu63.width = 256; - Mar 01 2016 + Jan 01 2016 @@ -3156,7 +3156,7 @@ myMenu63.width = 256; - Haag-Schumm (Ullrich, Shemar) + Langosh, Shanahan and Huels (Morissette, Florence) @@ -3165,7 +3165,7 @@ myMenu63.width = 256; - Card #412325xxxxxx9052 + Card #412386xxxxxx4614 @@ -3185,7 +3185,7 @@ myMenu63.width = 256; - Hackett, Garnet + Kris, Josie @@ -3194,15 +3194,15 @@ myMenu63.width = 256; - Card #412325xxxxxx9052 + Card #412389xxxxxx7923 - $60.00 + $120.00 - Jan 13 2016 + Jan 01 2016 @@ -3214,7 +3214,7 @@ myMenu63.width = 256; - Hackett, Garnet + Quitzon Group (Davis, Jeffery) @@ -3223,15 +3223,15 @@ myMenu63.width = 256; - Card #412325xxxxxx9052 + Card #412325xxxxxx4150 - $30.00 + $90.00 - Feb 01 2016 + Jan 01 2016 @@ -3243,7 +3243,7 @@ myMenu63.width = 256; - Hackett, Garnet + Olson Inc (Towne, Samara) @@ -3252,15 +3252,15 @@ myMenu63.width = 256; - Card #412325xxxxxx9052 + Card #412339xxxxxx8431 - $60.00 + $120.00 - Feb 13 2016 + Jan 01 2016 @@ -3272,7 +3272,7 @@ myMenu63.width = 256; - Hackett, Garnet + Carter, Cathy @@ -3281,7 +3281,7 @@ myMenu63.width = 256; - Card #412325xxxxxx9052 + Card #412357xxxxxx1799 @@ -3289,7 +3289,7 @@ myMenu63.width = 256; - Mar 01 2016 + Jan 01 2016 @@ -3301,7 +3301,7 @@ myMenu63.width = 256; - Hackett, Garnet + Kub, Julie @@ -3310,7 +3310,7 @@ myMenu63.width = 256; - Card #412328xxxxxx6431 + Card #412310xxxxxx7289 @@ -3330,7 +3330,7 @@ myMenu63.width = 256; - Toy, Bethany + Leuschke, Edd @@ -3339,7 +3339,7 @@ myMenu63.width = 256; - Card #412328xxxxxx6431 + Card #412368xxxxxx9467 @@ -3347,7 +3347,7 @@ myMenu63.width = 256; - Feb 01 2016 + Jan 01 2016 @@ -3359,7 +3359,7 @@ myMenu63.width = 256; - Toy, Bethany + Hamill-McKenzie (Heathcote, Ismael) @@ -3368,15 +3368,15 @@ myMenu63.width = 256; - Card #412328xxxxxx6431 + Card #412371xxxxxx0714 - $120.00 + $30.00 - Mar 01 2016 + Jan 01 2016 @@ -3388,7 +3388,7 @@ myMenu63.width = 256; - Toy, Bethany + Frami, Miller @@ -3397,11 +3397,11 @@ myMenu63.width = 256; - Card #412371xxxxxx6197 + Card #412398xxxxxx2435 - $90.00 + $120.00 @@ -3417,7 +3417,7 @@ myMenu63.width = 256; - Kuhn-Ruecker (Nienow, Kacie) + Zboncak, Schmidt and Howell (Pouros, Robb) @@ -3426,15 +3426,15 @@ myMenu63.width = 256; - Card #412371xxxxxx6197 + Card #412359xxxxxx8241 - $60.00 + $120.00 - Jan 09 2016 + Jan 01 2016 @@ -3446,7 +3446,7 @@ myMenu63.width = 256; - Kuhn-Ruecker (Nienow, Kacie) + Pollich, Kieran @@ -3455,7 +3455,7 @@ myMenu63.width = 256; - Card #412371xxxxxx6197 + Card #412312xxxxxx9289 @@ -3463,7 +3463,7 @@ myMenu63.width = 256; - Feb 01 2016 + Jan 01 2016 @@ -3475,7 +3475,7 @@ myMenu63.width = 256; - Kuhn-Ruecker (Nienow, Kacie) + Pfeffer, Shanahan and Cruickshank (Kutch, Rosario) @@ -3484,15 +3484,15 @@ myMenu63.width = 256; - Card #412371xxxxxx6197 + Card #412384xxxxxx4955 - $60.00 + $90.00 - Feb 09 2016 + Jan 01 2016 @@ -3504,7 +3504,7 @@ myMenu63.width = 256; - Kuhn-Ruecker (Nienow, Kacie) + Leannon-Crona (Schuster, Cierra) @@ -3513,15 +3513,15 @@ myMenu63.width = 256; - Card #412371xxxxxx6197 + Card #412321xxxxxx6661 - $90.00 + $120.00 - Mar 01 2016 + Jan 01 2016 @@ -3533,7 +3533,7 @@ myMenu63.width = 256; - Kuhn-Ruecker (Nienow, Kacie) + Schuster, Ed @@ -3542,7 +3542,7 @@ myMenu63.width = 256; - Card #412383xxxxxx0173 + Card #412385xxxxxx4890 @@ -3562,7 +3562,7 @@ myMenu63.width = 256; - Buckridge, Spinka and Gerlach (Larkin, Lue) + Lind Group (Padberg, Irving) @@ -3571,15 +3571,15 @@ myMenu63.width = 256; - Card #412383xxxxxx0173 + Card #412390xxxxxx2362 - $60.00 + $30.00 - Jan 11 2016 + Jan 01 2016 @@ -3591,7 +3591,7 @@ myMenu63.width = 256; - Buckridge, Spinka and Gerlach (Larkin, Lue) + Upton, Otho @@ -3600,15 +3600,15 @@ myMenu63.width = 256; - Card #412383xxxxxx0173 + Card #412379xxxxxx3787 - $120.00 + $90.00 - Feb 01 2016 + Jan 01 2016 @@ -3620,7 +3620,7 @@ myMenu63.width = 256; - Buckridge, Spinka and Gerlach (Larkin, Lue) + McLaughlin-Luettgen (Berge, Houston) @@ -3629,15 +3629,15 @@ myMenu63.width = 256; - Card #412383xxxxxx0173 + Card #412327xxxxxx0389 - $60.00 + $120.00 - Feb 11 2016 + Jan 01 2016 @@ -3649,7 +3649,7 @@ myMenu63.width = 256; - Buckridge, Spinka and Gerlach (Larkin, Lue) + Weimann Inc (Cartwright, Judah) @@ -3658,15 +3658,15 @@ myMenu63.width = 256; - Card #412383xxxxxx0173 + Card #412312xxxxxx3810 - $120.00 + $90.00 - Mar 01 2016 + Jan 01 2016 @@ -3678,7 +3678,7 @@ myMenu63.width = 256; - Buckridge, Spinka and Gerlach (Larkin, Lue) + Fritsch LLC (Jones, Mandy) @@ -3687,11 +3687,11 @@ myMenu63.width = 256; - Card #412332xxxxxx8907 + Card #412374xxxxxx5034 - $120.00 + $30.00 @@ -3707,7 +3707,7 @@ myMenu63.width = 256; - Kunde, Noemi + Lakin, Lindsay @@ -3716,7 +3716,7 @@ myMenu63.width = 256; - Card #412332xxxxxx8907 + Card #412392xxxxxx8154 @@ -3724,7 +3724,7 @@ myMenu63.width = 256; - Feb 01 2016 + Jan 01 2016 @@ -3736,7 +3736,7 @@ myMenu63.width = 256; - Kunde, Noemi + Hermiston, Cassidy @@ -3745,15 +3745,15 @@ myMenu63.width = 256; - Card #412332xxxxxx8907 + Card #412371xxxxxx3828 - $120.00 + $90.00 - Mar 01 2016 + Jan 01 2016 @@ -3765,7 +3765,7 @@ myMenu63.width = 256; - Kunde, Noemi + Mante LLC (Kessler, Enid) @@ -3774,15 +3774,15 @@ myMenu63.width = 256; - Card #412303xxxxxx0342 + Card #412372xxxxxx1840 - $115.65 + $120.00 - Jan 21 2016 + Jan 01 2016 @@ -3794,7 +3794,7 @@ myMenu63.width = 256; - Cronin, Javier + Ondricka, Ethelyn @@ -3803,7 +3803,7 @@ myMenu63.width = 256; - Card #412303xxxxxx0342 + Card #412386xxxxxx6686 @@ -3811,7 +3811,7 @@ myMenu63.width = 256; - Feb 01 2016 + Jan 01 2016 @@ -3823,7 +3823,7 @@ myMenu63.width = 256; - Cronin, Javier + Rowe, Amara @@ -3832,15 +3832,15 @@ myMenu63.width = 256; - Card #412303xxxxxx0342 + Card #412312xxxxxx6258 - $60.00 + $30.00 - Feb 21 2016 + Jan 01 2016 @@ -3852,7 +3852,7 @@ myMenu63.width = 256; - Cronin, Javier + Bayer, Jessika @@ -3883,21 +3883,21 @@ myMenu63.width = 256; 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - Next + Next
diff --git a/FS-Test/share/output/search/cust_pkg.cgi/pkgnum b/FS-Test/share/output/search/cust_pkg.cgi/keywords=pkgnum:order_by=pkgnum similarity index 74% rename from FS-Test/share/output/search/cust_pkg.cgi/pkgnum rename to FS-Test/share/output/search/cust_pkg.cgi/keywords=pkgnum:order_by=pkgnum index dae2054fd..d2f5d12be 100644 --- a/FS-Test/share/output/search/cust_pkg.cgi/pkgnum +++ b/FS-Test/share/output/search/cust_pkg.cgi/keywords=pkgnum:order_by=pkgnum @@ -875,7 +875,7 @@ myMenu63.width = 256; 601 total packages - ( show @@ -896,12 +896,12 @@ myMenu63.width = 256; Download full results
- as Excel spreadsheet
+ as Excel spreadsheet
- as CSV file
+ as CSV file
- as printable copy + as printable copy @@ -914,24 +914,24 @@ myMenu63.width = 256; 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - Next + Next @@ -954,7 +954,7 @@ myMenu63.width = 256; > - # + # - Quan. + Quan. - Class + Class - Sales Person + Sales Person - Ordered by + Ordered by 511 + 1 - 1 + 1 - Monthly anniversary phone x4 + System Domain @@ -1191,7 +1191,7 @@ myMenu63.width = 256; - Active + Not yet billed @@ -1199,7 +1199,7 @@ myMenu63.width = 256; - test + fs_bootstrap @@ -1207,23 +1207,23 @@ myMenu63.width = 256; - $60.00 + $0.00 - monthly + (no recurring fee) - Sep 02 2015 + - Feb 02 2016 + - Mar 02 2016 + @@ -1259,15 +1259,15 @@ myMenu63.width = 256; - Active + - Mante LLC (Kessler, Enid) + Accounts, System -
Test svc_phone:9686105497
+
Domain:example.com
@@ -1276,15 +1276,15 @@ myMenu63.width = 256; - 501 + 2 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -1304,11 +1304,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -1316,15 +1316,15 @@ myMenu63.width = 256; - Jan 02 2016 + Oct 09 2015 - Feb 02 2016 + Mar 01 2016 - Mar 02 2016 + Apr 01 2016 @@ -1364,11 +1364,11 @@ myMenu63.width = 256; - Cole, Albertha + Schowalter, Oswald -
Test svc_phone:24465928708548
+
Test svc_acct:berta@example.com
@@ -1377,15 +1377,15 @@ myMenu63.width = 256; - 479 + 3 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -1405,11 +1405,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -1417,15 +1417,15 @@ myMenu63.width = 256; - Dec 02 2015 + Oct 09 2015 - Feb 02 2016 + Mar 01 2016 - Mar 02 2016 + Apr 01 2016 @@ -1465,11 +1465,11 @@ myMenu63.width = 256; - Haley, Schaden and Ebert (Prosacco, Clementina) + Schowalter, Oswald -
Test svc_phone:7422901680427
+
Test svc_broadband:IP:10.212.50.247, MAC:0000911C4815
@@ -1478,15 +1478,15 @@ myMenu63.width = 256; - 261 + 4 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -1510,23 +1510,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Jan 02 2016 + Oct 09 2015 - Feb 02 2016 + Oct 09 2015 - Mar 02 2016 + Oct 01 2016 @@ -1566,11 +1566,11 @@ myMenu63.width = 256; - Moore, Lina + Schowalter, Oswald -
Test svc_phone:5717780937
+
Test svc_domain:waters-turner.com
@@ -1579,15 +1579,15 @@ myMenu63.width = 256; - 295 + 5 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -1607,11 +1607,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -1619,15 +1619,15 @@ myMenu63.width = 256; - Sep 02 2015 + Sep 10 2015 - Feb 02 2016 + Mar 01 2016 - Mar 02 2016 + Apr 01 2016 @@ -1667,11 +1667,11 @@ myMenu63.width = 256; - Luettgen-Jacobs (Hintz, Junior) + Flatley-Hagenes (Donnelly, Odessa) -
Test svc_phone:14991580189167
+
Test svc_broadband:IP:10.127.31.117, MAC:0000A3E013D7
@@ -1680,15 +1680,15 @@ myMenu63.width = 256; - 551 + 6 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -1712,23 +1712,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Oct 02 2015 + Sep 10 2015 - Feb 02 2016 + Sep 10 2015 - Mar 02 2016 + Sep 01 2016 @@ -1768,11 +1768,11 @@ myMenu63.width = 256; - Christiansen LLC (Howe, Luis) + Flatley-Hagenes (Donnelly, Odessa) -
Test svc_phone:5191928764
+
Test svc_domain:ziemann-dietrich.com
@@ -1781,15 +1781,15 @@ myMenu63.width = 256; - 179 + 7 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -1821,15 +1821,15 @@ myMenu63.width = 256; - Dec 02 2015 + Sep 10 2015 - Feb 02 2016 + Feb 10 2016 - Mar 02 2016 + Mar 10 2016 @@ -1869,11 +1869,11 @@ myMenu63.width = 256; - Leuschke-Stamm (Dibbert, Betsy) + Flatley-Hagenes (Donnelly, Odessa) -
Test svc_phone:2189396399
+
Test svc_phone:19671718037
@@ -1882,15 +1882,15 @@ myMenu63.width = 256; - 203 + 8 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -1914,23 +1914,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Sep 02 2015 + Dec 19 2015 - Feb 02 2016 + Dec 19 2015 - Mar 02 2016 + Dec 01 2016 @@ -1970,11 +1970,11 @@ myMenu63.width = 256; - Moore-Cummerata (DuBuque, Russ) + Bartoletti, Theodora -
Test svc_phone:8632406717
+
Test svc_domain:watsica-llc.com
@@ -1983,15 +1983,15 @@ myMenu63.width = 256; - 391 + 9 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -2023,15 +2023,15 @@ myMenu63.width = 256; - Oct 03 2015 + Dec 19 2015 - Feb 03 2016 + Feb 19 2016 - Mar 03 2016 + Mar 19 2016 @@ -2071,11 +2071,11 @@ myMenu63.width = 256; - Wolff and Sons (Heller, Dagmar) + Bartoletti, Theodora -
Test svc_phone:16892538421
+
Test svc_phone:337448915280026
@@ -2084,15 +2084,15 @@ myMenu63.width = 256; - 311 + 10 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -2112,11 +2112,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -2124,15 +2124,15 @@ myMenu63.width = 256; - Dec 03 2015 + Dec 19 2015 - Feb 03 2016 + Mar 01 2016 - Mar 03 2016 + Apr 01 2016 @@ -2172,11 +2172,11 @@ myMenu63.width = 256; - Barton-Goodwin (Schroeder, Brian) + Bartoletti, Theodora -
Test svc_phone:8239761006014
+
Test svc_acct:sherwood@example.com
@@ -2185,15 +2185,15 @@ myMenu63.width = 256; - 79 + 11 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -2225,15 +2225,15 @@ myMenu63.width = 256; - Dec 03 2015 + Jan 13 2016 - Feb 03 2016 + Feb 13 2016 - Mar 03 2016 + Mar 13 2016 @@ -2273,11 +2273,11 @@ myMenu63.width = 256; - Haag-Schumm (Ullrich, Shemar) + Watsica-Crooks (Will, Marguerite) -
Test svc_phone:8935173249
+
Test svc_phone:7941182146
@@ -2286,15 +2286,15 @@ myMenu63.width = 256; - 223 + 12 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -2314,11 +2314,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -2326,15 +2326,15 @@ myMenu63.width = 256; - Sep 03 2015 + Jan 13 2016 - Feb 03 2016 + Mar 01 2016 - Mar 03 2016 + Apr 01 2016 @@ -2374,11 +2374,11 @@ myMenu63.width = 256; - Hoeger-Brown (Shields, Serenity) + Watsica-Crooks (Will, Marguerite) -
Test svc_phone:68981950057600
+
Test svc_acct:rashad@example.com
@@ -2387,15 +2387,15 @@ myMenu63.width = 256; - 213 + 13 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -2415,11 +2415,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -2427,15 +2427,15 @@ myMenu63.width = 256; - Oct 03 2015 + Jan 13 2016 - Feb 03 2016 + Mar 01 2016 - Mar 03 2016 + Apr 01 2016 @@ -2475,11 +2475,11 @@ myMenu63.width = 256; - Lehner, Ryann + Watsica-Crooks (Will, Marguerite) -
Test svc_phone:2636239939
+
Test svc_broadband:IP:10.4.160.230, MAC:0000D12765F4
@@ -2488,15 +2488,15 @@ myMenu63.width = 256; - 43 + 14 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -2516,11 +2516,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -2528,15 +2528,15 @@ myMenu63.width = 256; - Oct 03 2015 + Nov 02 2015 - Feb 03 2016 + Mar 01 2016 - Mar 03 2016 + Apr 01 2016 @@ -2576,11 +2576,11 @@ myMenu63.width = 256; - Stracke Inc (Kuhlman, Kaya) + Johnston, Delphine -
Test svc_phone:7315522562
+
Test svc_acct:doris@example.com
@@ -2589,15 +2589,15 @@ myMenu63.width = 256; - 331 + 15 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -2617,11 +2617,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -2629,15 +2629,15 @@ myMenu63.width = 256; - Dec 03 2015 + Nov 02 2015 - Feb 03 2016 + Mar 01 2016 - Mar 03 2016 + Apr 01 2016 @@ -2677,11 +2677,11 @@ myMenu63.width = 256; - Treutel, Kuhn and Sipes (Wintheiser, Elyse) + Johnston, Delphine -
Test svc_phone:17840460291257
+
Test svc_broadband:IP:10.203.139.97, MAC:0000FA2C8FB1
@@ -2690,15 +2690,15 @@ myMenu63.width = 256; - 323 + 16 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -2722,23 +2722,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Sep 04 2015 + Nov 02 2015 - Feb 04 2016 + Nov 02 2015 - Mar 04 2016 + Nov 01 2016 @@ -2778,11 +2778,11 @@ myMenu63.width = 256; - Lind-Bahringer (Ratke, Roma) + Johnston, Delphine -
Test svc_phone:4989851645
+
Test svc_domain:hane-llc.com
@@ -2791,15 +2791,15 @@ myMenu63.width = 256; - 249 + 17 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -2819,11 +2819,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -2831,15 +2831,15 @@ myMenu63.width = 256; - Nov 04 2015 + Nov 23 2015 - Feb 04 2016 + Mar 01 2016 - Mar 04 2016 + Apr 01 2016 @@ -2879,11 +2879,11 @@ myMenu63.width = 256; - Pacocha, Matilde + Renner Inc (Volkman, Antwan) -
Test svc_phone:18235477397
+
Test svc_broadband:IP:10.75.143.4, MAC:0000EE773AA3
@@ -2892,15 +2892,15 @@ myMenu63.width = 256; - 115 + 18 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -2924,23 +2924,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Dec 04 2015 + Nov 23 2015 - Feb 04 2016 + Nov 23 2015 - Mar 04 2016 + Nov 01 2016 @@ -2980,11 +2980,11 @@ myMenu63.width = 256; - Kunze, Ryan and Dare (Schultz, Jasper) + Renner Inc (Volkman, Antwan) -
Test svc_phone:495453230818559
+
Test svc_domain:will-schmitt-and-buckridge.com
@@ -2993,15 +2993,15 @@ myMenu63.width = 256; - 357 + 19 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -3033,15 +3033,15 @@ myMenu63.width = 256; - Nov 04 2015 + Nov 23 2015 - Feb 04 2016 + Feb 23 2016 - Mar 04 2016 + Mar 23 2016 @@ -3081,11 +3081,11 @@ myMenu63.width = 256; - Mante, Demond + Renner Inc (Volkman, Antwan) -
Test svc_phone:751008639787292
+
Test svc_phone:507789172836615
@@ -3094,15 +3094,15 @@ myMenu63.width = 256; - 549 + 20 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -3126,23 +3126,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Dec 05 2015 + Sep 28 2015 - Feb 05 2016 + Sep 28 2015 - Mar 05 2016 + Sep 01 2016 @@ -3182,11 +3182,11 @@ myMenu63.width = 256; - Hudson, Stephanie + Douglas, Willow -
Test svc_phone:87252993767044
+
Test svc_domain:hagenes-mclaughlin-and-fadel.com
@@ -3195,15 +3195,15 @@ myMenu63.width = 256; - 131 + 21 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -3235,15 +3235,15 @@ myMenu63.width = 256; - Dec 05 2015 + Sep 28 2015 - Feb 05 2016 + Feb 28 2016 - Mar 05 2016 + Mar 28 2016 @@ -3283,11 +3283,11 @@ myMenu63.width = 256; - Shanahan LLC (Brown, Ceasar) + Douglas, Willow -
Test svc_phone:4508409161
+
Test svc_phone:402545251883238
@@ -3296,15 +3296,15 @@ myMenu63.width = 256; - 599 + 22 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -3324,11 +3324,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -3336,15 +3336,15 @@ myMenu63.width = 256; - Jan 06 2016 + Sep 28 2015 - Feb 06 2016 + Mar 01 2016 - Mar 06 2016 + Apr 01 2016 @@ -3384,11 +3384,11 @@ myMenu63.width = 256; - Mills, Ziemann and Satterfield (Lang, Cathy) + Douglas, Willow -
Test svc_phone:0806183894522
+
Test svc_acct:hilario@example.com
@@ -3397,15 +3397,15 @@ myMenu63.width = 256; - 371 + 23 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -3437,15 +3437,15 @@ myMenu63.width = 256; - Jan 06 2016 + Oct 25 2015 - Feb 06 2016 + Feb 25 2016 - Mar 06 2016 + Mar 25 2016 @@ -3485,11 +3485,11 @@ myMenu63.width = 256; - Kuhlman, Quitzon and Greenholt (Quitzon, Ophelia) + Ankunding, Fahey and Satterfield (Willms, Marcelle) -
Test svc_phone:15363386908
+
Test svc_phone:5204979036
@@ -3498,15 +3498,15 @@ myMenu63.width = 256; - 477 + 24 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -3526,11 +3526,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -3538,15 +3538,15 @@ myMenu63.width = 256; - Oct 06 2015 + Oct 25 2015 - Feb 06 2016 + Mar 01 2016 - Mar 06 2016 + Apr 01 2016 @@ -3586,11 +3586,11 @@ myMenu63.width = 256; - Lakin, Lindsay + Ankunding, Fahey and Satterfield (Willms, Marcelle) -
Test svc_phone:8078845348
+
Test svc_acct:lennie@example.com
@@ -3599,15 +3599,15 @@ myMenu63.width = 256; - 275 + 25 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -3627,11 +3627,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -3639,15 +3639,15 @@ myMenu63.width = 256; - Oct 06 2015 + Oct 25 2015 - Feb 06 2016 + Mar 01 2016 - Mar 06 2016 + Apr 01 2016 @@ -3687,11 +3687,11 @@ myMenu63.width = 256; - Dach, Lueilwitz and Koepp (Kovacek, Frank) + Ankunding, Fahey and Satterfield (Willms, Marcelle) -
Test svc_phone:1732869050
+
Test svc_broadband:IP:10.2.159.93, MAC:0000BEEA3257
@@ -3700,15 +3700,15 @@ myMenu63.width = 256; - 439 + 26 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -3728,11 +3728,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -3740,15 +3740,15 @@ myMenu63.width = 256; - Sep 06 2015 + Aug 14 2015 - Feb 06 2016 + Mar 01 2016 - Mar 06 2016 + Apr 01 2016 @@ -3788,11 +3788,11 @@ myMenu63.width = 256; - Pfeffer, Shanahan and Cruickshank (Kutch, Rosario) + Grady, Aniya -
Test svc_phone:1214016847277551
+
Test svc_acct:travis@example.com
@@ -3801,15 +3801,15 @@ myMenu63.width = 256; - 235 + 27 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -3829,11 +3829,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -3841,15 +3841,15 @@ myMenu63.width = 256; - Nov 06 2015 + Aug 14 2015 - Feb 06 2016 + Mar 01 2016 - Mar 06 2016 + Apr 01 2016 @@ -3889,11 +3889,11 @@ myMenu63.width = 256; - Corkery-D'Amore (Wyman, Bethel) + Grady, Aniya -
Test svc_phone:9464935873
+
Test svc_broadband:IP:10.147.177.86, MAC:0000E5156362
@@ -3902,15 +3902,15 @@ myMenu63.width = 256; - 347 + 28 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -3934,23 +3934,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Oct 07 2015 + Aug 14 2015 - Feb 07 2016 + Aug 14 2015 - Mar 07 2016 + Aug 01 2016 @@ -3990,11 +3990,11 @@ myMenu63.width = 256; - Bernier-Nader (Hane, Floy) + Grady, Aniya -
Test svc_phone:1894866195856273
+
Test svc_domain:watsica-sauer-and-braun.com
@@ -4003,15 +4003,15 @@ myMenu63.width = 256; - 319 + 29 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -4031,11 +4031,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -4043,15 +4043,15 @@ myMenu63.width = 256; - Dec 07 2015 + Sep 30 2015 - Feb 07 2016 + Mar 01 2016 - Mar 07 2016 + Apr 01 2016 @@ -4091,11 +4091,11 @@ myMenu63.width = 256; - Hessel and Sons (Zemlak, Kaya) + Torp, Sawayn and Friesen (Pollich, Maritza) -
Test svc_phone:13810128409238
+
Test svc_broadband:IP:10.61.84.169, MAC:000069394AF2
@@ -4104,15 +4104,15 @@ myMenu63.width = 256; - 273 + 30 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -4136,23 +4136,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Aug 07 2015 + Sep 30 2015 - Feb 07 2016 + Sep 30 2015 - Mar 07 2016 + Sep 01 2016 @@ -4192,11 +4192,11 @@ myMenu63.width = 256; - Ruecker, Lucious + Torp, Sawayn and Friesen (Pollich, Maritza) -
Test svc_phone:16095013569
+
Test svc_domain:greenholt-parisian.com
@@ -4205,15 +4205,15 @@ myMenu63.width = 256; - 381 + 31 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -4245,15 +4245,15 @@ myMenu63.width = 256; - Oct 08 2015 + Sep 30 2015 - Feb 08 2016 + Feb 28 2016 - Mar 08 2016 + Mar 28 2016 @@ -4293,11 +4293,11 @@ myMenu63.width = 256; - Powlowski, Veda + Torp, Sawayn and Friesen (Pollich, Maritza) -
Test svc_phone:3911632965
+
Test svc_phone:2103459718
@@ -4306,15 +4306,15 @@ myMenu63.width = 256; - 515 + 32 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -4338,23 +4338,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Dec 08 2015 + Jan 16 2016 - Feb 08 2016 + Jan 16 2016 - Mar 08 2016 + Jan 01 2017 @@ -4394,11 +4394,11 @@ myMenu63.width = 256; - Mraz LLC (Labadie, Trisha) + Kuhlman, Niko -
Test svc_phone:14527731997
+
Test svc_domain:corkery-hackett-and-franecki.com
@@ -4407,15 +4407,15 @@ myMenu63.width = 256; - 465 + 33 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -4447,15 +4447,15 @@ myMenu63.width = 256; - Oct 08 2015 + Jan 16 2016 - Feb 08 2016 + Feb 16 2016 - Mar 08 2016 + Mar 16 2016 @@ -4495,11 +4495,11 @@ myMenu63.width = 256; - Upton, Otho + Kuhlman, Niko -
Test svc_phone:2646555583
+
Test svc_phone:14745441565
@@ -4508,15 +4508,15 @@ myMenu63.width = 256; - 321 + 34 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -4536,11 +4536,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -4548,15 +4548,15 @@ myMenu63.width = 256; - Dec 08 2015 + Jan 16 2016 - Feb 08 2016 + Mar 01 2016 - Mar 08 2016 + Apr 01 2016 @@ -4596,11 +4596,11 @@ myMenu63.width = 256; - Emmerich, Neil + Kuhlman, Niko -
Test svc_phone:25963062543138
+
Test svc_acct:william@example.com
@@ -4609,15 +4609,15 @@ myMenu63.width = 256; - 307 + 35 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -4649,15 +4649,15 @@ myMenu63.width = 256; - Aug 08 2015 + Oct 12 2015 - Feb 08 2016 + Feb 12 2016 - Mar 08 2016 + Mar 12 2016 @@ -4697,11 +4697,11 @@ myMenu63.width = 256; - Roberts-Schinner (Flatley, Amelia) + Feest, Bechtelar and Harber (Douglas, Geovany) -
Test svc_phone:4593519604
+
Test svc_phone:4609716945803
@@ -4710,15 +4710,15 @@ myMenu63.width = 256; - 285 + 36 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -4738,11 +4738,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -4750,15 +4750,15 @@ myMenu63.width = 256; - Oct 08 2015 + Oct 12 2015 - Feb 08 2016 + Mar 01 2016 - Mar 08 2016 + Apr 01 2016 @@ -4798,11 +4798,11 @@ myMenu63.width = 256; - Muller, Kenyatta + Feest, Bechtelar and Harber (Douglas, Geovany) -
Test svc_phone:3521080416
+
Test svc_acct:richmond@example.com
@@ -4811,15 +4811,15 @@ myMenu63.width = 256; - 429 + 37 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -4839,11 +4839,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -4851,15 +4851,15 @@ myMenu63.width = 256; - Dec 08 2015 + Oct 12 2015 - Feb 08 2016 + Mar 01 2016 - Mar 08 2016 + Apr 01 2016 @@ -4899,11 +4899,11 @@ myMenu63.width = 256; - Frami, Miller + Feest, Bechtelar and Harber (Douglas, Geovany) -
Test svc_phone:33762771108367
+
Test svc_broadband:IP:10.229.63.194, MAC:00004D3E8513
@@ -4912,15 +4912,15 @@ myMenu63.width = 256; - 191 + 38 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -4940,11 +4940,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -4952,15 +4952,15 @@ myMenu63.width = 256; - Sep 08 2015 + Dec 17 2015 - Feb 08 2016 + Mar 01 2016 - Mar 08 2016 + Apr 01 2016 @@ -5000,11 +5000,11 @@ myMenu63.width = 256; - O'Reilly-Mraz (Pagac, Kennedi) + Fritsch, Earnestine -
Test svc_phone:078151255309299
+
Test svc_acct:samir@example.com
@@ -5013,15 +5013,15 @@ myMenu63.width = 256; - 143 + 39 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -5041,11 +5041,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -5053,15 +5053,15 @@ myMenu63.width = 256; - Oct 08 2015 + Dec 17 2015 - Feb 08 2016 + Mar 01 2016 - Mar 08 2016 + Apr 01 2016 @@ -5101,11 +5101,11 @@ myMenu63.width = 256; - Bernhard LLC (Hintz, Winston) + Fritsch, Earnestine -
Test svc_phone:95994707748468
+
Test svc_broadband:IP:10.188.48.84, MAC:000036BEDE13
@@ -5114,15 +5114,15 @@ myMenu63.width = 256; - 355 + 40 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -5146,23 +5146,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Aug 09 2015 + Dec 17 2015 - Feb 09 2016 + Dec 17 2015 - Mar 09 2016 + Dec 01 2016 @@ -5202,11 +5202,11 @@ myMenu63.width = 256; - Runolfsson, Roob and Hoppe (Bergstrom, Esteban) + Fritsch, Earnestine -
Test svc_phone:15790441533145
+
Test svc_domain:ullrich-kilback.com
@@ -5215,15 +5215,15 @@ myMenu63.width = 256; - 91 + 41 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -5243,11 +5243,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -5255,15 +5255,15 @@ myMenu63.width = 256; - Dec 09 2015 + Oct 03 2015 - Feb 09 2016 + Mar 01 2016 - Mar 09 2016 + Apr 01 2016 @@ -5303,11 +5303,11 @@ myMenu63.width = 256; - Kuhn-Ruecker (Nienow, Kacie) + Stracke Inc (Kuhlman, Kaya) -
Test svc_phone:1535633738761521
+
Test svc_broadband:IP:10.225.235.123, MAC:00003C2A1764
@@ -5316,15 +5316,15 @@ myMenu63.width = 256; - 7 + 42 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -5348,23 +5348,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Sep 10 2015 + Oct 03 2015 - Feb 10 2016 + Oct 03 2015 - Mar 10 2016 + Oct 01 2016 @@ -5404,11 +5404,11 @@ myMenu63.width = 256; - Flatley-Hagenes (Donnelly, Odessa) + Stracke Inc (Kuhlman, Kaya) -
Test svc_phone:19671718037
+
Test svc_domain:crooks-collins.com
@@ -5417,15 +5417,15 @@ myMenu63.width = 256; - 587 + 43 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -5457,15 +5457,15 @@ myMenu63.width = 256; - Dec 10 2015 + Oct 03 2015 - Feb 10 2016 + Feb 03 2016 - Mar 10 2016 + Mar 03 2016 @@ -5505,11 +5505,11 @@ myMenu63.width = 256; - Ryan and Sons (Bashirian, Bert) + Stracke Inc (Kuhlman, Kaya) -
Test svc_phone:6566177741620
+
Test svc_phone:7315522562
@@ -5518,15 +5518,15 @@ myMenu63.width = 256; - 571 + 44 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -5550,23 +5550,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Nov 10 2015 + Nov 14 2015 - Feb 10 2016 + Nov 14 2015 - Mar 10 2016 + Nov 01 2016 @@ -5606,11 +5606,11 @@ myMenu63.width = 256; - Walker Inc (Block, Felix) + McDermott, Alejandra -
Test svc_phone:9749671732
+
Test svc_domain:kuhn-llc.com
@@ -5619,15 +5619,15 @@ myMenu63.width = 256; - 199 + 45 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -5659,15 +5659,15 @@ myMenu63.width = 256; - Nov 10 2015 + Nov 14 2015 - Feb 10 2016 + Feb 14 2016 - Mar 10 2016 + Mar 14 2016 @@ -5707,11 +5707,11 @@ myMenu63.width = 256; - Schultz, Hyatt and Ruecker (Yundt, Berta) + McDermott, Alejandra -
Test svc_phone:14559187832
+
Test svc_phone:5473351513
@@ -5720,15 +5720,15 @@ myMenu63.width = 256; - 69 + 46 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -5748,11 +5748,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -5760,15 +5760,15 @@ myMenu63.width = 256; - Dec 10 2015 + Nov 14 2015 - Feb 10 2016 + Mar 01 2016 - Mar 10 2016 + Apr 01 2016 @@ -5808,11 +5808,11 @@ myMenu63.width = 256; - Conn, Marisol + McDermott, Alejandra -
Test svc_phone:19732087174151
+
Test svc_acct:walton@example.com
@@ -5821,15 +5821,15 @@ myMenu63.width = 256; - 95 + 47 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -5861,15 +5861,15 @@ myMenu63.width = 256; - Dec 11 2015 + Nov 21 2015 - Feb 11 2016 + Feb 21 2016 - Mar 11 2016 + Mar 21 2016 @@ -5909,11 +5909,11 @@ myMenu63.width = 256; - Buckridge, Spinka and Gerlach (Larkin, Lue) + Leffler, Abshire and Orn (Hyatt, Reggie) -
Test svc_phone:1076194311
+
Test svc_phone:580124349433539
@@ -5922,15 +5922,15 @@ myMenu63.width = 256; - 417 + 48 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -5950,11 +5950,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -5962,15 +5962,15 @@ myMenu63.width = 256; - Dec 11 2015 + Nov 21 2015 - Feb 11 2016 + Mar 01 2016 - Mar 11 2016 + Apr 01 2016 @@ -6010,11 +6010,11 @@ myMenu63.width = 256; - Cremin, Aliya + Leffler, Abshire and Orn (Hyatt, Reggie) -
Test svc_phone:67497022590689
+
Test svc_acct:nigel@example.com
@@ -6023,15 +6023,15 @@ myMenu63.width = 256; - 335 + 49 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -6051,11 +6051,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -6063,15 +6063,15 @@ myMenu63.width = 256; - Dec 12 2015 + Nov 21 2015 - Feb 12 2016 + Mar 01 2016 - Mar 12 2016 + Apr 01 2016 @@ -6111,11 +6111,11 @@ myMenu63.width = 256; - Paucek, Swaniawski and Carter (DuBuque, Freda) + Leffler, Abshire and Orn (Hyatt, Reggie) -
Test svc_phone:17561074962584
+
Test svc_broadband:IP:10.189.193.93, MAC:000043D6F9E3
@@ -6124,15 +6124,15 @@ myMenu63.width = 256; - 297 + 50 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -6152,11 +6152,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -6164,15 +6164,15 @@ myMenu63.width = 256; - Dec 12 2015 + Aug 08 2015 - Feb 12 2016 + Mar 01 2016 - Mar 12 2016 + Apr 01 2016 @@ -6212,11 +6212,11 @@ myMenu63.width = 256; - Dibbert, Roman + Zemlak, Asia -
Test svc_phone:7801192536
+
Test svc_acct:sammy@example.com
@@ -6225,15 +6225,15 @@ myMenu63.width = 256; - 431 + 51 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -6253,11 +6253,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -6265,15 +6265,15 @@ myMenu63.width = 256; - Oct 12 2015 + Aug 08 2015 - Feb 12 2016 + Mar 01 2016 - Mar 12 2016 + Apr 01 2016 @@ -6313,11 +6313,11 @@ myMenu63.width = 256; - Zboncak, Schmidt and Howell (Pouros, Robb) + Zemlak, Asia -
Test svc_phone:3839925171
+
Test svc_broadband:IP:10.44.211.87, MAC:00008BCF4552
@@ -6326,15 +6326,15 @@ myMenu63.width = 256; - 35 + 52 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -6358,23 +6358,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Oct 12 2015 + Aug 08 2015 - Feb 12 2016 + Aug 08 2015 - Mar 12 2016 + Aug 01 2016 @@ -6414,11 +6414,11 @@ myMenu63.width = 256; - Feest, Bechtelar and Harber (Douglas, Geovany) + Zemlak, Asia -
Test svc_phone:4609716945803
+
Test svc_domain:hansen-kilback.com
@@ -6427,15 +6427,15 @@ myMenu63.width = 256; - 163 + 53 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -6455,11 +6455,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -6467,15 +6467,15 @@ myMenu63.width = 256; - Nov 12 2015 + Sep 29 2015 - Feb 12 2016 + Mar 01 2016 - Mar 12 2016 + Apr 01 2016 @@ -6515,11 +6515,11 @@ myMenu63.width = 256; - Wiegand-Kohler (Murray, Amparo) + Toy-Gerlach (Zulauf, Sharon) -
Test svc_phone:85524284918759
+
Test svc_broadband:IP:10.116.203.5, MAC:00005AFAF158
@@ -6528,15 +6528,15 @@ myMenu63.width = 256; - 175 + 54 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -6560,23 +6560,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Sep 12 2015 + Sep 29 2015 - Feb 12 2016 + Sep 29 2015 - Mar 12 2016 + Sep 01 2016 @@ -6616,11 +6616,11 @@ myMenu63.width = 256; - Simonis Inc (Runolfsson, Kareem) + Toy-Gerlach (Zulauf, Sharon) -
Test svc_phone:6741985321
+
Test svc_domain:klocko-inc.com
@@ -6629,15 +6629,15 @@ myMenu63.width = 256; - 393 + 55 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -6669,15 +6669,15 @@ myMenu63.width = 256; - Nov 12 2015 + Sep 29 2015 - Feb 12 2016 + Feb 28 2016 - Mar 12 2016 + Mar 28 2016 @@ -6717,11 +6717,11 @@ myMenu63.width = 256; - Kris, Josie + Toy-Gerlach (Zulauf, Sharon) -
Test svc_phone:6110246771
+
Test svc_phone:47925781188566
@@ -6730,15 +6730,15 @@ myMenu63.width = 256; - 535 + 56 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -6762,23 +6762,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Sep 13 2015 + Oct 19 2015 - Feb 13 2016 + Oct 19 2015 - Mar 13 2016 + Oct 01 2016 @@ -6818,11 +6818,11 @@ myMenu63.width = 256; - Conn-McLaughlin (O'Connell, Gayle) + Weber, Aliza -
Test svc_phone:6049664310378
+
Test svc_domain:ward-murphy-and-wisozk.com
@@ -6831,15 +6831,15 @@ myMenu63.width = 256; - 455 + 57 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -6871,15 +6871,15 @@ myMenu63.width = 256; - Dec 13 2015 + Oct 19 2015 - Feb 13 2016 + Feb 19 2016 - Mar 13 2016 + Mar 19 2016 @@ -6919,11 +6919,11 @@ myMenu63.width = 256; - Lind Group (Padberg, Irving) + Weber, Aliza -
Test svc_phone:7002098074566
+
Test svc_phone:215984572910627
@@ -6932,15 +6932,15 @@ myMenu63.width = 256; - 11 + 58 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -6960,11 +6960,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -6972,15 +6972,15 @@ myMenu63.width = 256; - Jan 13 2016 + Oct 19 2015 - Feb 13 2016 + Mar 01 2016 - Mar 13 2016 + Apr 01 2016 @@ -7020,11 +7020,11 @@ myMenu63.width = 256; - Watsica-Crooks (Will, Marguerite) + Weber, Aliza -
Test svc_phone:7941182146
+
Test svc_acct:linwood@example.com
@@ -7033,15 +7033,15 @@ myMenu63.width = 256; - 237 + 59 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -7073,15 +7073,15 @@ myMenu63.width = 256; - Oct 13 2015 + Nov 16 2015 - Feb 13 2016 + Feb 16 2016 - Mar 13 2016 + Mar 16 2016 @@ -7121,11 +7121,11 @@ myMenu63.width = 256; - Jakubowski, Jarrell + Zemlak and Sons (Swift, Maximilian) -
Test svc_phone:10163759294554
+
Test svc_phone:5055483796977
@@ -7134,15 +7134,15 @@ myMenu63.width = 256; - 81 + 60 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -7162,11 +7162,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -7174,15 +7174,15 @@ myMenu63.width = 256; - Oct 13 2015 + Nov 16 2015 - Feb 13 2016 + Mar 01 2016 - Mar 13 2016 + Apr 01 2016 @@ -7222,11 +7222,11 @@ myMenu63.width = 256; - Hackett, Garnet + Zemlak and Sons (Swift, Maximilian) -
Test svc_phone:152553597965486
+
Test svc_acct:esperanza@example.com
@@ -7235,15 +7235,15 @@ myMenu63.width = 256; - 117 + 61 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -7263,11 +7263,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -7275,15 +7275,15 @@ myMenu63.width = 256; - Oct 13 2015 + Nov 16 2015 - Feb 13 2016 + Mar 01 2016 - Mar 13 2016 + Apr 01 2016 @@ -7323,11 +7323,11 @@ myMenu63.width = 256; - Brekke, Tillman + Zemlak and Sons (Swift, Maximilian) -
Test svc_phone:158607899401245
+
Test svc_broadband:IP:10.178.209.2, MAC:00009245E1CE
@@ -7336,15 +7336,15 @@ myMenu63.width = 256; - 395 + 62 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -7364,11 +7364,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -7376,15 +7376,15 @@ myMenu63.width = 256; - Jan 13 2016 + Jan 26 2016 - Feb 13 2016 + Mar 01 2016 - Mar 13 2016 + Apr 01 2016 @@ -7424,11 +7424,11 @@ myMenu63.width = 256; - Kirlin-Feest (Aufderhar, Trisha) + Johnston, Florence -
Test svc_phone:34512365885294
+
Test svc_acct:branson@example.com
@@ -7437,15 +7437,15 @@ myMenu63.width = 256; - 559 + 63 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -7465,11 +7465,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -7477,15 +7477,15 @@ myMenu63.width = 256; - Nov 13 2015 + Jan 26 2016 - Feb 13 2016 + Mar 01 2016 - Mar 13 2016 + Apr 01 2016 @@ -7525,11 +7525,11 @@ myMenu63.width = 256; - Hegmann, Kessler and Gibson (Roob, Henderson) + Johnston, Florence -
Test svc_phone:49053079571982
+
Test svc_broadband:IP:10.86.8.116, MAC:00009D2D385F
@@ -7538,15 +7538,15 @@ myMenu63.width = 256; - 379 + 64 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -7570,23 +7570,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Dec 14 2015 + Jan 26 2016 - Feb 14 2016 + Jan 26 2016 - Mar 14 2016 + Jan 01 2017 @@ -7626,11 +7626,11 @@ myMenu63.width = 256; - Langosh, Shanahan and Huels (Morissette, Florence) + Johnston, Florence -
Test svc_phone:5869395581
+
Test svc_domain:okeefe-stracke.com
@@ -7639,15 +7639,15 @@ myMenu63.width = 256; - 443 + 65 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -7667,11 +7667,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -7679,15 +7679,15 @@ myMenu63.width = 256; - Sep 14 2015 + Oct 24 2015 - Feb 14 2016 + Mar 01 2016 - Mar 14 2016 + Apr 01 2016 @@ -7727,11 +7727,11 @@ myMenu63.width = 256; - O'Keefe Inc (Schamberger, Felix) + DuBuque Inc (King, Thomas) -
Test svc_phone:8366310646
+
Test svc_broadband:IP:10.166.5.138, MAC:000020A5C9AB
@@ -7740,15 +7740,15 @@ myMenu63.width = 256; - 467 + 66 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -7772,23 +7772,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Aug 14 2015 + Oct 24 2015 - Feb 14 2016 + Oct 24 2015 - Mar 14 2016 + Oct 01 2016 @@ -7828,11 +7828,11 @@ myMenu63.width = 256; - Weimann Inc (Cartwright, Judah) + DuBuque Inc (King, Thomas) -
Test svc_phone:5876977314592
+
Test svc_domain:murazik-padberg-and-dibbert.com
@@ -7841,15 +7841,15 @@ myMenu63.width = 256; - 45 + 67 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -7881,15 +7881,15 @@ myMenu63.width = 256; - Nov 14 2015 + Oct 24 2015 - Feb 14 2016 + Feb 24 2016 - Mar 14 2016 + Mar 24 2016 @@ -7929,11 +7929,11 @@ myMenu63.width = 256; - McDermott, Alejandra + DuBuque Inc (King, Thomas) -
Test svc_phone:5473351513
+
Test svc_phone:510207687452209
@@ -7942,15 +7942,15 @@ myMenu63.width = 256; - 491 + 68 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -7974,23 +7974,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Jan 14 2016 + Dec 10 2015 - Feb 14 2016 + Dec 10 2015 - Mar 14 2016 + Dec 01 2016 @@ -8030,11 +8030,11 @@ myMenu63.width = 256; - DuBuque, Romaguera and Hagenes (Rempel, Levi) + Conn, Marisol -
Test svc_phone:0970039499
+
Test svc_domain:rodriguez-llc.com
@@ -8043,15 +8043,15 @@ myMenu63.width = 256; - 309 + 69 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -8083,15 +8083,15 @@ myMenu63.width = 256; - Jan 15 2016 + Dec 10 2015 - Feb 15 2016 + Feb 10 2016 - Mar 15 2016 + Mar 10 2016 @@ -8131,11 +8131,11 @@ myMenu63.width = 256; - Stanton, Christop + Conn, Marisol -
Test svc_phone:18561234265014
+
Test svc_phone:19732087174151
@@ -8144,15 +8144,15 @@ myMenu63.width = 256; - 259 + 70 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -8172,11 +8172,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -8184,15 +8184,15 @@ myMenu63.width = 256; - Aug 15 2015 + Dec 10 2015 - Feb 15 2016 + Mar 01 2016 - Mar 15 2016 + Apr 01 2016 @@ -8232,11 +8232,11 @@ myMenu63.width = 256; - Kozey and Sons (Vandervort, Harmon) + Conn, Marisol -
Test svc_phone:106766405260980
+
Test svc_acct:victor@example.com
@@ -8245,15 +8245,15 @@ myMenu63.width = 256; - 201 + 71 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -8285,15 +8285,15 @@ myMenu63.width = 256; - Nov 15 2015 + Aug 19 2015 - Feb 15 2016 + Feb 19 2016 - Mar 15 2016 + Mar 19 2016 @@ -8333,11 +8333,11 @@ myMenu63.width = 256; - Nikolaus, Katelyn + Kuhlman-Huels (Parisian, Cristopher) -
Test svc_phone:13116773370
+
Test svc_phone:99158298078002
@@ -8346,15 +8346,15 @@ myMenu63.width = 256; - 103 + 72 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -8374,11 +8374,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -8386,15 +8386,15 @@ myMenu63.width = 256; - Oct 16 2015 + Aug 19 2015 - Feb 16 2016 + Mar 01 2016 - Mar 16 2016 + Apr 01 2016 @@ -8434,11 +8434,11 @@ myMenu63.width = 256; - Bahringer LLC (Frami, Roslyn) + Kuhlman-Huels (Parisian, Cristopher) -
Test svc_phone:19242934458
+
Test svc_acct:ryleigh@example.com
@@ -8447,15 +8447,15 @@ myMenu63.width = 256; - 59 + 73 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -8475,11 +8475,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -8487,15 +8487,15 @@ myMenu63.width = 256; - Nov 16 2015 + Aug 19 2015 - Feb 16 2016 + Mar 01 2016 - Mar 16 2016 + Apr 01 2016 @@ -8535,11 +8535,11 @@ myMenu63.width = 256; - Zemlak and Sons (Swift, Maximilian) + Kuhlman-Huels (Parisian, Cristopher) -
Test svc_phone:5055483796977
+
Test svc_broadband:IP:10.223.20.110, MAC:0000B618A255
@@ -8548,15 +8548,15 @@ myMenu63.width = 256; - 33 + 74 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -8576,11 +8576,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -8588,15 +8588,15 @@ myMenu63.width = 256; - Jan 16 2016 + Oct 06 2015 - Feb 16 2016 + Mar 01 2016 - Mar 16 2016 + Apr 01 2016 @@ -8636,11 +8636,11 @@ myMenu63.width = 256; - Kuhlman, Niko + Romaguera, Tianna -
Test svc_phone:14745441565
+
Test svc_acct:citlalli@example.com
@@ -8649,15 +8649,15 @@ myMenu63.width = 256; - 367 + 75 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -8677,11 +8677,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -8689,15 +8689,15 @@ myMenu63.width = 256; - Oct 17 2015 + Oct 06 2015 - Feb 17 2016 + Mar 01 2016 - Mar 17 2016 + Apr 01 2016 @@ -8737,11 +8737,11 @@ myMenu63.width = 256; - Zulauf-Schiller (Jacobs, Angelina) + Romaguera, Tianna -
Test svc_phone:4942001551
+
Test svc_broadband:IP:10.181.162.31, MAC:0000A7F64E79
@@ -8750,15 +8750,15 @@ myMenu63.width = 256; - 453 + 76 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -8782,23 +8782,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Nov 17 2015 + Oct 06 2015 - Feb 17 2016 + Oct 06 2015 - Mar 17 2016 + Oct 01 2016 @@ -8838,11 +8838,11 @@ myMenu63.width = 256; - Klocko, Fleta + Romaguera, Tianna -
Test svc_phone:5389770549
+
Test svc_domain:gorczany-weimann.com
@@ -8851,15 +8851,15 @@ myMenu63.width = 256; - 187 + 77 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -8879,11 +8879,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -8891,15 +8891,15 @@ myMenu63.width = 256; - Dec 17 2015 + Dec 03 2015 - Feb 17 2016 + Mar 01 2016 - Mar 17 2016 + Apr 01 2016 @@ -8939,11 +8939,11 @@ myMenu63.width = 256; - Luettgen LLC (Grant, Grover) + Haag-Schumm (Ullrich, Shemar) -
Test svc_phone:4415242593
+
Test svc_broadband:IP:10.30.204.50, MAC:000097EB747A
@@ -8952,15 +8952,15 @@ myMenu63.width = 256; - 451 + 78 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -8984,23 +8984,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Dec 17 2015 + Dec 03 2015 - Feb 17 2016 + Dec 03 2015 - Mar 17 2016 + Dec 01 2016 @@ -9040,11 +9040,11 @@ myMenu63.width = 256; - Leannon-Crona (Schuster, Cierra) + Haag-Schumm (Ullrich, Shemar) -
Test svc_phone:3037362335
+
Test svc_domain:ward-buckridge.com
@@ -9053,15 +9053,15 @@ myMenu63.width = 256; - 345 + 79 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -9093,15 +9093,15 @@ myMenu63.width = 256; - Oct 18 2015 + Dec 03 2015 - Feb 18 2016 + Feb 03 2016 - Mar 18 2016 + Mar 03 2016 @@ -9141,11 +9141,11 @@ myMenu63.width = 256; - Konopelski, Barry + Haag-Schumm (Ullrich, Shemar) -
Test svc_phone:0783009535773
+
Test svc_phone:8935173249
@@ -9154,15 +9154,15 @@ myMenu63.width = 256; - 107 + 80 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -9186,23 +9186,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Oct 18 2015 + Oct 13 2015 - Feb 18 2016 + Oct 13 2015 - Mar 18 2016 + Oct 01 2016 @@ -9242,11 +9242,11 @@ myMenu63.width = 256; - Hodkiewicz-Raynor (Macejkovic, Leann) + Hackett, Garnet -
Test svc_phone:6941312477183
+
Test svc_domain:treutel-llc.com
@@ -9255,15 +9255,15 @@ myMenu63.width = 256; - 247 + 81 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -9295,15 +9295,15 @@ myMenu63.width = 256; - Aug 18 2015 + Oct 13 2015 - Feb 18 2016 + Feb 13 2016 - Mar 18 2016 + Mar 13 2016 @@ -9343,11 +9343,11 @@ myMenu63.width = 256; - Jacobson-Gorczany (Vandervort, Kiley) + Hackett, Garnet -
Test svc_phone:2749371736
+
Test svc_phone:152553597965486
@@ -9356,15 +9356,15 @@ myMenu63.width = 256; - 227 + 82 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -9384,11 +9384,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -9396,15 +9396,15 @@ myMenu63.width = 256; - Nov 18 2015 + Oct 13 2015 - Feb 18 2016 + Mar 01 2016 - Mar 18 2016 + Apr 01 2016 @@ -9444,11 +9444,11 @@ myMenu63.width = 256; - Kunze Inc (Ernser, Coralie) + Hackett, Garnet -
Test svc_phone:2280817547
+
Test svc_acct:lenora@example.com
@@ -9457,15 +9457,15 @@ myMenu63.width = 256; - 287 + 83 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -9497,15 +9497,15 @@ myMenu63.width = 256; - Aug 18 2015 + Aug 22 2015 - Feb 18 2016 + Feb 22 2016 - Mar 18 2016 + Mar 22 2016 @@ -9545,11 +9545,11 @@ myMenu63.width = 256; - Braun, Rath and Gutkowski (Wilderman, Reyes) + Lehner-Klein (Smitham, Pansy) -
Test svc_phone:183790150181541
+
Test svc_phone:114180154577357
@@ -9558,15 +9558,15 @@ myMenu63.width = 256; - 547 + 84 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -9586,11 +9586,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -9598,15 +9598,15 @@ myMenu63.width = 256; - Oct 18 2015 + Aug 22 2015 - Feb 18 2016 + Mar 01 2016 - Mar 18 2016 + Apr 01 2016 @@ -9646,11 +9646,11 @@ myMenu63.width = 256; - Dietrich, Keebler and Dach (Russel, Ivy) + Lehner-Klein (Smitham, Pansy) -
Test svc_phone:1116321423
+
Test svc_acct:nyasia@example.com
@@ -9659,15 +9659,15 @@ myMenu63.width = 256; - 487 + 85 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -9687,11 +9687,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -9699,15 +9699,15 @@ myMenu63.width = 256; - Oct 18 2015 + Aug 22 2015 - Feb 18 2016 + Mar 01 2016 - Mar 18 2016 + Apr 01 2016 @@ -9747,11 +9747,11 @@ myMenu63.width = 256; - Fritsch LLC (Jones, Mandy) + Lehner-Klein (Smitham, Pansy) -
Test svc_phone:8192793749
+
Test svc_broadband:IP:10.171.182.118, MAC:00003EE1A6D7
@@ -9760,15 +9760,15 @@ myMenu63.width = 256; - 343 + 86 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -9788,11 +9788,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -9800,15 +9800,15 @@ myMenu63.width = 256; - Dec 19 2015 + Sep 28 2015 - Feb 19 2016 + Mar 01 2016 - Mar 19 2016 + Apr 01 2016 @@ -9848,11 +9848,11 @@ myMenu63.width = 256; - Kemmer-O'Connell (Schuster, Alexander) + Toy, Bethany -
Test svc_phone:4441731527
+
Test svc_acct:alden@example.com
@@ -9861,15 +9861,15 @@ myMenu63.width = 256; - 57 + 87 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -9889,11 +9889,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -9901,15 +9901,15 @@ myMenu63.width = 256; - Oct 19 2015 + Sep 28 2015 - Feb 19 2016 + Mar 01 2016 - Mar 19 2016 + Apr 01 2016 @@ -9949,11 +9949,11 @@ myMenu63.width = 256; - Weber, Aliza + Toy, Bethany -
Test svc_phone:215984572910627
+
Test svc_broadband:IP:10.79.94.0, MAC:00008A11465E
@@ -9962,15 +9962,15 @@ myMenu63.width = 256; - 575 + 88 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -9994,23 +9994,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Jan 19 2016 + Sep 28 2015 - Feb 19 2016 + Sep 28 2015 - Mar 19 2016 + Sep 01 2016 @@ -10050,11 +10050,11 @@ myMenu63.width = 256; - Johnston Group (Adams, Audreanne) + Toy, Bethany -
Test svc_phone:2786062985022
+
Test svc_domain:baumbach-llc.com
@@ -10063,15 +10063,15 @@ myMenu63.width = 256; - 263 + 89 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -10091,11 +10091,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -10103,15 +10103,15 @@ myMenu63.width = 256; - Jan 19 2016 + Dec 09 2015 - Feb 19 2016 + Mar 01 2016 - Mar 19 2016 + Apr 01 2016 @@ -10151,11 +10151,11 @@ myMenu63.width = 256; - Legros Group (Reilly, Mabel) + Kuhn-Ruecker (Nienow, Kacie) -
Test svc_phone:210371813834331
+
Test svc_broadband:IP:10.74.128.210, MAC:00009E471138
@@ -10164,15 +10164,15 @@ myMenu63.width = 256; - 271 + 90 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -10196,23 +10196,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Aug 19 2015 + Dec 09 2015 - Feb 19 2016 + Dec 09 2015 - Mar 19 2016 + Dec 01 2016 @@ -10252,11 +10252,11 @@ myMenu63.width = 256; - Fay and Sons (Gerhold, Thora) + Kuhn-Ruecker (Nienow, Kacie) -
Test svc_phone:9519625792
+
Test svc_domain:kessler-larson-and-bauch.com
@@ -10265,15 +10265,15 @@ myMenu63.width = 256; - 463 + 91 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -10305,15 +10305,15 @@ myMenu63.width = 256; - Sep 19 2015 + Dec 09 2015 - Feb 19 2016 + Feb 09 2016 - Mar 19 2016 + Mar 09 2016 @@ -10353,11 +10353,11 @@ myMenu63.width = 256; - Boyle-Schmeler (Maggio, Fay) + Kuhn-Ruecker (Nienow, Kacie) -
Test svc_phone:1173141702400720
+
Test svc_phone:1535633738761521
@@ -10366,15 +10366,15 @@ myMenu63.width = 256; - 9 + 92 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -10398,23 +10398,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Dec 19 2015 + Sep 21 2015 - Feb 19 2016 + Sep 21 2015 - Mar 19 2016 + Sep 01 2016 @@ -10454,11 +10454,11 @@ myMenu63.width = 256; - Bartoletti, Theodora + Swaniawski, Adrienne -
Test svc_phone:337448915280026
+
Test svc_domain:moen-kovacek.com
@@ -10467,15 +10467,15 @@ myMenu63.width = 256; - 585 + 93 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -10507,15 +10507,15 @@ myMenu63.width = 256; - Sep 19 2015 + Sep 21 2015 - Feb 19 2016 + Feb 21 2016 - Mar 19 2016 + Mar 21 2016 @@ -10555,11 +10555,11 @@ myMenu63.width = 256; - Turcotte, Janessa + Swaniawski, Adrienne -
Test svc_phone:10016834740
+
Test svc_phone:7091741436337
@@ -10568,15 +10568,15 @@ myMenu63.width = 256; - 71 + 94 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -10596,11 +10596,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -10608,15 +10608,15 @@ myMenu63.width = 256; - Aug 19 2015 + Sep 21 2015 - Feb 19 2016 + Mar 01 2016 - Mar 19 2016 + Apr 01 2016 @@ -10656,11 +10656,11 @@ myMenu63.width = 256; - Kuhlman-Huels (Parisian, Cristopher) + Swaniawski, Adrienne -
Test svc_phone:99158298078002
+
Test svc_acct:sally@example.com
@@ -10669,15 +10669,15 @@ myMenu63.width = 256; - 299 + 95 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -10709,15 +10709,15 @@ myMenu63.width = 256; - Sep 20 2015 + Dec 11 2015 - Feb 20 2016 + Feb 11 2016 - Mar 20 2016 + Mar 11 2016 @@ -10757,11 +10757,11 @@ myMenu63.width = 256; - Flatley, Yundt and Pacocha (Volkman, Tabitha) + Buckridge, Spinka and Gerlach (Larkin, Lue) -
Test svc_phone:2964457155392
+
Test svc_phone:1076194311
@@ -10770,15 +10770,15 @@ myMenu63.width = 256; - 127 + 96 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -10798,11 +10798,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -10810,15 +10810,15 @@ myMenu63.width = 256; - Aug 20 2015 + Dec 11 2015 - Feb 20 2016 + Mar 01 2016 - Mar 20 2016 + Apr 01 2016 @@ -10858,11 +10858,11 @@ myMenu63.width = 256; - Leannon-Pfannerstill (O'Keefe, Bernie) + Buckridge, Spinka and Gerlach (Larkin, Lue) -
Test svc_phone:5260896063
+
Test svc_acct:drew@example.com
@@ -10871,15 +10871,15 @@ myMenu63.width = 256; - 155 + 97 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -10899,11 +10899,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -10911,15 +10911,15 @@ myMenu63.width = 256; - Sep 20 2015 + Dec 11 2015 - Feb 20 2016 + Mar 01 2016 - Mar 20 2016 + Apr 01 2016 @@ -10959,11 +10959,11 @@ myMenu63.width = 256; - Balistreri-Schoen (Schultz, Jaylan) + Buckridge, Spinka and Gerlach (Larkin, Lue) -
Test svc_phone:261457560511658
+
Test svc_broadband:IP:10.72.141.97, MAC:000086A32C19
@@ -10972,15 +10972,15 @@ myMenu63.width = 256; - 503 + 98 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -11000,11 +11000,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -11012,15 +11012,15 @@ myMenu63.width = 256; - Jan 21 2016 + Sep 14 2015 - Feb 21 2016 + Mar 01 2016 - Mar 21 2016 + Apr 01 2016 @@ -11060,11 +11060,11 @@ myMenu63.width = 256; - McClure LLC (Fahey, Rowan) + Kunde, Noemi -
Test svc_phone:6032329818839
+
Test svc_acct:nils@example.com
@@ -11073,15 +11073,15 @@ myMenu63.width = 256; - 499 + 99 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -11101,11 +11101,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -11113,15 +11113,15 @@ myMenu63.width = 256; - Nov 21 2015 + Sep 14 2015 - Feb 21 2016 + Mar 01 2016 - Mar 21 2016 + Apr 01 2016 @@ -11161,11 +11161,11 @@ myMenu63.width = 256; - Nitzsche-Hilpert (Block, Itzel) + Kunde, Noemi -
Test svc_phone:13924912074
+
Test svc_broadband:IP:10.229.201.34, MAC:0000494CF06C
@@ -11174,15 +11174,15 @@ myMenu63.width = 256; - 475 + 100 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -11206,23 +11206,23 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually - Sep 21 2015 + Sep 14 2015 - Feb 21 2016 + Sep 14 2015 - Mar 21 2016 + Sep 01 2016 @@ -11262,11 +11262,11 @@ myMenu63.width = 256; - McLaughlin-Luettgen (Berge, Houston) + Kunde, Noemi -
Test svc_phone:127676487383404
+
Test svc_domain:marvin-and-sons.com
@@ -11281,24 +11281,24 @@ myMenu63.width = 256; 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - Next + Next diff --git a/FS-Test/share/output/search/cust_pkg.cgi/magic=bill:classnum=0:setup_ending=10%2F31%2F2015:pkgpart=5:pkgpart=2 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 similarity index 93% rename from FS-Test/share/output/search/cust_pkg.cgi/magic=bill:classnum=0:setup_ending=10%2F31%2F2015:pkgpart=5:pkgpart=2 rename to 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 5256b74e4..17d61b547 100644 --- a/FS-Test/share/output/search/cust_pkg.cgi/magic=bill:classnum=0:setup_ending=10%2F31%2F2015:pkgpart=5:pkgpart=2 +++ 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
Email a notice to these customers +>Change these packages
Email a notice to these customers

@@ -875,7 +875,7 @@ myMenu63.width = 256; 143 total packages - ( show @@ -896,12 +896,12 @@ myMenu63.width = 256; Download full results
- as Excel spreadsheet
+ as Excel spreadsheet
- as CSV file
+ as CSV file
- as printable copy + as printable copy @@ -914,9 +914,9 @@ myMenu63.width = 256; 1 - 2 + 2 - Next + Next @@ -939,7 +939,7 @@ myMenu63.width = 256; > - # + # - Quan. + Quan. - Class + Class - Sales Person + Sales Person - Ordered by + Ordered by 274 + 2 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -1200,7 +1200,7 @@ myMenu63.width = 256; - Aug 07 2015 + Oct 09 2015 @@ -1248,11 +1248,11 @@ myMenu63.width = 256; - Ruecker, Lucious + Schowalter, Oswald -
Test svc_acct:karen@example.com
+
Test svc_acct:berta@example.com
@@ -1261,15 +1261,15 @@ myMenu63.width = 256; - 273 + 7 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -1301,15 +1301,15 @@ myMenu63.width = 256; - Aug 07 2015 + Sep 10 2015 - Feb 07 2016 + Feb 10 2016 - Mar 07 2016 + Mar 10 2016 @@ -1349,11 +1349,11 @@ myMenu63.width = 256; - Ruecker, Lucious + Flatley-Hagenes (Donnelly, Odessa) -
Test svc_phone:16095013569
+
Test svc_phone:19671718037
@@ -1362,15 +1362,15 @@ myMenu63.width = 256; - 307 + 21 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -1402,15 +1402,15 @@ myMenu63.width = 256; - Aug 08 2015 + Sep 28 2015 - Feb 08 2016 + Feb 28 2016 - Mar 08 2016 + Mar 28 2016 @@ -1450,11 +1450,11 @@ myMenu63.width = 256; - Roberts-Schinner (Flatley, Amelia) + Douglas, Willow -
Test svc_phone:4593519604
+
Test svc_phone:402545251883238
@@ -1463,15 +1463,15 @@ myMenu63.width = 256; - 50 + 22 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -1503,7 +1503,7 @@ myMenu63.width = 256; - Aug 08 2015 + Sep 28 2015 @@ -1551,11 +1551,11 @@ myMenu63.width = 256; - Zemlak, Asia + Douglas, Willow -
Test svc_acct:sammy@example.com
+
Test svc_acct:hilario@example.com
@@ -1564,15 +1564,15 @@ myMenu63.width = 256; - 355 + 23 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -1604,15 +1604,15 @@ myMenu63.width = 256; - Aug 09 2015 + Oct 25 2015 - Feb 09 2016 + Feb 25 2016 - Mar 09 2016 + Mar 25 2016 @@ -1652,11 +1652,11 @@ myMenu63.width = 256; - Runolfsson, Roob and Hoppe (Bergstrom, Esteban) + Ankunding, Fahey and Satterfield (Willms, Marcelle) -
Test svc_phone:15790441533145
+
Test svc_phone:5204979036
@@ -1665,15 +1665,15 @@ myMenu63.width = 256; - 134 + 24 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -1705,7 +1705,7 @@ myMenu63.width = 256; - Aug 12 2015 + Oct 25 2015 @@ -1753,11 +1753,11 @@ myMenu63.width = 256; - Steuber, Ryley + Ankunding, Fahey and Satterfield (Willms, Marcelle) -
Test svc_acct:hilbert@example.com
+
Test svc_acct:lennie@example.com
@@ -1766,15 +1766,15 @@ myMenu63.width = 256; - 410 + 26 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -1806,7 +1806,7 @@ myMenu63.width = 256; - Aug 13 2015 + Aug 14 2015 @@ -1854,11 +1854,11 @@ myMenu63.width = 256; - Leuschke, Edd + Grady, Aniya -
Test svc_acct:octavia@example.com
+
Test svc_acct:travis@example.com
@@ -1867,15 +1867,15 @@ myMenu63.width = 256; - 468 + 31 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -1895,11 +1895,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -1907,15 +1907,15 @@ myMenu63.width = 256; - Aug 14 2015 + Sep 30 2015 - Mar 01 2016 + Feb 28 2016 - Apr 01 2016 + Mar 28 2016 @@ -1955,11 +1955,11 @@ myMenu63.width = 256; - Weimann Inc (Cartwright, Judah) + Torp, Sawayn and Friesen (Pollich, Maritza) -
Test svc_acct:dejah@example.com
+
Test svc_phone:2103459718
@@ -1968,15 +1968,15 @@ myMenu63.width = 256; - 26 + 35 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -1996,11 +1996,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -2008,15 +2008,15 @@ myMenu63.width = 256; - Aug 14 2015 + Oct 12 2015 - Mar 01 2016 + Feb 12 2016 - Apr 01 2016 + Mar 12 2016 @@ -2056,11 +2056,11 @@ myMenu63.width = 256; - Grady, Aniya + Feest, Bechtelar and Harber (Douglas, Geovany) -
Test svc_acct:travis@example.com
+
Test svc_phone:4609716945803
@@ -2069,15 +2069,15 @@ myMenu63.width = 256; - 467 + 36 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -2097,11 +2097,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -2109,15 +2109,15 @@ myMenu63.width = 256; - Aug 14 2015 + Oct 12 2015 - Feb 14 2016 + Mar 01 2016 - Mar 14 2016 + Apr 01 2016 @@ -2157,11 +2157,11 @@ myMenu63.width = 256; - Weimann Inc (Cartwright, Judah) + Feest, Bechtelar and Harber (Douglas, Geovany) -
Test svc_phone:5876977314592
+
Test svc_acct:richmond@example.com
@@ -2170,15 +2170,15 @@ myMenu63.width = 256; - 259 + 43 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -2210,15 +2210,15 @@ myMenu63.width = 256; - Aug 15 2015 + Oct 03 2015 - Feb 15 2016 + Feb 03 2016 - Mar 15 2016 + Mar 03 2016 @@ -2258,11 +2258,11 @@ myMenu63.width = 256; - Kozey and Sons (Vandervort, Harmon) + Stracke Inc (Kuhlman, Kaya) -
Test svc_phone:106766405260980
+
Test svc_phone:7315522562
@@ -2271,15 +2271,15 @@ myMenu63.width = 256; - 338 + 50 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -2311,7 +2311,7 @@ myMenu63.width = 256; - Aug 17 2015 + Aug 08 2015 @@ -2359,11 +2359,11 @@ myMenu63.width = 256; - Donnelly, Raleigh + Zemlak, Asia -
Test svc_acct:stan@example.com
+
Test svc_acct:sammy@example.com
@@ -2372,15 +2372,15 @@ myMenu63.width = 256; - 218 + 55 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -2400,11 +2400,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -2412,15 +2412,15 @@ myMenu63.width = 256; - Aug 17 2015 + Sep 29 2015 - Mar 01 2016 + Feb 28 2016 - Apr 01 2016 + Mar 28 2016 @@ -2460,11 +2460,11 @@ myMenu63.width = 256; - Boyer, Lamont + Toy-Gerlach (Zulauf, Sharon) -
Test svc_acct:horace@example.com
+
Test svc_phone:47925781188566
@@ -2473,15 +2473,15 @@ myMenu63.width = 256; - 247 + 57 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -2513,15 +2513,15 @@ myMenu63.width = 256; - Aug 18 2015 + Oct 19 2015 - Feb 18 2016 + Feb 19 2016 - Mar 18 2016 + Mar 19 2016 @@ -2561,11 +2561,11 @@ myMenu63.width = 256; - Jacobson-Gorczany (Vandervort, Kiley) + Weber, Aliza -
Test svc_phone:2749371736
+
Test svc_phone:215984572910627
@@ -2574,15 +2574,15 @@ myMenu63.width = 256; - 287 + 58 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -2602,11 +2602,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -2614,15 +2614,15 @@ myMenu63.width = 256; - Aug 18 2015 + Oct 19 2015 - Feb 18 2016 + Mar 01 2016 - Mar 18 2016 + Apr 01 2016 @@ -2662,11 +2662,11 @@ myMenu63.width = 256; - Braun, Rath and Gutkowski (Wilderman, Reyes) + Weber, Aliza -
Test svc_phone:183790150181541
+
Test svc_acct:linwood@example.com
@@ -2675,15 +2675,15 @@ myMenu63.width = 256; - 288 + 67 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -2703,11 +2703,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -2715,15 +2715,15 @@ myMenu63.width = 256; - Aug 18 2015 + Oct 24 2015 - Mar 01 2016 + Feb 24 2016 - Apr 01 2016 + Mar 24 2016 @@ -2763,11 +2763,11 @@ myMenu63.width = 256; - Braun, Rath and Gutkowski (Wilderman, Reyes) + DuBuque Inc (King, Thomas) -
Test svc_acct:ibrahim@example.com
+
Test svc_phone:510207687452209
@@ -2776,15 +2776,15 @@ myMenu63.width = 256; - 271 + 71 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -2864,11 +2864,11 @@ myMenu63.width = 256; - Fay and Sons (Gerhold, Thora) + Kuhlman-Huels (Parisian, Cristopher) -
Test svc_phone:9519625792
+
Test svc_phone:99158298078002
@@ -2877,15 +2877,15 @@ myMenu63.width = 256; - 206 + 72 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -2965,11 +2965,11 @@ myMenu63.width = 256; - Brown, Danial + Kuhlman-Huels (Parisian, Cristopher) -
Test svc_acct:kyla@example.com
+
Test svc_acct:ryleigh@example.com
@@ -2978,15 +2978,15 @@ myMenu63.width = 256; - 71 + 74 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -3006,11 +3006,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -3018,15 +3018,15 @@ myMenu63.width = 256; - Aug 19 2015 + Oct 06 2015 - Feb 19 2016 + Mar 01 2016 - Mar 19 2016 + Apr 01 2016 @@ -3066,11 +3066,11 @@ myMenu63.width = 256; - Kuhlman-Huels (Parisian, Cristopher) + Romaguera, Tianna -
Test svc_phone:99158298078002
+
Test svc_acct:citlalli@example.com
@@ -3079,15 +3079,15 @@ myMenu63.width = 256; - 72 + 81 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -3107,11 +3107,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -3119,15 +3119,15 @@ myMenu63.width = 256; - Aug 19 2015 + Oct 13 2015 - Mar 01 2016 + Feb 13 2016 - Apr 01 2016 + Mar 13 2016 @@ -3167,11 +3167,11 @@ myMenu63.width = 256; - Kuhlman-Huels (Parisian, Cristopher) + Hackett, Garnet -
Test svc_acct:ryleigh@example.com
+
Test svc_phone:152553597965486
@@ -3180,15 +3180,15 @@ myMenu63.width = 256; - 127 + 82 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -3208,11 +3208,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -3220,15 +3220,15 @@ myMenu63.width = 256; - Aug 20 2015 + Oct 13 2015 - Feb 20 2016 + Mar 01 2016 - Mar 20 2016 + Apr 01 2016 @@ -3268,11 +3268,11 @@ myMenu63.width = 256; - Leannon-Pfannerstill (O'Keefe, Bernie) + Hackett, Garnet -
Test svc_phone:5260896063
+
Test svc_acct:lenora@example.com
@@ -3281,15 +3281,15 @@ myMenu63.width = 256; - 151 + 83 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -3321,15 +3321,15 @@ myMenu63.width = 256; - Aug 21 2015 + Aug 22 2015 - Feb 21 2016 + Feb 22 2016 - Mar 21 2016 + Mar 22 2016 @@ -3369,11 +3369,11 @@ myMenu63.width = 256; - Medhurst Group (Medhurst, Rafaela) + Lehner-Klein (Smitham, Pansy) -
Test svc_phone:7511349049
+
Test svc_phone:114180154577357
@@ -3483,15 +3483,15 @@ myMenu63.width = 256; - 83 + 86 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -3511,11 +3511,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -3523,15 +3523,15 @@ myMenu63.width = 256; - Aug 22 2015 + Sep 28 2015 - Feb 22 2016 + Mar 01 2016 - Mar 22 2016 + Apr 01 2016 @@ -3571,11 +3571,11 @@ myMenu63.width = 256; - Lehner-Klein (Smitham, Pansy) + Toy, Bethany -
Test svc_phone:114180154577357
+
Test svc_acct:alden@example.com
@@ -3584,15 +3584,15 @@ myMenu63.width = 256; - 110 + 93 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -3612,11 +3612,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -3624,15 +3624,15 @@ myMenu63.width = 256; - Aug 26 2015 + Sep 21 2015 - Mar 01 2016 + Feb 21 2016 - Apr 01 2016 + Mar 21 2016 @@ -3672,11 +3672,11 @@ myMenu63.width = 256; - Christiansen, Leone + Swaniawski, Adrienne -
Test svc_acct:donato@example.com
+
Test svc_phone:7091741436337
@@ -3685,15 +3685,15 @@ myMenu63.width = 256; - 242 + 94 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -3725,7 +3725,7 @@ myMenu63.width = 256; - Aug 30 2015 + Sep 21 2015 @@ -3773,11 +3773,11 @@ myMenu63.width = 256; - Kessler, Dana + Swaniawski, Adrienne -
Test svc_acct:cleo@example.com
+
Test svc_acct:sally@example.com
@@ -3786,15 +3786,15 @@ myMenu63.width = 256; - 525 + 98 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -3814,11 +3814,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -3826,15 +3826,15 @@ myMenu63.width = 256; - Aug 31 2015 + Sep 14 2015 - Feb 28 2016 + Mar 01 2016 - Mar 28 2016 + Apr 01 2016 @@ -3874,11 +3874,11 @@ myMenu63.width = 256; - Waters, Godfrey + Kunde, Noemi -
Test svc_phone:230975040878740
+
Test svc_acct:nils@example.com
@@ -3887,15 +3887,15 @@ myMenu63.width = 256; - 170 + 103 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -3915,11 +3915,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -3927,15 +3927,15 @@ myMenu63.width = 256; - Aug 31 2015 + Oct 16 2015 - Mar 01 2016 + Feb 16 2016 - Apr 01 2016 + Mar 16 2016 @@ -3975,11 +3975,11 @@ myMenu63.width = 256; - Schultz, Colten + Bahringer LLC (Frami, Roslyn) -
Test svc_acct:anika@example.com
+
Test svc_phone:19242934458
@@ -3988,15 +3988,15 @@ myMenu63.width = 256; - 526 + 107 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -4016,11 +4016,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -4028,15 +4028,15 @@ myMenu63.width = 256; - Aug 31 2015 + Oct 18 2015 - Mar 01 2016 + Feb 18 2016 - Apr 01 2016 + Mar 18 2016 @@ -4076,11 +4076,11 @@ myMenu63.width = 256; - Waters, Godfrey + Hodkiewicz-Raynor (Macejkovic, Leann) -
Test svc_acct:darren@example.com
+
Test svc_phone:6941312477183
@@ -4089,15 +4089,15 @@ myMenu63.width = 256; - 203 + 108 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -4117,11 +4117,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -4129,15 +4129,15 @@ myMenu63.width = 256; - Sep 02 2015 + Oct 18 2015 - Feb 02 2016 + Mar 01 2016 - Mar 02 2016 + Apr 01 2016 @@ -4177,11 +4177,11 @@ myMenu63.width = 256; - Moore-Cummerata (DuBuque, Russ) + Hodkiewicz-Raynor (Macejkovic, Leann) -
Test svc_phone:8632406717
+
Test svc_acct:kolby@example.com
@@ -4190,15 +4190,15 @@ myMenu63.width = 256; - 204 + 110 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -4230,7 +4230,7 @@ myMenu63.width = 256; - Sep 02 2015 + Aug 26 2015 @@ -4278,11 +4278,11 @@ myMenu63.width = 256; - Moore-Cummerata (DuBuque, Russ) + Christiansen, Leone -
Test svc_acct:kacey@example.com
+
Test svc_acct:donato@example.com
@@ -4291,15 +4291,15 @@ myMenu63.width = 256; - 295 + 117 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -4331,15 +4331,15 @@ myMenu63.width = 256; - Sep 02 2015 + Oct 13 2015 - Feb 02 2016 + Feb 13 2016 - Mar 02 2016 + Mar 13 2016 @@ -4379,11 +4379,11 @@ myMenu63.width = 256; - Luettgen-Jacobs (Hintz, Junior) + Brekke, Tillman -
Test svc_phone:14991580189167
+
Test svc_phone:158607899401245
@@ -4392,15 +4392,15 @@ myMenu63.width = 256; - 511 + 118 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -4420,11 +4420,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -4432,15 +4432,15 @@ myMenu63.width = 256; - Sep 02 2015 + Oct 13 2015 - Feb 02 2016 + Mar 01 2016 - Mar 02 2016 + Apr 01 2016 @@ -4480,11 +4480,11 @@ myMenu63.width = 256; - Mante LLC (Kessler, Enid) + Brekke, Tillman -
Test svc_phone:9686105497
+
Test svc_acct:hardy@example.com
@@ -4493,15 +4493,15 @@ myMenu63.width = 256; - 223 + 127 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -4533,15 +4533,15 @@ myMenu63.width = 256; - Sep 03 2015 + Aug 20 2015 - Feb 03 2016 + Feb 20 2016 - Mar 03 2016 + Mar 20 2016 @@ -4581,11 +4581,11 @@ myMenu63.width = 256; - Hoeger-Brown (Shields, Serenity) + Leannon-Pfannerstill (O'Keefe, Bernie) -
Test svc_phone:68981950057600
+
Test svc_phone:5260896063
@@ -4594,15 +4594,15 @@ myMenu63.width = 256; - 323 + 134 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -4622,11 +4622,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -4634,15 +4634,15 @@ myMenu63.width = 256; - Sep 04 2015 + Aug 12 2015 - Feb 04 2016 + Mar 01 2016 - Mar 04 2016 + Apr 01 2016 @@ -4682,11 +4682,11 @@ myMenu63.width = 256; - Lind-Bahringer (Ratke, Roma) + Steuber, Ryley -
Test svc_phone:4989851645
+
Test svc_acct:hilbert@example.com
@@ -4695,15 +4695,15 @@ myMenu63.width = 256; - 324 + 139 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -4723,11 +4723,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -4735,15 +4735,15 @@ myMenu63.width = 256; - Sep 04 2015 + Sep 29 2015 - Mar 01 2016 + Feb 28 2016 - Apr 01 2016 + Mar 28 2016 @@ -4783,11 +4783,11 @@ myMenu63.width = 256; - Lind-Bahringer (Ratke, Roma) + Bernhard-Treutel (Shanahan, Kevin) -
Test svc_acct:stanton@example.com
+
Test svc_phone:71877083088273
@@ -4796,15 +4796,15 @@ myMenu63.width = 256; - 278 + 143 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -4824,11 +4824,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -4836,15 +4836,15 @@ myMenu63.width = 256; - Sep 06 2015 + Oct 08 2015 - Mar 01 2016 + Feb 08 2016 - Apr 01 2016 + Mar 08 2016 @@ -4884,11 +4884,11 @@ myMenu63.width = 256; - McKenzie, Kareem + Bernhard LLC (Hintz, Winston) -
Test svc_acct:mitchell@example.com
+
Test svc_phone:95994707748468
@@ -4897,15 +4897,15 @@ myMenu63.width = 256; - 439 + 144 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -4925,11 +4925,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -4937,15 +4937,15 @@ myMenu63.width = 256; - Sep 06 2015 + Oct 08 2015 - Feb 06 2016 + Mar 01 2016 - Mar 06 2016 + Apr 01 2016 @@ -4985,11 +4985,11 @@ myMenu63.width = 256; - Pfeffer, Shanahan and Cruickshank (Kutch, Rosario) + Bernhard LLC (Hintz, Winston) -
Test svc_phone:1214016847277551
+
Test svc_acct:ebony@example.com
@@ -4998,15 +4998,15 @@ myMenu63.width = 256; - 191 + 146 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -5026,11 +5026,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -5038,15 +5038,15 @@ myMenu63.width = 256; - Sep 08 2015 + Oct 14 2015 - Feb 08 2016 + Mar 01 2016 - Mar 08 2016 + Apr 01 2016 @@ -5086,11 +5086,11 @@ myMenu63.width = 256; - O'Reilly-Mraz (Pagac, Kennedi) + Marquardt, Abbey -
Test svc_phone:078151255309299
+
Test svc_acct:edd@example.com
@@ -5099,15 +5099,15 @@ myMenu63.width = 256; - 192 + 151 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -5127,11 +5127,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -5139,15 +5139,15 @@ myMenu63.width = 256; - Sep 08 2015 + Aug 21 2015 - Mar 01 2016 + Feb 21 2016 - Apr 01 2016 + Mar 21 2016 @@ -5187,11 +5187,11 @@ myMenu63.width = 256; - O'Reilly-Mraz (Pagac, Kennedi) + Medhurst Group (Medhurst, Rafaela) -
Test svc_acct:kaitlyn@example.com
+
Test svc_phone:7511349049
@@ -5200,15 +5200,15 @@ myMenu63.width = 256; - 7 + 153 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -5240,15 +5240,15 @@ myMenu63.width = 256; - Sep 10 2015 + Sep 21 2015 - Feb 10 2016 + Feb 21 2016 - Mar 10 2016 + Mar 21 2016 @@ -5288,11 +5288,11 @@ myMenu63.width = 256; - Flatley-Hagenes (Donnelly, Odessa) + Frami, Gayle -
Test svc_phone:19671718037
+
Test svc_phone:0465059470
@@ -5301,15 +5301,15 @@ myMenu63.width = 256; - 175 + 154 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -5329,11 +5329,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -5341,15 +5341,15 @@ myMenu63.width = 256; - Sep 12 2015 + Sep 21 2015 - Feb 12 2016 + Mar 01 2016 - Mar 12 2016 + Apr 01 2016 @@ -5389,11 +5389,11 @@ myMenu63.width = 256; - Simonis Inc (Runolfsson, Kareem) + Frami, Gayle -
Test svc_phone:6741985321
+
Test svc_acct:ettie@example.com
@@ -5402,15 +5402,15 @@ myMenu63.width = 256; - 535 + 155 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -5442,15 +5442,15 @@ myMenu63.width = 256; - Sep 13 2015 + Sep 20 2015 - Feb 13 2016 + Feb 20 2016 - Mar 13 2016 + Mar 20 2016 @@ -5490,11 +5490,11 @@ myMenu63.width = 256; - Conn-McLaughlin (O'Connell, Gayle) + Balistreri-Schoen (Schultz, Jaylan) -
Test svc_phone:6049664310378
+
Test svc_phone:261457560511658
@@ -5503,15 +5503,15 @@ myMenu63.width = 256; - 98 + 156 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -5543,7 +5543,7 @@ myMenu63.width = 256; - Sep 14 2015 + Sep 20 2015 @@ -5591,11 +5591,11 @@ myMenu63.width = 256; - Kunde, Noemi + Balistreri-Schoen (Schultz, Jaylan) -
Test svc_acct:nils@example.com
+
Test svc_acct:haley@example.com
@@ -5604,15 +5604,15 @@ myMenu63.width = 256; - 444 + 165 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -5632,11 +5632,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -5644,15 +5644,15 @@ myMenu63.width = 256; - Sep 14 2015 + Oct 31 2015 - Mar 01 2016 + Feb 28 2016 - Apr 01 2016 + Mar 28 2016 @@ -5692,11 +5692,11 @@ myMenu63.width = 256; - O'Keefe Inc (Schamberger, Felix) + Morar, Braulio -
Test svc_acct:anabelle@example.com
+
Test svc_phone:1906003499937
@@ -5705,15 +5705,15 @@ myMenu63.width = 256; - 443 + 166 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -5733,11 +5733,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -5745,15 +5745,15 @@ myMenu63.width = 256; - Sep 14 2015 + Oct 31 2015 - Feb 14 2016 + Mar 01 2016 - Mar 14 2016 + Apr 01 2016 @@ -5793,11 +5793,11 @@ myMenu63.width = 256; - O'Keefe Inc (Schamberger, Felix) + Morar, Braulio -
Test svc_phone:8366310646
+
Test svc_acct:rodolfo@example.com
@@ -5806,15 +5806,15 @@ myMenu63.width = 256; - 463 + 170 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -5834,11 +5834,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -5846,15 +5846,15 @@ myMenu63.width = 256; - Sep 19 2015 + Aug 31 2015 - Feb 19 2016 + Mar 01 2016 - Mar 19 2016 + Apr 01 2016 @@ -5894,11 +5894,11 @@ myMenu63.width = 256; - Boyle-Schmeler (Maggio, Fay) + Schultz, Colten -
Test svc_phone:1173141702400720
+
Test svc_acct:anika@example.com
@@ -5907,15 +5907,15 @@ myMenu63.width = 256; - 586 + 175 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -5935,11 +5935,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -5947,15 +5947,15 @@ myMenu63.width = 256; - Sep 19 2015 + Sep 12 2015 - Mar 01 2016 + Feb 12 2016 - Apr 01 2016 + Mar 12 2016 @@ -5995,11 +5995,11 @@ myMenu63.width = 256; - Turcotte, Janessa + Simonis Inc (Runolfsson, Kareem) -
Test svc_acct:jessy@example.com
+
Test svc_phone:6741985321
@@ -6008,15 +6008,15 @@ myMenu63.width = 256; - 585 + 191 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -6048,15 +6048,15 @@ myMenu63.width = 256; - Sep 19 2015 + Sep 08 2015 - Feb 19 2016 + Feb 08 2016 - Mar 19 2016 + Mar 08 2016 @@ -6096,11 +6096,11 @@ myMenu63.width = 256; - Turcotte, Janessa + O'Reilly-Mraz (Pagac, Kennedi) -
Test svc_phone:10016834740
+
Test svc_phone:078151255309299
@@ -6109,15 +6109,15 @@ myMenu63.width = 256; - 300 + 192 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -6149,7 +6149,7 @@ myMenu63.width = 256; - Sep 20 2015 + Sep 08 2015 @@ -6197,11 +6197,11 @@ myMenu63.width = 256; - Flatley, Yundt and Pacocha (Volkman, Tabitha) + O'Reilly-Mraz (Pagac, Kennedi) -
Test svc_acct:coby@example.com
+
Test svc_acct:kaitlyn@example.com
@@ -6210,15 +6210,15 @@ myMenu63.width = 256; - 398 + 194 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -6250,7 +6250,7 @@ myMenu63.width = 256; - Sep 20 2015 + Sep 24 2015 @@ -6298,11 +6298,11 @@ myMenu63.width = 256; - Stokes, Janelle + Abbott, Addison -
Test svc_acct:deanna@example.com
+
Test svc_acct:marian@example.com
@@ -6311,15 +6311,15 @@ myMenu63.width = 256; - 299 + 203 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -6351,15 +6351,15 @@ myMenu63.width = 256; - Sep 20 2015 + Sep 02 2015 - Feb 20 2016 + Feb 02 2016 - Mar 20 2016 + Mar 02 2016 @@ -6399,11 +6399,11 @@ myMenu63.width = 256; - Flatley, Yundt and Pacocha (Volkman, Tabitha) + Moore-Cummerata (DuBuque, Russ) -
Test svc_phone:2964457155392
+
Test svc_phone:8632406717
@@ -6412,15 +6412,15 @@ myMenu63.width = 256; - 156 + 204 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -6452,7 +6452,7 @@ myMenu63.width = 256; - Sep 20 2015 + Sep 02 2015 @@ -6500,11 +6500,11 @@ myMenu63.width = 256; - Balistreri-Schoen (Schultz, Jaylan) + Moore-Cummerata (DuBuque, Russ) -
Test svc_acct:haley@example.com
+
Test svc_acct:kacey@example.com
@@ -6513,15 +6513,15 @@ myMenu63.width = 256; - 155 + 206 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -6541,11 +6541,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -6553,15 +6553,15 @@ myMenu63.width = 256; - Sep 20 2015 + Aug 19 2015 - Feb 20 2016 + Mar 01 2016 - Mar 20 2016 + Apr 01 2016 @@ -6601,11 +6601,11 @@ myMenu63.width = 256; - Balistreri-Schoen (Schultz, Jaylan) + Brown, Danial -
Test svc_phone:261457560511658
+
Test svc_acct:kyla@example.com
@@ -6614,15 +6614,15 @@ myMenu63.width = 256; - 475 + 213 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -6654,15 +6654,15 @@ myMenu63.width = 256; - Sep 21 2015 + Oct 03 2015 - Feb 21 2016 + Feb 03 2016 - Mar 21 2016 + Mar 03 2016 @@ -6702,11 +6702,11 @@ myMenu63.width = 256; - McLaughlin-Luettgen (Berge, Houston) + Lehner, Ryann -
Test svc_phone:127676487383404
+
Test svc_phone:2636239939
@@ -6715,15 +6715,15 @@ myMenu63.width = 256; - 93 + 214 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -6743,11 +6743,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -6755,15 +6755,15 @@ myMenu63.width = 256; - Sep 21 2015 + Oct 03 2015 - Feb 21 2016 + Mar 01 2016 - Mar 21 2016 + Apr 01 2016 @@ -6803,11 +6803,11 @@ myMenu63.width = 256; - Swaniawski, Adrienne + Lehner, Ryann -
Test svc_phone:7091741436337
+
Test svc_acct:jacky@example.com
@@ -6816,15 +6816,15 @@ myMenu63.width = 256; - 94 + 218 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -6856,7 +6856,7 @@ myMenu63.width = 256; - Sep 21 2015 + Aug 17 2015 @@ -6904,11 +6904,11 @@ myMenu63.width = 256; - Swaniawski, Adrienne + Boyer, Lamont -
Test svc_acct:sally@example.com
+
Test svc_acct:horace@example.com
@@ -6917,15 +6917,15 @@ myMenu63.width = 256; - 153 + 223 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -6957,15 +6957,15 @@ myMenu63.width = 256; - Sep 21 2015 + Sep 03 2015 - Feb 21 2016 + Feb 03 2016 - Mar 21 2016 + Mar 03 2016 @@ -7005,11 +7005,11 @@ myMenu63.width = 256; - Frami, Gayle + Hoeger-Brown (Shields, Serenity) -
Test svc_phone:0465059470
+
Test svc_phone:68981950057600
@@ -7018,15 +7018,15 @@ myMenu63.width = 256; - 154 + 225 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -7046,11 +7046,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -7058,15 +7058,15 @@ myMenu63.width = 256; - Sep 21 2015 + Oct 27 2015 - Mar 01 2016 + Feb 27 2016 - Apr 01 2016 + Mar 27 2016 @@ -7106,11 +7106,11 @@ myMenu63.width = 256; - Frami, Gayle + Monahan, Tyrese -
Test svc_acct:ettie@example.com
+
Test svc_phone:31674614863771
@@ -7119,15 +7119,15 @@ myMenu63.width = 256; - 333 + 226 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -7147,11 +7147,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -7159,15 +7159,15 @@ myMenu63.width = 256; - Sep 22 2015 + Oct 27 2015 - Feb 22 2016 + Mar 01 2016 - Mar 22 2016 + Apr 01 2016 @@ -7207,11 +7207,11 @@ myMenu63.width = 256; - Gleason, Ahmed + Monahan, Tyrese -
Test svc_phone:3337658056
+
Test svc_acct:alexa@example.com
@@ -7220,15 +7220,15 @@ myMenu63.width = 256; - 334 + 237 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -7248,11 +7248,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -7260,15 +7260,15 @@ myMenu63.width = 256; - Sep 22 2015 + Oct 13 2015 - Mar 01 2016 + Feb 13 2016 - Apr 01 2016 + Mar 13 2016 @@ -7308,11 +7308,11 @@ myMenu63.width = 256; - Gleason, Ahmed + Jakubowski, Jarrell -
Test svc_acct:clarabelle@example.com
+
Test svc_phone:10163759294554
@@ -7321,15 +7321,15 @@ myMenu63.width = 256; - 490 + 238 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -7361,7 +7361,7 @@ myMenu63.width = 256; - Sep 23 2015 + Oct 13 2015 @@ -7409,11 +7409,11 @@ myMenu63.width = 256; - Bernhard, Kris + Jakubowski, Jarrell -
Test svc_acct:frances@example.com
+
Test svc_acct:lexie@example.com
@@ -7422,15 +7422,15 @@ myMenu63.width = 256; - 489 + 242 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -7450,11 +7450,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -7462,15 +7462,15 @@ myMenu63.width = 256; - Sep 23 2015 + Aug 30 2015 - Feb 23 2016 + Mar 01 2016 - Mar 23 2016 + Apr 01 2016 @@ -7510,11 +7510,11 @@ myMenu63.width = 256; - Bernhard, Kris + Kessler, Dana -
Test svc_phone:19406435307
+
Test svc_acct:cleo@example.com
@@ -7523,15 +7523,15 @@ myMenu63.width = 256; - 194 + 247 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -7551,11 +7551,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -7563,15 +7563,15 @@ myMenu63.width = 256; - Sep 24 2015 + Aug 18 2015 - Mar 01 2016 + Feb 18 2016 - Apr 01 2016 + Mar 18 2016 @@ -7611,11 +7611,11 @@ myMenu63.width = 256; - Abbott, Addison + Jacobson-Gorczany (Vandervort, Kiley) -
Test svc_acct:marian@example.com
+
Test svc_phone:2749371736
@@ -7624,15 +7624,15 @@ myMenu63.width = 256; - 283 + 251 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -7664,15 +7664,15 @@ myMenu63.width = 256; - Sep 25 2015 + Oct 22 2015 - Feb 25 2016 + Feb 22 2016 - Mar 25 2016 + Mar 22 2016 @@ -7712,11 +7712,11 @@ myMenu63.width = 256; - Wolff Inc (Hessel, Brianne) + Spinka Inc (Runte, Emmalee) -
Test svc_phone:5866817423
+
Test svc_phone:70045317269958
@@ -7725,15 +7725,15 @@ myMenu63.width = 256; - 513 + 252 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -7753,11 +7753,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -7765,15 +7765,15 @@ myMenu63.width = 256; - Sep 26 2015 + Oct 22 2015 - Feb 26 2016 + Mar 01 2016 - Mar 26 2016 + Apr 01 2016 @@ -7813,11 +7813,11 @@ myMenu63.width = 256; - Rowe, Amara + Spinka Inc (Runte, Emmalee) -
Test svc_phone:94633305715988
+
Test svc_acct:clinton@example.com
@@ -7826,15 +7826,15 @@ myMenu63.width = 256; - 514 + 259 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -7854,11 +7854,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -7866,15 +7866,15 @@ myMenu63.width = 256; - Sep 26 2015 + Aug 15 2015 - Mar 01 2016 + Feb 15 2016 - Apr 01 2016 + Mar 15 2016 @@ -7914,11 +7914,11 @@ myMenu63.width = 256; - Rowe, Amara + Kozey and Sons (Vandervort, Harmon) -
Test svc_acct:chaim@example.com
+
Test svc_phone:106766405260980
@@ -7927,15 +7927,15 @@ myMenu63.width = 256; - 386 + 271 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -7955,11 +7955,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -7967,15 +7967,15 @@ myMenu63.width = 256; - Sep 26 2015 + Aug 19 2015 - Mar 01 2016 + Feb 19 2016 - Apr 01 2016 + Mar 19 2016 @@ -8015,11 +8015,11 @@ myMenu63.width = 256; - Carter, Cathy + Fay and Sons (Gerhold, Thora) -
Test svc_acct:wade@example.com
+
Test svc_phone:9519625792
@@ -8028,15 +8028,15 @@ myMenu63.width = 256; - 564 + 273 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -8056,11 +8056,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -8068,15 +8068,15 @@ myMenu63.width = 256; - Sep 27 2015 + Aug 07 2015 - Mar 01 2016 + Feb 07 2016 - Apr 01 2016 + Mar 07 2016 @@ -8116,11 +8116,11 @@ myMenu63.width = 256; - Rodriguez-Ebert (Bergstrom, Cecilia) + Ruecker, Lucious -
Test svc_acct:blair@example.com
+
Test svc_phone:16095013569
@@ -8129,15 +8129,15 @@ myMenu63.width = 256; - 290 + 274 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -8169,7 +8169,7 @@ myMenu63.width = 256; - Sep 27 2015 + Aug 07 2015 @@ -8217,11 +8217,11 @@ myMenu63.width = 256; - Gleichner, Delmer + Ruecker, Lucious -
Test svc_acct:jadon@example.com
+
Test svc_acct:karen@example.com
@@ -8230,15 +8230,15 @@ myMenu63.width = 256; - 563 + 275 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -8270,15 +8270,15 @@ myMenu63.width = 256; - Sep 27 2015 + Oct 06 2015 - Feb 27 2016 + Feb 06 2016 - Mar 27 2016 + Mar 06 2016 @@ -8318,11 +8318,11 @@ myMenu63.width = 256; - Rodriguez-Ebert (Bergstrom, Cecilia) + Dach, Lueilwitz and Koepp (Kovacek, Frank) -
Test svc_phone:882705209766347
+
Test svc_phone:1732869050
@@ -8331,15 +8331,15 @@ myMenu63.width = 256; - 374 + 276 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -8371,7 +8371,7 @@ myMenu63.width = 256; - Sep 28 2015 + Oct 06 2015 @@ -8419,11 +8419,11 @@ myMenu63.width = 256; - Kunze, Michale + Dach, Lueilwitz and Koepp (Kovacek, Frank) -
Test svc_acct:maida@example.com
+
Test svc_acct:antwan@example.com
@@ -8432,15 +8432,15 @@ myMenu63.width = 256; - 21 + 278 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -8460,11 +8460,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -8472,15 +8472,15 @@ myMenu63.width = 256; - Sep 28 2015 + Sep 06 2015 - Feb 28 2016 + Mar 01 2016 - Mar 28 2016 + Apr 01 2016 @@ -8520,11 +8520,11 @@ myMenu63.width = 256; - Douglas, Willow + McKenzie, Kareem -
Test svc_phone:402545251883238
+
Test svc_acct:mitchell@example.com
@@ -8533,15 +8533,15 @@ myMenu63.width = 256; - 384 + 283 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -8561,11 +8561,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -8573,15 +8573,15 @@ myMenu63.width = 256; - Sep 28 2015 + Sep 25 2015 - Mar 01 2016 + Feb 25 2016 - Apr 01 2016 + Mar 25 2016 @@ -8621,11 +8621,11 @@ myMenu63.width = 256; - Quitzon Group (Davis, Jeffery) + Wolff Inc (Hessel, Brianne) -
Test svc_acct:daphnee@example.com
+
Test svc_phone:5866817423
@@ -8634,15 +8634,15 @@ myMenu63.width = 256; - 383 + 285 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -8674,15 +8674,15 @@ myMenu63.width = 256; - Sep 28 2015 + Oct 08 2015 - Feb 28 2016 + Feb 08 2016 - Mar 28 2016 + Mar 08 2016 @@ -8722,11 +8722,11 @@ myMenu63.width = 256; - Quitzon Group (Davis, Jeffery) + Muller, Kenyatta -
Test svc_phone:150342529271096
+
Test svc_phone:3521080416
@@ -8735,15 +8735,15 @@ myMenu63.width = 256; - 22 + 286 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -8775,7 +8775,7 @@ myMenu63.width = 256; - Sep 28 2015 + Oct 08 2015 @@ -8823,11 +8823,11 @@ myMenu63.width = 256; - Douglas, Willow + Muller, Kenyatta -
Test svc_acct:hilario@example.com
+
Test svc_acct:rebeca@example.com
@@ -8836,15 +8836,15 @@ myMenu63.width = 256; - 86 + 287 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -8864,11 +8864,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -8876,15 +8876,15 @@ myMenu63.width = 256; - Sep 28 2015 + Aug 18 2015 - Mar 01 2016 + Feb 18 2016 - Apr 01 2016 + Mar 18 2016 @@ -8924,11 +8924,11 @@ myMenu63.width = 256; - Toy, Bethany + Braun, Rath and Gutkowski (Wilderman, Reyes) -
Test svc_acct:alden@example.com
+
Test svc_phone:183790150181541
@@ -8937,15 +8937,15 @@ myMenu63.width = 256; - 139 + 288 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -8965,11 +8965,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -8977,15 +8977,15 @@ myMenu63.width = 256; - Sep 29 2015 + Aug 18 2015 - Feb 28 2016 + Mar 01 2016 - Mar 28 2016 + Apr 01 2016 @@ -9025,11 +9025,11 @@ myMenu63.width = 256; - Bernhard-Treutel (Shanahan, Kevin) + Braun, Rath and Gutkowski (Wilderman, Reyes) -
Test svc_phone:71877083088273
+
Test svc_acct:ibrahim@example.com
@@ -9038,15 +9038,15 @@ myMenu63.width = 256; - 359 + 290 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -9066,11 +9066,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -9078,15 +9078,15 @@ myMenu63.width = 256; - Sep 29 2015 + Sep 27 2015 - Feb 28 2016 + Mar 01 2016 - Mar 28 2016 + Apr 01 2016 @@ -9126,11 +9126,11 @@ myMenu63.width = 256; - Cole, Graham and Towne (Hickle, Javier) + Gleichner, Delmer -
Test svc_phone:3724022714296
+
Test svc_acct:jadon@example.com
@@ -9139,15 +9139,15 @@ myMenu63.width = 256; - 360 + 295 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -9167,11 +9167,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -9179,15 +9179,15 @@ myMenu63.width = 256; - Sep 29 2015 + Sep 02 2015 - Mar 01 2016 + Feb 02 2016 - Apr 01 2016 + Mar 02 2016 @@ -9227,11 +9227,11 @@ myMenu63.width = 256; - Cole, Graham and Towne (Hickle, Javier) + Luettgen-Jacobs (Hintz, Junior) -
Test svc_acct:therese@example.com
+
Test svc_phone:14991580189167
@@ -9240,15 +9240,15 @@ myMenu63.width = 256; - 55 + 299 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -9280,15 +9280,15 @@ myMenu63.width = 256; - Sep 29 2015 + Sep 20 2015 - Feb 28 2016 + Feb 20 2016 - Mar 28 2016 + Mar 20 2016 @@ -9328,11 +9328,11 @@ myMenu63.width = 256; - Toy-Gerlach (Zulauf, Sharon) + Flatley, Yundt and Pacocha (Volkman, Tabitha) -
Test svc_phone:47925781188566
+
Test svc_phone:2964457155392
@@ -9341,15 +9341,15 @@ myMenu63.width = 256; - 31 + 300 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -9369,11 +9369,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -9381,15 +9381,15 @@ myMenu63.width = 256; - Sep 30 2015 + Sep 20 2015 - Feb 28 2016 + Mar 01 2016 - Mar 28 2016 + Apr 01 2016 @@ -9429,11 +9429,11 @@ myMenu63.width = 256; - Torp, Sawayn and Friesen (Pollich, Maritza) + Flatley, Yundt and Pacocha (Volkman, Tabitha) -
Test svc_phone:2103459718
+
Test svc_acct:coby@example.com
@@ -9442,15 +9442,15 @@ myMenu63.width = 256; - 566 + 307 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -9470,11 +9470,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -9482,15 +9482,15 @@ myMenu63.width = 256; - Oct 01 2015 + Aug 08 2015 - Mar 01 2016 + Feb 08 2016 - Apr 01 2016 + Mar 08 2016 @@ -9530,11 +9530,11 @@ myMenu63.width = 256; - Kreiger, Bernard + Roberts-Schinner (Flatley, Amelia) -
Test svc_acct:hazel@example.com
+
Test svc_phone:4593519604
@@ -9543,15 +9543,15 @@ myMenu63.width = 256; - 551 + 323 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -9583,15 +9583,15 @@ myMenu63.width = 256; - Oct 02 2015 + Sep 04 2015 - Feb 02 2016 + Feb 04 2016 - Mar 02 2016 + Mar 04 2016 @@ -9631,11 +9631,11 @@ myMenu63.width = 256; - Christiansen LLC (Howe, Luis) + Lind-Bahringer (Ratke, Roma) -
Test svc_phone:5191928764
+
Test svc_phone:4989851645
@@ -9644,15 +9644,15 @@ myMenu63.width = 256; - 552 + 324 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -9684,7 +9684,7 @@ myMenu63.width = 256; - Oct 02 2015 + Sep 04 2015 @@ -9732,11 +9732,11 @@ myMenu63.width = 256; - Christiansen LLC (Howe, Luis) + Lind-Bahringer (Ratke, Roma) -
Test svc_acct:eino@example.com
+
Test svc_acct:stanton@example.com
@@ -9745,15 +9745,15 @@ myMenu63.width = 256; - 213 + 333 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -9785,15 +9785,15 @@ myMenu63.width = 256; - Oct 03 2015 + Sep 22 2015 - Feb 03 2016 + Feb 22 2016 - Mar 03 2016 + Mar 22 2016 @@ -9833,11 +9833,11 @@ myMenu63.width = 256; - Lehner, Ryann + Gleason, Ahmed -
Test svc_phone:2636239939
+
Test svc_phone:3337658056
@@ -9846,15 +9846,15 @@ myMenu63.width = 256; - 43 + 334 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -9874,11 +9874,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -9886,15 +9886,15 @@ myMenu63.width = 256; - Oct 03 2015 + Sep 22 2015 - Feb 03 2016 + Mar 01 2016 - Mar 03 2016 + Apr 01 2016 @@ -9934,11 +9934,11 @@ myMenu63.width = 256; - Stracke Inc (Kuhlman, Kaya) + Gleason, Ahmed -
Test svc_phone:7315522562
+
Test svc_acct:clarabelle@example.com
@@ -9947,15 +9947,15 @@ myMenu63.width = 256; - 214 + 338 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -9987,7 +9987,7 @@ myMenu63.width = 256; - Oct 03 2015 + Aug 17 2015 @@ -10035,11 +10035,11 @@ myMenu63.width = 256; - Lehner, Ryann + Donnelly, Raleigh -
Test svc_acct:jacky@example.com
+
Test svc_acct:stan@example.com
@@ -10048,15 +10048,15 @@ myMenu63.width = 256; - 391 + 345 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -10088,15 +10088,15 @@ myMenu63.width = 256; - Oct 03 2015 + Oct 18 2015 - Feb 03 2016 + Feb 18 2016 - Mar 03 2016 + Mar 18 2016 @@ -10136,11 +10136,11 @@ myMenu63.width = 256; - Wolff and Sons (Heller, Dagmar) + Konopelski, Barry -
Test svc_phone:16892538421
+
Test svc_phone:0783009535773
@@ -10149,15 +10149,15 @@ myMenu63.width = 256; - 276 + 346 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -10189,7 +10189,7 @@ myMenu63.width = 256; - Oct 06 2015 + Oct 18 2015 @@ -10237,11 +10237,11 @@ myMenu63.width = 256; - Dach, Lueilwitz and Koepp (Kovacek, Frank) + Konopelski, Barry -
Test svc_acct:antwan@example.com
+
Test svc_acct:marc@example.com
@@ -10250,15 +10250,15 @@ myMenu63.width = 256; - 74 + 347 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -10278,11 +10278,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -10290,15 +10290,15 @@ myMenu63.width = 256; - Oct 06 2015 + Oct 07 2015 - Mar 01 2016 + Feb 07 2016 - Apr 01 2016 + Mar 07 2016 @@ -10338,11 +10338,11 @@ myMenu63.width = 256; - Romaguera, Tianna + Bernier-Nader (Hane, Floy) -
Test svc_acct:citlalli@example.com
+
Test svc_phone:1894866195856273
@@ -10351,15 +10351,15 @@ myMenu63.width = 256; - 275 + 348 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -10379,11 +10379,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -10391,15 +10391,15 @@ myMenu63.width = 256; - Oct 06 2015 + Oct 07 2015 - Feb 06 2016 + Mar 01 2016 - Mar 06 2016 + Apr 01 2016 @@ -10439,11 +10439,11 @@ myMenu63.width = 256; - Dach, Lueilwitz and Koepp (Kovacek, Frank) + Bernier-Nader (Hane, Floy) -
Test svc_phone:1732869050
+
Test svc_acct:newell@example.com
@@ -10452,15 +10452,15 @@ myMenu63.width = 256; - 477 + 355 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -10492,15 +10492,15 @@ myMenu63.width = 256; - Oct 06 2015 + Aug 09 2015 - Feb 06 2016 + Feb 09 2016 - Mar 06 2016 + Mar 09 2016 @@ -10540,11 +10540,11 @@ myMenu63.width = 256; - Lakin, Lindsay + Runolfsson, Roob and Hoppe (Bergstrom, Esteban) -
Test svc_phone:8078845348
+
Test svc_phone:15790441533145
@@ -10553,15 +10553,15 @@ myMenu63.width = 256; - 478 + 359 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -10581,11 +10581,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -10593,15 +10593,15 @@ myMenu63.width = 256; - Oct 06 2015 + Sep 29 2015 - Mar 01 2016 + Feb 28 2016 - Apr 01 2016 + Mar 28 2016 @@ -10641,11 +10641,11 @@ myMenu63.width = 256; - Lakin, Lindsay + Cole, Graham and Towne (Hickle, Javier) -
Test svc_acct:mallie@example.com
+
Test svc_phone:3724022714296
@@ -10654,15 +10654,15 @@ myMenu63.width = 256; - 347 + 360 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -10682,11 +10682,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -10694,15 +10694,15 @@ myMenu63.width = 256; - Oct 07 2015 + Sep 29 2015 - Feb 07 2016 + Mar 01 2016 - Mar 07 2016 + Apr 01 2016 @@ -10742,11 +10742,11 @@ myMenu63.width = 256; - Bernier-Nader (Hane, Floy) + Cole, Graham and Towne (Hickle, Javier) -
Test svc_phone:1894866195856273
+
Test svc_acct:therese@example.com
@@ -10755,15 +10755,15 @@ myMenu63.width = 256; - 482 + 367 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -10783,11 +10783,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -10795,15 +10795,15 @@ myMenu63.width = 256; - Oct 07 2015 + Oct 17 2015 - Mar 01 2016 + Feb 17 2016 - Apr 01 2016 + Mar 17 2016 @@ -10843,11 +10843,11 @@ myMenu63.width = 256; - Hermiston, Cassidy + Zulauf-Schiller (Jacobs, Angelina) -
Test svc_acct:genevieve@example.com
+
Test svc_phone:4942001551
@@ -10856,15 +10856,15 @@ myMenu63.width = 256; - 348 + 374 - 1 + 1 - Monthly prorated account + Monthly prorated account @@ -10896,7 +10896,7 @@ myMenu63.width = 256; - Oct 07 2015 + Sep 28 2015 @@ -10944,11 +10944,11 @@ myMenu63.width = 256; - Bernier-Nader (Hane, Floy) + Kunze, Michale -
Test svc_acct:newell@example.com
+
Test svc_acct:maida@example.com
@@ -11159,15 +11159,15 @@ myMenu63.width = 256; - 285 + 383 - 1 + 1 - Monthly anniversary phone x4 + Monthly anniversary phone x4 @@ -11199,15 +11199,15 @@ myMenu63.width = 256; - Oct 08 2015 + Sep 28 2015 - Feb 08 2016 + Feb 28 2016 - Mar 08 2016 + Mar 28 2016 @@ -11247,11 +11247,11 @@ myMenu63.width = 256; - Muller, Kenyatta + Quitzon Group (Davis, Jeffery) -
Test svc_phone:3521080416
+
Test svc_phone:150342529271096
@@ -11266,9 +11266,9 @@ myMenu63.width = 256; 1 - 2 + 2 - Next + Next diff --git a/FS-Test/share/output/search/cust_pkg_churn.html/agentnum=:status=setup:begin=1438412400:end=1441090800 b/FS-Test/share/output/search/cust_pkg_churn.html/agentnum=:status=setup:begin=1438412400:end=1441090800:order_by=cust_pkg.pkgnum similarity index 99% rename from FS-Test/share/output/search/cust_pkg_churn.html/agentnum=:status=setup:begin=1438412400:end=1441090800 rename to FS-Test/share/output/search/cust_pkg_churn.html/agentnum=:status=setup:begin=1438412400:end=1441090800:order_by=cust_pkg.pkgnum index 7baed93cc..3468bc58f 100644 --- a/FS-Test/share/output/search/cust_pkg_churn.html/agentnum=:status=setup:begin=1438412400:end=1441090800 +++ b/FS-Test/share/output/search/cust_pkg_churn.html/agentnum=:status=setup:begin=1438412400:end=1441090800:order_by=cust_pkg.pkgnum @@ -879,12 +879,12 @@ myMenu63.width = 256; Download full results
- as Excel spreadsheet
+ as Excel spreadsheet
- as CSV file
+ as CSV file
- as printable copy + as printable copy @@ -915,7 +915,7 @@ myMenu63.width = 256; > - # + # - Setup + Setup - Last bill + Last bill - Next bill + Next bill - Susp. + Susp. - Changed + Changed - Cancel + Cancel 72 + 71 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -1535,11 +1535,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -1551,11 +1551,11 @@ myMenu63.width = 256; - Mar 01 2016 + Feb 19 2016 - Apr 01 2016 + Mar 19 2016 @@ -1584,15 +1584,15 @@ myMenu63.width = 256; - 73 + 72 - 1 + 1 - Monthly prorated broadband + Monthly prorated account @@ -1608,11 +1608,11 @@ myMenu63.width = 256; - $40.00 + $20.00 - $90.00 + $30.00 @@ -1657,15 +1657,15 @@ myMenu63.width = 256; - 71 + 73 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -1681,11 +1681,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -1697,11 +1697,11 @@ myMenu63.width = 256; - Feb 19 2016 + Mar 01 2016 - Mar 19 2016 + Apr 01 2016 @@ -1730,15 +1730,15 @@ myMenu63.width = 256; - 84 + 83 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -1754,11 +1754,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -1770,11 +1770,11 @@ myMenu63.width = 256; - Mar 01 2016 + Feb 22 2016 - Apr 01 2016 + Mar 22 2016 @@ -1803,15 +1803,15 @@ myMenu63.width = 256; - 85 + 84 - 1 + 1 - Monthly prorated broadband + Monthly prorated account @@ -1827,11 +1827,11 @@ myMenu63.width = 256; - $40.00 + $20.00 - $90.00 + $30.00 @@ -1876,15 +1876,15 @@ myMenu63.width = 256; - 83 + 85 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -1900,11 +1900,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -1916,11 +1916,11 @@ myMenu63.width = 256; - Feb 22 2016 + Mar 01 2016 - Mar 22 2016 + Apr 01 2016 @@ -2241,15 +2241,15 @@ myMenu63.width = 256; - 127 + 126 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -2269,11 +2269,11 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually @@ -2281,11 +2281,11 @@ myMenu63.width = 256; - Feb 20 2016 + Aug 20 2015 - Mar 20 2016 + Aug 01 2016 @@ -2314,15 +2314,15 @@ myMenu63.width = 256; - 126 + 127 - 1 + 1 - Annual subscription domain + Monthly anniversary phone x4 @@ -2342,11 +2342,11 @@ myMenu63.width = 256; - $25.00 + $60.00 - annually + monthly @@ -2354,11 +2354,11 @@ myMenu63.width = 256; - Aug 20 2015 + Feb 20 2016 - Aug 01 2016 + Mar 20 2016 @@ -2606,15 +2606,15 @@ myMenu63.width = 256; - 151 + 149 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -2630,11 +2630,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -2646,11 +2646,11 @@ myMenu63.width = 256; - Feb 21 2016 + Mar 01 2016 - Mar 21 2016 + Apr 01 2016 @@ -2679,15 +2679,15 @@ myMenu63.width = 256; - 149 + 150 - 1 + 1 - Monthly prorated broadband + Annual subscription domain @@ -2703,15 +2703,15 @@ myMenu63.width = 256; - $40.00 + $0.00 - $90.00 + $25.00 - monthly + annually @@ -2719,11 +2719,11 @@ myMenu63.width = 256; - Mar 01 2016 + Aug 21 2015 - Apr 01 2016 + Aug 01 2016 @@ -2752,15 +2752,15 @@ myMenu63.width = 256; - 150 + 151 - 1 + 1 - Annual subscription domain + Monthly anniversary phone x4 @@ -2780,11 +2780,11 @@ myMenu63.width = 256; - $25.00 + $60.00 - annually + monthly @@ -2792,11 +2792,11 @@ myMenu63.width = 256; - Aug 21 2015 + Feb 21 2016 - Aug 01 2016 + Mar 21 2016 @@ -3774,15 +3774,15 @@ myMenu63.width = 256; - 247 + 246 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -3802,11 +3802,11 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually @@ -3814,11 +3814,11 @@ myMenu63.width = 256; - Feb 18 2016 + Aug 18 2015 - Mar 18 2016 + Aug 01 2016 @@ -3847,15 +3847,15 @@ myMenu63.width = 256; - 246 + 247 - 1 + 1 - Annual subscription domain + Monthly anniversary phone x4 @@ -3875,11 +3875,11 @@ myMenu63.width = 256; - $25.00 + $60.00 - annually + monthly @@ -3887,11 +3887,11 @@ myMenu63.width = 256; - Aug 18 2015 + Feb 18 2016 - Aug 01 2016 + Mar 18 2016 @@ -3993,15 +3993,15 @@ myMenu63.width = 256; - 259 + 258 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -4021,11 +4021,11 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually @@ -4033,11 +4033,11 @@ myMenu63.width = 256; - Feb 15 2016 + Aug 15 2015 - Mar 15 2016 + Aug 01 2016 @@ -4066,15 +4066,15 @@ myMenu63.width = 256; - 258 + 259 - 1 + 1 - Annual subscription domain + Monthly anniversary phone x4 @@ -4094,11 +4094,11 @@ myMenu63.width = 256; - $25.00 + $60.00 - annually + monthly @@ -4106,11 +4106,11 @@ myMenu63.width = 256; - Aug 15 2015 + Feb 15 2016 - Aug 01 2016 + Mar 15 2016 @@ -4212,15 +4212,15 @@ myMenu63.width = 256; - 271 + 270 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -4240,11 +4240,11 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually @@ -4252,11 +4252,11 @@ myMenu63.width = 256; - Feb 19 2016 + Aug 19 2015 - Mar 19 2016 + Aug 01 2016 @@ -4285,15 +4285,15 @@ myMenu63.width = 256; - 270 + 271 - 1 + 1 - Annual subscription domain + Monthly anniversary phone x4 @@ -4313,11 +4313,11 @@ myMenu63.width = 256; - $25.00 + $60.00 - annually + monthly @@ -4325,11 +4325,11 @@ myMenu63.width = 256; - Aug 19 2015 + Feb 19 2016 - Aug 01 2016 + Mar 19 2016 @@ -4358,15 +4358,15 @@ myMenu63.width = 256; - 274 + 272 - 1 + 1 - Monthly prorated account + Annual subscription domain @@ -4382,15 +4382,15 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $25.00 - monthly + annually @@ -4398,11 +4398,11 @@ myMenu63.width = 256; - Mar 01 2016 + Aug 07 2015 - Apr 01 2016 + Aug 01 2016 @@ -4504,15 +4504,15 @@ myMenu63.width = 256; - 272 + 274 - 1 + 1 - Annual subscription domain + Monthly prorated account @@ -4528,15 +4528,15 @@ myMenu63.width = 256; - $0.00 + $20.00 - $25.00 + $30.00 - annually + monthly @@ -4544,11 +4544,11 @@ myMenu63.width = 256; - Aug 07 2015 + Mar 01 2016 - Aug 01 2016 + Apr 01 2016 @@ -4577,15 +4577,15 @@ myMenu63.width = 256; - 289 + 287 - 1 + 1 - Monthly prorated broadband + Monthly anniversary phone x4 @@ -4601,11 +4601,11 @@ myMenu63.width = 256; - $40.00 + $0.00 - $90.00 + $60.00 @@ -4617,11 +4617,11 @@ myMenu63.width = 256; - Mar 01 2016 + Feb 18 2016 - Apr 01 2016 + Mar 18 2016 @@ -4650,15 +4650,15 @@ myMenu63.width = 256; - 287 + 288 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -4674,11 +4674,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -4690,11 +4690,11 @@ myMenu63.width = 256; - Feb 18 2016 + Mar 01 2016 - Mar 18 2016 + Apr 01 2016 @@ -4723,15 +4723,15 @@ myMenu63.width = 256; - 288 + 289 - 1 + 1 - Monthly prorated account + Monthly prorated broadband @@ -4747,11 +4747,11 @@ myMenu63.width = 256; - $20.00 + $40.00 - $30.00 + $90.00 @@ -4796,15 +4796,15 @@ myMenu63.width = 256; - 307 + 305 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated broadband @@ -4820,11 +4820,11 @@ myMenu63.width = 256; - $0.00 + $40.00 - $60.00 + $90.00 @@ -4836,11 +4836,11 @@ myMenu63.width = 256; - Feb 08 2016 + Mar 01 2016 - Mar 08 2016 + Apr 01 2016 @@ -4869,15 +4869,15 @@ myMenu63.width = 256; - 305 + 306 - 1 + 1 - Monthly prorated broadband + Annual subscription domain @@ -4893,15 +4893,15 @@ myMenu63.width = 256; - $40.00 + $0.00 - $90.00 + $25.00 - monthly + annually @@ -4909,11 +4909,11 @@ myMenu63.width = 256; - Mar 01 2016 + Aug 08 2015 - Apr 01 2016 + Aug 01 2016 @@ -4942,15 +4942,15 @@ myMenu63.width = 256; - 306 + 307 - 1 + 1 - Annual subscription domain + Monthly anniversary phone x4 @@ -4970,11 +4970,11 @@ myMenu63.width = 256; - $25.00 + $60.00 - annually + monthly @@ -4982,11 +4982,11 @@ myMenu63.width = 256; - Aug 08 2015 + Feb 08 2016 - Aug 01 2016 + Mar 08 2016 @@ -5307,15 +5307,15 @@ myMenu63.width = 256; - 355 + 354 - 1 + 1 - Monthly anniversary phone x4 + Annual subscription domain @@ -5335,11 +5335,11 @@ myMenu63.width = 256; - $60.00 + $25.00 - monthly + annually @@ -5347,11 +5347,11 @@ myMenu63.width = 256; - Feb 09 2016 + Aug 09 2015 - Mar 09 2016 + Aug 01 2016 @@ -5380,15 +5380,15 @@ myMenu63.width = 256; - 354 + 355 - 1 + 1 - Annual subscription domain + Monthly anniversary phone x4 @@ -5408,11 +5408,11 @@ myMenu63.width = 256; - $25.00 + $60.00 - annually + monthly @@ -5420,11 +5420,11 @@ myMenu63.width = 256; - Aug 09 2015 + Feb 09 2016 - Aug 01 2016 + Mar 09 2016 @@ -5672,15 +5672,15 @@ myMenu63.width = 256; - 468 + 467 - 1 + 1 - Monthly prorated account + Monthly anniversary phone x4 @@ -5696,11 +5696,11 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $60.00 @@ -5712,11 +5712,11 @@ myMenu63.width = 256; - Mar 01 2016 + Feb 14 2016 - Apr 01 2016 + Mar 14 2016 @@ -5745,15 +5745,15 @@ myMenu63.width = 256; - 467 + 468 - 1 + 1 - Monthly anniversary phone x4 + Monthly prorated account @@ -5769,11 +5769,11 @@ myMenu63.width = 256; - $0.00 + $20.00 - $60.00 + $30.00 @@ -5785,11 +5785,11 @@ myMenu63.width = 256; - Feb 14 2016 + Mar 01 2016 - Mar 14 2016 + Apr 01 2016 @@ -5891,15 +5891,15 @@ myMenu63.width = 256; - 526 + 524 - 1 + 1 - Monthly prorated account + Annual subscription domain @@ -5915,15 +5915,15 @@ myMenu63.width = 256; - $20.00 + $0.00 - $30.00 + $25.00 - monthly + annually @@ -5931,11 +5931,11 @@ myMenu63.width = 256; - Mar 01 2016 + Aug 31 2015 - Apr 01 2016 + Aug 01 2016 @@ -6037,15 +6037,15 @@ myMenu63.width = 256; - 524 + 526 - 1 + 1 - Annual subscription domain + Monthly prorated account @@ -6061,15 +6061,15 @@ myMenu63.width = 256; - $0.00 + $20.00 - $25.00 + $30.00 - annually + monthly @@ -6077,11 +6077,11 @@ myMenu63.width = 256; - Aug 31 2015 + Mar 01 2016 - Aug 01 2016 + Apr 01 2016 diff --git a/FS-Test/share/output/view/cust_bill-pdf.cgi/invnum=681:notice_name=Invoice b/FS-Test/share/output/view/cust_bill-pdf.cgi/invnum=681:notice_name=Invoice deleted file mode 100644 index b78f160c304f86e9f4a8932ecd26ba1c6471f9f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 121868 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 z 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 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 new file mode 100644 index 000000000..48710db6f --- /dev/null +++ b/FS-Test/share/output/view/cust_bill-tex.cgi/invnum=681:notice_name=Invoice @@ -0,0 +1,288 @@ +%% file: Standard Multipage.tex +%% Purpose: Multipage bill template for e-Bills +%% +%% Created by Mark Asplen-Taylor +%% Asplen Management Ltd +%% www.asplen.co.uk +%% +%% Modified for Freeside by Kristian Hoffman +%% +%% Changes +%% 0.1 4/12/00 Created +%% 0.2 18/10/01 More fields added +%% 1.0 16/11/01 RELEASED +%% 1.2 16/10/02 Invoice number added +%% 1.3 2/12/02 Logo graphic added +%% 1.4 7/2/03 Multipage headers/footers added +%% n/a forked for Freeside; checked into CVS +%% + +\documentclass[letterpaper]{article} + +\usepackage{fancyhdr,lastpage,ifthen,array,longtable,afterpage,caption,multirow,bigstrut} +\usepackage{graphicx} % required for logo graphic +\usepackage[utf8]{inputenc} % multilanguage support +\usepackage[T1]{fontenc} + + +\addtolength{\voffset}{-0.0cm} % top margin to top of header +\addtolength{\hoffset}{-0.6cm} % left margin on page +\addtolength{\topmargin}{-1.25cm} +\setlength{\headheight}{2.0cm} % height of header +\setlength{\headsep}{1.0cm} +\setlength{\footskip}{1.0cm} % bottom of footer from bottom of text + +%\addtolength{\textwidth}{2.1in} % width of text +\setlength{\textwidth}{19.5cm} +\setlength{\textheight}{19.5cm} +\setlength{\oddsidemargin}{-0.9cm} % odd page left margin +\setlength{\evensidemargin}{-0.9cm} % even page left margin + +\LTchunksize=40 + +\renewcommand{\headrulewidth}{0pt} +\renewcommand{\footrulewidth}{1pt} + +\renewcommand{\footrule}{ +\ifthenelse{\equal{\thepage}{1}} + { + } + { + \vbox to 0pt{\rule{\headwidth}{\footrulewidth}\vss} + } +} + +\newcommand{\extracouponspace}{3.6cm} + +% Adjust the inset of the mailing address +\newcommand{\addressinset}[1][]{\hspace{1.0cm}} + +% Adjust the inset of the return address and logo +\newcommand{\returninset}[1][]{\hspace{-0.25cm}} + +% New command for address lines i.e. skip them if blank +\newcommand{\addressline}[1]{\ifthenelse{\equal{#1}{}}{}{#1\\}} + +% Inserts dollar symbol +\newcommand{\dollar}[1][]{\symbol{36}} + +% Remove plain style header/footer +\fancypagestyle{plain}{ + \fancyhead{} +} +\fancyhf{} + +% Define fancy header/footer for first and subsequent pages +\fancyfoot[C]{ + \ifthenelse{\equal{\thepage}{1}} + { % First page +\vspace{-\extracouponspace}\rule[0.5em]{\textwidth}{\footrulewidth}\\Detach and return this remittance form with your payment.\\ +\begin{tabular}{ll} +\begin{tabular}{ll} +\returninset +\begin{tabular}{ll} + \makebox{ \includegraphics{/usr/local/etc/freeside/cache.DBI:Pg:dbname=freeside/cust_bill.681.cM8FaNY6.eps}} & + \begin{minipage}[b]{5.5cm} +Freeside Test 3.8.1\\* +1234 Example Lane\\* +Exampleton, CA~~54321\\* + \end{minipage}\\ +\end{tabular}& +\begin{tabular}{r@{: }lr} +Invoice date & \textbf{Dec~26th,~2015} & \multirow{4}*{ +\makebox{ +\begin{minipage}[t]{7.0cm} +\textbf{Samara Towne}\\ +\addressline{Olson Inc} +\addressline{46706 Kadin Hill \#780} +\addressline{Trailer W 2-E} +\addressline{Owensboro, KS~~69113} +\addressline{} +\ +\end{minipage}}}\\ +Customer\#& \textbf{135} & \\ +Total Due & \textbf{0.00} & \\ +\rule{0pt}{2.25em}Amount Enclosed & \rule{2cm}{1pt}& \\ +\end{tabular}\\ +\rule{0pt}{1cm} &\\ +\end{tabular}\\ +\begin{tabular}{ll} +\addressinset \rule{0.5cm}{0cm} & +\makebox{ +\begin{minipage}[t]{7.0cm} +Freeside Test 3.8.1\\* +1234 Example Lane\\* +Exampleton, CA~~54321\\* +\end{minipage}} +\hfill +\end{tabular}\\ +\end{tabular}\\ \small{ +Freeside Test 3.8.1 + }\vspace{\extracouponspace} + } + { % ... pages + \small{ +Freeside Test 3.8.1 + } + } +} + +\fancyfoot[R]{ + \ifthenelse{\equal{\thepage}{1}} + { % First page + } + { % ... pages + \small{\thepage\ of \pageref{LastPage}} + } +} + +\fancyhead[L]{ + \ifthenelse{\equal{\thepage}{1}} + { % First page + \returninset + \makebox{ + \begin{tabular}{ll} + \includegraphics{/usr/local/etc/freeside/cache.DBI:Pg:dbname=freeside/cust_bill.681.cM8FaNY6.eps} & + \begin{minipage}[b]{5.5cm} +Freeside Test 3.8.1\\* +1234 Example Lane\\* +Exampleton, CA~~54321\\* + \end{minipage}\\ + \end{tabular} + } + } + { % ... 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. + } +} + +\fancyhead[R]{ + \ifthenelse{\equal{\thepage}{1}} + { % First page + \begin{tabular}{ccc} + Invoice date & Invoice \# & Customer \#\\ + \vspace{0.2cm} + \textbf{Dec~26th,~2015} & \textbf{681} & \textbf{135} \\\hline + \rule{0pt}{5ex} &~~ \huge{\textsc{Invoice}} & \\ + \vspace{-0.2cm} + & & \\\hline + \end{tabular} + } + { % ... pages + \small{ + \begin{tabular}{lll} + Invoice date & Invoice \# & Customer \#\\ + \textbf{Dec~26th,~2015} & \textbf{681} & \textbf{135}\\ + \end{tabular} + } + } +} + +\pagestyle{fancy} + + +%% Font options are: +%% bch Bitsream Charter +%% put Utopia +%% phv Adobe Helvetica +%% pnc New Century Schoolbook +%% ptm Times +%% pcr Courier + +\renewcommand{\familydefault}{phv} + + +% Commands for freeside table header... + +\newcommand{\FSdescriptionlength} { 8.2cm } +\newcommand{\FSdescriptioncolumncount} { 4 } +\newcommand{\FSunitcolumns}{ \makebox[2.5cm][r]{\textbf{~~Unit Price}} &\makebox[1.4cm]{\textbf{~Quantity}} & } + +\newcommand{\FShead}{ + \hline + \rule{0pt}{2.5ex} + \makebox[1.4cm]{} & + \multicolumn{\FSdescriptioncolumncount}{l}{\makebox[\FSdescriptionlength][l]{\textbf{Description}}}& + \FSunitcolumns + \makebox[1.6cm][r]{\textbf{Amount}} \\ + \hline +} + +% ...description... +\newcommand{\FSdesc}[5]{ + \multicolumn{1}{c}{\rule{0pt}{2.5ex}\textbf{#1}} & + \multicolumn{4}{l}{\textbf{#2}} & + \multicolumn{1}{r}{\textbf{#3}} & + \multicolumn{1}{r}{\textbf{#4}} & + + \multicolumn{1}{r}{\textbf{#5}}\\ +} +% ...extended description... +\newcommand{\FSextdesc}[1]{ + \multicolumn{1}{l}{\rule{0pt}{1.0ex}} & +%% \multicolumn{2}{l}{\small{~-~#1}}\\ +#1\\ +} +% ...and total line items. +\newcommand{\FStotaldesc}[2]{ + & \multicolumn{6}{l}{#1} & #2\\ +} + + +\begin{document} +% Headers and footers defined for the first page +\addressinset \rule{0.5cm}{0cm} +\makebox{ +\begin{minipage}[t]{7.0cm} +\vspace{0.25cm} +\textbf{Samara Towne}\\ +\addressline{Olson Inc} +\addressline{46706 Kadin Hill \#780} +\addressline{Trailer W 2-E} +\addressline{Owensboro, KS~~69113} +\addressline{} +\end{minipage}} +\hfill +\makebox{ +\begin{minipage}[t]{6.4cm} + +\begin{flushright} +\\ +~\\ +\end{flushright} +\end{minipage}} +\vspace{1.5cm} +% + +% +\section*{} +\captionsetup{singlelinecheck=false,justification=raggedright,font={Large,sc,bf}}\ifthenelse{\equal{\thepage}{1}}{\setlength{\LTextracouponspace}{\extracouponspace}}{\setlength{\LTextracouponspace}{0pt}}\begin{longtable}{cllllllr}\caption*{ Charges}\\\FShead\endfirsthead\multicolumn{7}{r}{\rule{0pt}{2.5ex}Continued from previous page}\\\FShead\endhead\multicolumn{7}{r}{\rule{0pt}{2.5ex}Continued on next page...}\\\endfoot\hline\FStotaldesc{\textbf{Total Charges}}{\textbf{\dollar 142.42}} +\FStotaldesc{Payment received 12/26/15}{$-$\dollar 142.42} +\FStotaldesc{\textbf{Balance Due}}{\textbf{\dollar 0.00}} +\hline\endlastfoot\hline +\FSdesc{}{Monthly prorated broadband Setup}{\dollar40.00}{1}{\dollar40.00}* +\FSextdesc{\multicolumn{6}{l}{\small{~~~Test svc\_broadband: IP:10.98.22.188, MAC:00007E436BF5}}}* +\FSdesc{}{Monthly prorated broadband (12/26/15 - 01/01/16)}{\dollar90.00}{1}{\dollar17.42}* +\FSextdesc{\multicolumn{6}{l}{\small{~~~Test svc\_broadband: IP:10.98.22.188, MAC:00007E436BF5}}}* +\FSextdesc{\multicolumn{6}{l}{\small{~~~Prorated (Dec 26 - Jan 01): \$17.42}}}* +\hline +\FSdesc{}{Annual subscription domain (12/26/15 - 12/01/16)}{\dollar25.00}{1}{\dollar25.00}* +\FSextdesc{\multicolumn{6}{l}{\small{~~~Test svc\_domain: botsford-mueller.com}}}* +\hline +\FSdesc{}{Monthly anniversary phone x4 (12/26/15 - 01/26/16)}{\dollar60.00}{1}{\dollar60.00}* +\FSextdesc{\multicolumn{6}{l}{\small{~~~Test svc\_phone: 152300260278657}}}* +\end{longtable} +\vfill +\begin{minipage}[t]{\textwidth} + %% +%% Add any customer specific notes in here +%% +\section*{\textsc{Notes}} +\begin{enumerate} +\item Please make your check payable to \textbf{Freeside Test 3.8.1}. +\item If you have any questions please email or telephone. +\end{enumerate} + \ifthenelse{\equal{\thepage}{1}}{\rule{0pt}{\extracouponspace}}{} +\end{minipage} +\end{document} + diff --git a/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=packages b/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=packages new file mode 100644 index 000000000..0526d153a --- /dev/null +++ b/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=packages @@ -0,0 +1,2225 @@ + + + + + Customer: Schowalter, Oswald + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
freeside + Freeside Test 3.8.1 + Logged in as test  logout
Preferences +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ Adv + +
+ + + + + +
+ +
+
+ Advanced + +
+ + + + + +
+ + + + + +
+ + Adv
+ +
+ + + + + +
+ +
+
+ Advanced + +
+ + + + + +
+ +
+
+ Advanced + +
+ + + + + +
+ + + + + + + + + +
+ + + Customer: Schowalter, Oswald + + + + + +
+ + + + + +
+ + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + New Qualification + + + | + Order new package + + + | + + +
+ + + + +
+ +One-time charge + + + + | + + Move services between packages + + + | + Bulk order and cancel packages + +

+ + + + + + + + + + + + + + + + +
+ + + + Package reports + | View Qualifications +
+ Service reports: + accounts
+ Usage reports: + CDRs +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PackageStatusContact/LocationServices
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Monthly prorated account + - + $20 setup, $30/monthly +
+ + + ( Change package ) + ( Discount ) + ( Customize ) +
+ + +
+
+ + + + ( Change quantity ) + + +
+ + + + ( Change sales person ) + + +
+ + ( Add invoice details ) + + + + ( Add comments ) + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Ordered Aug 4th, 2015
Active, billed monthly
Setup Oct 9th, 2015
Last bill Mar 1st, 2016
Next bill Apr 1st, 2016
+ + + ( Suspend now ) + ( Suspend later ) + ( Delay suspend ) +
+ ( Cancel now ) + ( Cancel later ) + + +
+
+ + ( Add contact ) + +
+ +
+ + Default service location
24866 VonRueden Roads
Floor 94 X
Crown Point CT 59629-7714 + +
+ + 38.5000000, -121.5000000 + + +map + + directions + +earth + + + + +
+ +
+ + ( Change location ) + ( Edit location ) + + +
+ + + + + + + + + + + + + + + + +
+ Test svc_acct + + + berta@example.com + + +
+ + Unprovision ) +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Monthly prorated broadband + - + $40 setup, $90/monthly +
+ + + ( Change package ) + ( Discount ) + ( Customize ) +
+ + +
+
+ + + + ( Change quantity ) + + +
+ + + + ( Change sales person ) + + +
+ + ( Add invoice details ) + + + + ( Add comments ) + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Ordered Aug 4th, 2015
Active, billed monthly
Setup Oct 9th, 2015
Last bill Mar 1st, 2016
Next bill Apr 1st, 2016
+ + + ( Suspend now ) + ( Suspend later ) + ( Delay suspend ) +
+ ( Cancel now ) + ( Cancel later ) + + +
+
+ + ( Add contact ) + +
+ +
+ + Default service location
24866 VonRueden Roads
Floor 94 X
Crown Point CT 59629-7714 + +
+ + 38.5000000, -121.5000000 + + +map + + directions + +earth + + + + +
+ +
+ + ( Change location ) + ( Edit location ) + + +
+ + + + + + + + + + + + + + + + +
+ Test svc_broadband + + + IP:10.212.50.247, MAC:0000911C4815 + + +
+ + ping ) + + + Unprovision ) +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Annual subscription domain + - + $25/annually +
+ + + ( Change package ) + ( Discount ) + ( Customize ) +
+ + +
+
+ + + + ( Change quantity ) + + +
+ + + + ( Change sales person ) + + +
+ + ( Add invoice details ) + + + + ( Add comments ) + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Ordered Aug 4th, 2015
Active, billed annually
Setup Oct 9th, 2015
Last bill Oct 9th, 2015
Next bill Oct 1st, 2016
+ + + ( Suspend now ) + ( Suspend later ) + ( Delay suspend ) +
+ ( Cancel now ) + ( Cancel later ) + + +
+
+ + ( Add contact ) + +
+ +
+ + Default service location
24866 VonRueden Roads
Floor 94 X
Crown Point CT 59629-7714 + +
+ + 38.5000000, -121.5000000 + + +map + + directions + +earth + + + + +
+ +
+ + ( Change location ) + ( Edit location ) + + +
+ + + + + + + + + + + + + + + + +
+ Test svc_domain + + + waters-turner.com + + +
+ + Unprovision ) +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + Test one-time charge + - + $100.00 - $100.00 one-time +
+ + + ( Modify one-time charge ) + ( Discount ) +
+ +
+
+ + + +
+ + + + ( Change sales person ) + + +
+ + ( Add invoice details ) + + + + ( Add comments ) + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Ordered Mar 2nd, 2016
One-time charge
Billed Mar 2nd, 2016
+
+ + ( Add contact ) + +
+ +
+ + Default service location
24866 VonRueden Roads
Floor 94 X
Crown Point CT 59629-7714 + +
+ + 38.5000000, -121.5000000 + + +map + + directions + +earth + + + + +
+ +
+ + ( Change location ) + ( Edit location ) + + +
+ + + + +
+
+ +
+ + + + + + + + + + + +
+
+ + + diff --git a/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=payment_history b/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=payment_history new file mode 100644 index 000000000..98e55b0f0 --- /dev/null +++ b/FS-Test/share/output/view/cust_main.cgi/custnum=2:show=payment_history @@ -0,0 +1,1249 @@ + + + + + Customer: Schowalter, Oswald + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
freeside + Freeside Test 3.8.1 + Logged in as test  logout
Preferences +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+ Adv + +
+ + + + + +
+ +
+
+ Advanced + +
+ + + + + +
+ + + + + +
+ + Adv
+ +
+ + + + + +
+ +
+
+ Advanced + +
+ + + + + +
+ +
+
+ Advanced + +
+ + + + + +
+ + + + + + + + + +
+ + + Customer: Schowalter, Oswald + + + + + +
+ + + + + +
+ + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + Enter check payment + + | + Enter cash payment + + +
+ + + Process credit card payment + + | + Process electronic check (ACH) payment + + + +
+ + + + Enter credit + | + Credit line items +
+ + + + Enter check refund + + | + Enter cash refund + + + + +
+ + Download typeset statement PDF +
+ Invoice reports +
+ + + + + View tax exemptions + + + +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
DateDescriptionInvoicePaymentIn-house CreditRefundBalance
+ + 10/09/2015 + + + + Open Invoice #180 (Balance 174.03) + + + $174.03 + + + + + + + + $174.03 +
+ + 11/01/2015 + + + + Open Invoice #238 (Balance 120.00) + + + $120.00 + + + + + + + + $294.03 +
+ + 12/01/2015 + + + + Open Invoice #444 (Balance 120.00) + + + $120.00 + + + + + + + + $414.03 +
+ + 01/01/2016 + + + + Open Invoice #711 (Balance 120.00) + + + $120.00 + + + + + + + + $534.03 +
+ + 02/01/2016 + + + + Open Invoice #1040 (Balance 120.00) + + + $120.00 + + + + + + + + $654.03 +
+ + 03/01/2016 + + + + Open Invoice #1392 (Balance 120.00) + + + $120.00 + + + + + + + + $774.03 +
+ + 03/02/2016 + + + + Open Invoice #1585 (Balance 100.00) + + + $100.00 + + + + + + + + $874.03 +
+
+ + + + + + + + + +
+
+ + + diff --git a/FS-Test/share/ui_tests b/FS-Test/share/ui_tests index 9f781c945..8292ae521 100644 --- a/FS-Test/share/ui_tests +++ b/FS-Test/share/ui_tests @@ -4,12 +4,12 @@ search/cust_bill.html?OPEN90_date search/cust_bill.html?date 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 +search/cust_pay.html?magic=_date&unapplied=0&beginning=01%2F01%2F2016&agentnum=1&order_by=paynum graph/cust_pkg.html?start_month=4&start_year=2015&end_month=3&end_year=2016 -search/cust_pkg_churn.html?agentnum=&status=setup&begin=1438412400&end=1441090800 -search/cust_pkg.cgi?pkgnum +search/cust_pkg_churn.html?agentnum=&status=setup&begin=1438412400&end=1441090800&order_by=cust_pkg.pkgnum +search/cust_pkg.cgi?keywords=pkgnum&order_by=pkgnum search/cust_pkg_summary.cgi?beginning=02%2F01%2F2016&ending=02%2F28%2F2016&classnum=0 -search/cust_pkg.cgi?magic=bill&classnum=0&setup_ending=10%2F31%2F2015&pkgpart=5&pkgpart=2 +search/cust_pkg.cgi?magic=bill&classnum=0&setup_ending=10%2F31%2F2015&pkgpart=5&pkgpart=2&order_by=pkgnum search/h_cust_pkg.html?classnum=0&status=active,suspended&date=1454313600&pkgpart=2 browse/part_svc.cgi?orderby=active search/unprovisioned_services.html @@ -41,8 +41,16 @@ view/cust_main.cgi?custnum=135&show=change_history # invoice view view/cust_bill.cgi?681 -view/cust_bill-pdf.cgi?invnum=681¬ice_name=Invoice +view/cust_bill-tex.cgi?invnum=681¬ice_name=Invoice # package configuration browse/part_pkg.cgi?active=1 edit/part_pkg.cgi?2 + +# one-time charge (cust#2) +edit/quick-charge.html?custnum=2 +edit/process/quick-charge.cgi?amount=100.00&custnum=2&pkg=Test%20one-time%20charge&quantity=1&bill_now=1 +# check that the charge was created and billed +view/cust_main.cgi?custnum=2&show=packages +view/cust_main.cgi?custnum=2&show=payment_history + -- 2.11.0