Re: [Emerald] project for the day

PowerNet ( (no email) )
Mon, 07 Feb 2000 17:12:50 -0500

What does this script do?

*********** REPLY SEPARATOR ***********

On 2/7/00, at 3:17 PM, keitenmiller@hughestech.net wrote:

>This is what I came up with...With help from Dale
>If anyone knows of anyways to clean this up, Please let us know...
>Ken
>
>declare @begindate char(10), @enddate char(10)
>set nocount on
>select @begindate =3D '01/01/2000'
>select @enddate =3D '01/31/2000'
>set nocount off
>
>
>Select TaxID, Tax, Tax2, Description from taxes /* List TaxID and
>Description */
>
>Select "Taxes Invoiced Summary for Month of February 2000" /* Must Change
>Mannually */
>
>Select ii.TaxID, beforetax=3Dsum(ii.amount*ii.quantity),
>taxes=3Dsum(ii.tax)+sum(ii.tax2),
>total=3Dsum(ii.amount*ii.quantity)+sum(ii.tax)+sum(ii.tax2)
>From Invoices i, InvoiceItems ii
>Where i.InvoiceID =3D ii.InvoiceID
>and i.Type <> "VOID"
>and i.Date between @begindate and @enddate
>Group By TaxID
>Order By TaxID
>
>Select "Taxes Payed Summary"
>
>Select ii.TaxID, beforetax=3Dsum(ii.amount*ii.quantity),
>taxes=3Dsum(ii.tax)+sum(ii.tax2),
>total=3Dsum(ii.amount*ii.quantity)+sum(ii.tax)+sum(ii.tax2)
>From Invoices i, InvoiceItems ii
>Where i.InvoiceID =3D ii.InvoiceID
>and ii.PaymentID <> null
>and i.Date between @begindate and @enddate
>Group By TaxID
>Order By TaxID
>
>
>With the print out of:
>
>TaxID Tax Tax2 Description
>----------- ------------------------ ------------------------=
--------------
>------------------
>1 6.25 0.0 Illinois
>2 5.0 0.0 Wisconsin
>3 5.0 0.5 Walworth Co
>Wisconsin
>4 0.0 0.0 Exempt
>5 0.0 0.0 Resale
>
>(5 row(s) affected)
>
>
>-------------------------------------------------
>Taxes Invoiced Summary for Month of February 2000
>
>(1 row(s) affected)
>
>TaxID beforetax taxes total
>----------- -------------------------- --------------------------=
----------
>----------------
>(null) #####.## #####.## #####.##
>1 #####.## #####.## #####.##
>2 #####.## #####.## #####.##
>4 #####.## #####.## #####.##
>
>(4 row(s) affected)
>
>
>-------------------
>Taxes Payed Summary
>
>(1 row(s) affected)
>
>TaxID beforetax taxes total
>----------- -------------------------- --------------------------=
----------
>----------------
>(null) #####.## #####.## #####.##
>1 #####.## #####.## #####.##
>2 #####.## #####.## #####.##
>4 #####.## #####.## #####.##
>
>(4 row(s) affected)
>
>
>
>
>
>
>
>For more information about this list (including removal) go to:
>http://www.iea-software.com/support/maillists/liststart

For more information about this list (including removal) go to:
http://www.iea-software.com/support/maillists/liststart