Results 1 to 8 of 8
  1. #1
    Join Date
    Jul 2004
    Location
    Las Vegas
    Posts
    477
    Plugin Contributions
    0

    Default Admin > Reports > Sales Tax Report

    Hello,

    I have an idea if anyone can make it which shouldn't be very hard. I believe it would be just a MySQL query and a couple of small php files to show the output in the admin.

    The idea:

    It would be nice if there was a report that could generate all sales that had sales taxes on them based on your tax zones. I have to pay taxes each month to the state of nevada for my company and I had to go through the sales one by one to find all nevada orders.

    Your all thinking why dont you go through the actual print out of the orders, but I have hndreds of orders and some get missed placed in the shuffle by me or one of my employees so I have to verify the numbers.

    So that is why I think the report should just pull up the person name gross sales and taxes for the order almost like the who online report

    I will make an attempt at it but I am no PHPer...

    Thank you,

    Batteryman
    User of zencart

  2. #2
    Join Date
    Jan 2007
    Posts
    24
    Plugin Contributions
    0

    Default Re: Admin > Reports > Sales Tax Report

    Did you ever get a report for this?

  3. #3
    Join Date
    Mar 2007
    Location
    Seattle, WA
    Posts
    159
    Plugin Contributions
    0

    Default Re: Admin > Reports > Sales Tax Report

    This isn't a report but it may make your life easier until one becomes available. If you go into myPHP admin and run the following query in your ZenCart data base (adjusting the table for any prefix you may have) you will get the information that you are looking for. It should at least be faster then going through the orders one by one in admin .

    Code:
     
    SELECT
    orders_id, billing_state, order_total, order_tax
    FROM
    orders
    WHERE
    order_tax > 0

  4. #4
    Join Date
    Mar 2007
    Location
    Seattle, WA
    Posts
    159
    Plugin Contributions
    0

    Default Re: Admin > Reports > Sales Tax Report

    On second thought, this may work better

    Code:
     
    SELECT
    orders_id, date_purchased, billing_state, order_total, order_tax
    FROM
    orders
    WHERE
    order_tax > 0
    AND
    date_purchased > '2007-05-01 00:00:00'
    Adjusting the date_purchased condition to only show the month that you are interested in.

    You could also add the following to it to limit it to only one month. It all depends on your needs.
    Code:
    AND
    date_purchased < '2007-06-01 00:00:00'

  5. #5
    Join Date
    Jul 2004
    Location
    Las Vegas
    Posts
    477
    Plugin Contributions
    0

    Default Re: Admin > Reports > Sales Tax Report

    Thank you so much. I will definetly use this.

    I will try to use the mysql query and add it into a php file to make it an option in my admin.

    will give to contributions with you as an contributor if I get it made.


    Batteryman (avel)
    User of zencart

  6. #6
    Join Date
    May 2006
    Posts
    134
    Plugin Contributions
    0

    help question Re: Admin > Reports > Sales Tax Report

    Hey Guys,

    I really need to see which orders were taxed and how much tax was charged?

    Not really sure how to use that mysql query, I have phpmyadmin with godaddy, I guess I log in there and then???

    Anyone made a PHP file or module yet ??
    ApeShop.com - Mobile Cell Phones, Digital Cameras, Camcorders, Lenses, iPods, PSPs, Watches & more!
    http://www.apeshop.com/

  7. #7
    Join Date
    Jan 2004
    Posts
    66,391
    Blog Entries
    7
    Plugin Contributions
    81

    Default Re: Admin > Reports > Sales Tax Report

    If you have Sales Report installed, you can run a report on all sales, and export it to CSV, and sort on Tax Amount.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  8. #8
    Join Date
    Sep 2006
    Posts
    53
    Plugin Contributions
    0

    Default Re: Admin > Reports > Sales Tax Report

    Hello Dr. Byte,

    Unfortunately, the Sales Report, groups the taxes.

    What I'm looking for now is a report that will break down the taxes, how much on federal, how much on regional, etc...

    But the sql idea sounds pretty good.

    Ray

 

 

Similar Threads

  1. Sales tax Report by State
    By mmwilcox in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 27 Jun 2011, 01:29 PM
  2. Sales Tax Reports?
    By kstew923 in forum General Questions
    Replies: 5
    Last Post: 15 Apr 2011, 03:17 AM
  3. Year end sales reports for tax purposes?
    By SmokyOkie in forum General Questions
    Replies: 2
    Last Post: 15 Feb 2011, 05:14 AM
  4. Sales Tax Summary Report
    By fred_artemis in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 25 Mar 2008, 02:54 PM
  5. Sales Report / Tax Issue
    By urbankaiote in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 3
    Last Post: 23 Oct 2007, 09:51 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR