Announcement

Collapse
No announcement yet.

Printable Quotation

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

    Printable Quotation

    Is there a quick way to implement Printable quotation right from a filled cart?

    If not, is there a module ?
    or does any one have a documentation/link/code on how to implement this?

    What we want is the user will fill the cart with what they want. Just before check out, they can click a "print" button which would bring up a printable screen which can be customized. User should be able t print it.

    Thanks

    Ajay

    #2
    Re: Printable Quotation

    As a low tech alternative we have customers fill their basket and checkout via the PO option using 99999 for the number. It comes to us and we key it in to our order system.
    Keith Oratz
    PrepareSmart, LLC - Emergency Preparedness Supplies and Professional Grade Search and Rescue Gear
    www.preparesmart.com

    Comment


      #3
      Re: Printable Quotation

      You could fairly easily just create a print button anywhere you want:

      <form><input type="button" value="Print Page" onClick="window.print()"></form>

      Then, setup that page with specific Print styles, including printing text that is not seen unless they are printing. For example, in your css file create style like:

      @media print {

      .noPrint { display:none; }
      .printOnly {display:block}

      }


      Now, add printOnly class to containers that have information about the quote or even label the page 'quote', then add noPrint to divs you don't want printed such as the navigation bar, category tree etc.
      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

      Working...
      X