+ Reply to Thread
Results 1 to 3 of 3

Thread: report - breaking down taxes collected

  1. #1
    Registered User DryDiapersPlus's Avatar
    Join Date
    May 2011
    Posts
    54
    Squirrelcart version
    v3.3.0

    Post report - breaking down taxes collected

    Hi,

    Just wondering - SquirrelCart automatically adds on the sales tax (when instructed). For our reporting purposes at the end of the year - because the Government wants to collect those taxes from us that we collected - how do we print off a report detailing how much tax has been collected?

    Or do we have to open up each order - and write it down on a scrap piece of paper?

    Thanks

  2. #2
    Squirrelcart Staff Jamie's Avatar
    Join Date
    May 2002
    Posts
    6,829
    Squirrelcart version
    v3.3.7
    You would need a custom query for this. Click Tools > Database > Query in the control panel, paste the query in the field, and click the submit button.

    Code:
    SELECT SUM(Tax_Total) FROM Orders WHERE Order_Date BETWEEN '2011-01-01' AND '2011-12-31 23:59:59';
    This is going to include every order in your database for 2011, regardless of the order status.

  3. #3
    Registered User DryDiapersPlus's Avatar
    Join Date
    May 2011
    Posts
    54
    Squirrelcart version
    v3.3.0

    Talking

    Yea! Thank you - now I will just go back through my orders, and for any cancelled or refunded orders, will subtract the tax from the total amount that query gives me.

    Tammy

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts