Announcement

Collapse
No announcement yet.

Business to Business sales tax exemption.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Business to Business sales tax exemption.

    Is there a built in way to do this now to is the Weiland module still needed?
    Ray Yates
    "If I have seen further, it is by standing on the shoulders of giants."
    --- Sir Isaac Newton

    #2
    not yet, you have to use the Weiland module :)
    Andreas Toman
    PCINET, LLC

    Miva Merchant Design, Development, Integration & Support
    We built over 200 Miva Merchant stores!
    Miva shopping cart design & integration service and see our Portfolio!


    e-mail: [email protected]
    web: www.pcinet.com
    LinkedIn: Andreas Toman
    phone: (786) 250-2056 (Miami, FL)

    Comment


      #3
      Don't know if it would be worth it, but this would be quite easy to do either via custom module, or possibly just the built in SMT functions. You could use either price/avail groups or even the "business" account system. These would give you perhaps greater flexibility about how to implement such as system.
      Bruce Golub
      Phosphor Media - "Your Success is our Business"

      Improve Your Customer Service | Get MORE Customers | Edit CSS/Javascript/HTML Easily | Make Your Site Faster | Get Indexed by Google | Free Modules | Follow Us on Facebook
      phosphormedia.com

      Comment


        #4
        You can do it with a custom customer field and a post action on the OSEL page.

        In the post action check if the customer has a taxid

        Code:
        <mvt:item name="customfields" param="Read_Customer_ID( g.basket:cust_id, 'taxid', g.taxid )" />
        and if true rewrite the s01_basketItems table taxable field to 0.

        Code:
        UPDATE s01_BasketItems SET taxable = 0 WHERE basket_id = ?

        http://www.alphabetsigns.com/

        Comment

        Working...
        X