wsme Posted March 1, 2011 Share Posted March 1, 2011 Hi, I want to set up WHMCS so that I can invoice 2 separate company invoices from the same setup depending on which company the customer registered with. Is it possible to assign a customer so that their invoices show a different company name and logo? All the money from both companies goes into one bank account we don't need two copies of WHMCS. Thanks, Paul 0 Quote Link to comment Share on other sites More sharing options...
jeremyhaber Posted March 1, 2011 Share Posted March 1, 2011 With some clever coding in the invoicepdf.tpl file you should be able to change the invoice based on what company the client is using. This would have to be done using some sort of custom field in the clients account. So something like this should work for invoicing: if ($clientsdetails["customfields1"] == "Company1") { // Invoice code here for company 1... } else { // Invoice code here for company 2... } For more information on the invoicepdf page: http://wiki.whmcs.com/PDF_Invoice 0 Quote Link to comment Share on other sites More sharing options...
wsme Posted March 1, 2011 Author Share Posted March 1, 2011 Hi, Thats great, I will give it a go! Thanks 0 Quote Link to comment Share on other sites More sharing options...
rdavis Posted March 2, 2011 Share Posted March 2, 2011 Then what does Separate Invoices in the Client Groups have to do with anything? Thanks. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.