Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2007
    Location
    California
    Posts
    345
    Plugin Contributions
    0

    Default Electronic Invoicing

    Is there an add-on for an "electronic invoicing" option? In the nearly 7 years I used ZC, I have had perhaps 6 orders pay with PayPal. I would like to offer an electronic invoice through my alternate card processor, perhaps even replacing the "check/money order" option which no one has used. I considered changing the option to read "Electronic Invoice" but the blurb in the order confirmation proving an address for payment would also need to be removed.

    Thanks,
    Cheryl

  2. #2
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,511
    Plugin Contributions
    126

    Default Re: Electronic Invoicing

    Look in the plugins area at the top of the page; there's a contribution called "Invoice" that you might try.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  3. #3
    Join Date
    Jan 2007
    Location
    California
    Posts
    345
    Plugin Contributions
    0

    Default Re: Electronic Invoicing

    Thank you for directing me to this invoice add-on. I have not tried to install it or anything yet. I have a question based on the simple description.

    As I understand it, the module allows me to invoice customers that I place in an invoicing group. My question is: if I want all customers to be able to select the invoice option, I would move all customers into that group? If yes, how would I allow a new customer to have access to invoicing on their first purchase?

    Thanks

  4. #4
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,511
    Plugin Contributions
    126

    Default Re: Electronic Invoicing

    To remove the restriction that users must be in the invoice group, edit includes/modules/payment/invoice.php.
    Delete the function update_status (lines 47-71). Replace with:

    Code:
        function update_status() {
    // disable the module if the order only contains virtual products
          if ($this->enabled == true) {
            if ($order->content_type != 'physical') {
              $this->enabled = false;
            }   
          }   
        }
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

 

 

Similar Threads

  1. Duplicate invoicing
    By spleify in forum General Questions
    Replies: 2
    Last Post: 13 Oct 2010, 06:45 AM
  2. invoicing customers
    By kitcorsa in forum General Questions
    Replies: 4
    Last Post: 11 Aug 2010, 11:01 AM
  3. VAT Invoicing
    By kitcorsa in forum General Questions
    Replies: 1
    Last Post: 1 Apr 2010, 11:56 AM
  4. Partial invoicing
    By cajun in forum Managing Customers and Orders
    Replies: 2
    Last Post: 4 Dec 2009, 04:18 PM
  5. Complex invoicing
    By qubit in forum Managing Customers and Orders
    Replies: 2
    Last Post: 10 Mar 2007, 12:12 PM

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