AndrewMKP Posted January 20, 2009 Share Posted January 20, 2009 Good point, where do we receive updated files? Am I able to receive an updated version Juiced as you say you have made ammendments? Thanks, 0 Quote Link to comment Share on other sites More sharing options...
DIYWebHosting Posted February 12, 2009 Share Posted February 12, 2009 Just bought the bundle. How do I download these or will you email them? 0 Quote Link to comment Share on other sites More sharing options...
bettysue Posted February 20, 2009 Share Posted February 20, 2009 Do these clarify the product being invoiced unlike the current email invoices? thank you, betty 0 Quote Link to comment Share on other sites More sharing options...
jozeph Posted May 7, 2009 Share Posted May 7, 2009 Hi. I purchase this a long time ago and I would like to know where can I download updates to V4? 0 Quote Link to comment Share on other sites More sharing options...
InterServed Posted May 7, 2009 Share Posted May 7, 2009 Hi. I purchase this a long time ago and I would like to know where can I download updates to V4? Same question from me. 0 Quote Link to comment Share on other sites More sharing options...
wsa Posted May 8, 2009 Share Posted May 8, 2009 Same question 0 Quote Link to comment Share on other sites More sharing options...
Martin Posted May 9, 2009 Share Posted May 9, 2009 Let me ask/have the same question Hi. I purchase this a long time ago and I would like to know where can I download updates to V4? 0 Quote Link to comment Share on other sites More sharing options...
sparky Posted May 9, 2009 Share Posted May 9, 2009 I guess you guys would be better to contact him via his support on his website http://www.justjuiced.co.nz/accounts/contact.php 0 Quote Link to comment Share on other sites More sharing options...
juiced Posted May 14, 2009 Author Share Posted May 14, 2009 Hi Guys, Sorry i've not been recieving emails of these posts and hadnt check in a while hence the non reply. I noticed V4 is different and therefore our template needs ammendments, I'll get onto this shortly and will post updates here. Cheers 0 Quote Link to comment Share on other sites More sharing options...
kahless2k Posted May 16, 2009 Share Posted May 16, 2009 Much appreciated! When you update the invoice, will it be able to handle partial payments of invoices? In the current version, if a customer has two $50 invoices and pays $49 of one; the total due on the invoice still shows $100, instead of $51. Andrew 0 Quote Link to comment Share on other sites More sharing options...
ezyweb Posted May 26, 2009 Share Posted May 26, 2009 Hey juiced ... I bought your invoice/quote template pack last night and have submitted two support tickets and sent you two emails, but in more than 24 hours, there hasn't been a whisper of a reply. You've supplied these templates without a single word of documentation. Frankly, that's ridiculous. I'm not nearly as cluey about the code in the backend of WHMCS as I'd like to be, so without documentation or help, my only choice is to pay for you to customise them and install them> But that's a crazy way to support your customers when some simple instructions would see me able to handle this myself. Is there any chance I could get some kind of a response?? Kerry 0 Quote Link to comment Share on other sites More sharing options...
redrat Posted May 26, 2009 Share Posted May 26, 2009 I'm looking forward to your v4x releases of both templates soon. Keep up the good work! 0 Quote Link to comment Share on other sites More sharing options...
ezyweb Posted May 27, 2009 Share Posted May 27, 2009 Since juiced still hasn't bothered to respond to any of my requests for help, is there someone who uses these templates who might be able to help me with implementing them? Any help would be greatly appreciated. Kerry 0 Quote Link to comment Share on other sites More sharing options...
jozeph Posted May 27, 2009 Share Posted May 27, 2009 Justiced, please keep us updated about this issue. 0 Quote Link to comment Share on other sites More sharing options...
ezyweb Posted May 28, 2009 Share Posted May 28, 2009 An update guys .. nearly three days on, and not a single reply from Juiced to my emails, support tickets or this forum. And I can't even ring them from Australia because there 0800 hundred number in New Zealand won't accept International calls. Add to that, the invoice/receipt I received for these templates was from some company in Belgium. Looks like I've just thrown good money down the drain because, without help, I won't be able to use these templates. What a waste of time and money. 0 Quote Link to comment Share on other sites More sharing options...
kahless2k Posted June 1, 2009 Share Posted June 1, 2009 Juiced - Any update?? I am seriously looking at Sparky's invoice option because of the lack of communication here.. 0 Quote Link to comment Share on other sites More sharing options...
wsa Posted June 2, 2009 Share Posted June 2, 2009 That very true Kahless2k making peoples wait of Update 0 Quote Link to comment Share on other sites More sharing options...
ezyweb Posted June 2, 2009 Share Posted June 2, 2009 The only reason I didn't buy Sparky's invoice template was because it's a bit ordinary looking from a design perspective. But he is seriously good at providing support. It looks like my $43.00AUD has been thrown down the drain, unless I decide to buy Sparky's invoice in order to learn how to implement the Juiced templates. It's an expensive way of doing it but, since no-one here on these forums seems willing to offer advice or even a short tutorial on how to implement these invoice templates, it may be my only option. More than week on from spending my money, there is STILL no response from Juiced. I'm guessing my money is gone. 0 Quote Link to comment Share on other sites More sharing options...
wsa Posted June 13, 2009 Share Posted June 13, 2009 Same here I guess we lost the money 0 Quote Link to comment Share on other sites More sharing options...
ezyweb Posted June 13, 2009 Share Posted June 13, 2009 In the end, my only answer was to pay Sparky some money to have him fix up the code in the templates (which is apparently a bit of a mess), so now at least I can use them. But this is pathetic service on juiced's part. I reckon there's something very dodgy going on there though, since my tax invoice came from an ISP in Belgium (?!?) for a company based in New Zealand. What the ... ?? Anyway, once again, it's Sparky to the rescue. Thanks Steve! 0 Quote Link to comment Share on other sites More sharing options...
juiced Posted June 16, 2009 Author Share Posted June 16, 2009 To fix the total issue in V4... in html look for {php} $invoiceid = $this->_tpl_vars['invoiceid']; $clientsdetails = $this->_tpl_vars['clientsdetails']; $total = $this->_tpl_vars['total']; /*echo '<pre>' . print_r($clientsdetails) . '</pre>'; echo 'userid=' . $clientsdetails["userid"] . ' AND status="Unpaid" AND id<' . $invoiceid;*/ $result = select_query("tblinvoices","SUM(total)","userid='".$clientsdetails['userid']."' AND status='Unpaid' AND id<'".$invoiceid."'"); $data = mysql_fetch_array($result); $balancebroughtforward = format_as_currency($data[0]); $grandtotal = format_as_currency($data[0])+$total; $this->assign('balancebroughtforward',$balancebroughtforward); $this->assign('grandtotal',$grandtotal); {/php} Replace with {php} $invoiceid = $this->_tpl_vars['invoiceid']; $clientsdetails = $this->_tpl_vars['clientsdetails']; $total = $this->_tpl_vars['total']; /*echo '<pre>' . print_r($clientsdetails) . '</pre>'; echo 'userid=' . $clientsdetails["userid"] . ' AND status="Unpaid" AND id<' . $invoiceid;*/ $result = select_query("tblinvoices","SUM(total)","userid='".$clientsdetails['userid']."' AND status='Unpaid' AND id<'".$invoiceid."'"); $result2 = select_query("tblinvoices","SUM(total)","userid='".$clientsdetails['userid']."' AND status='Unpaid' AND id='".$invoiceid."'"); $data = mysql_fetch_array($result); $data2 = mysql_fetch_array($result2); $balancebroughtforward = format_as_currency($data[0]); $grandtotal = format_as_currency($data[0]+$data2[0]); $this->assign('balancebroughtforward',$balancebroughtforward); $this->assign('grandtotal',$grandtotal); {/php} 0 Quote Link to comment Share on other sites More sharing options...
juiced Posted June 16, 2009 Author Share Posted June 16, 2009 the above is for html version For PDF version.... Look for $result = select_query("tblinvoices","SUM(total)","userid='".$clientsdetails["userid"]."' AND status='Unpaid' AND id<'".$invoiceid."'"); $data = mysql_fetch_array($result); $balancebroughtforward = format_as_currency($data[0]); $grandtotal = format_as_currency($data[0])+$total; Replace with $result = select_query("tblinvoices","SUM(total)","userid='".$clientsdetails["userid"]."' AND status='Unpaid' AND id<'".$invoiceid."'"); $result2 = select_query("tblinvoices","SUM(total)","userid='".$clientsdetails['userid']."' AND status='Unpaid' AND id='".$invoiceid."'"); $data = mysql_fetch_array($result); $data2 = mysql_fetch_array($result2); $balancebroughtforward = format_as_currency($data[0]); $grandtotal = format_as_currency($data[0]+$data2[0]); 0 Quote Link to comment Share on other sites More sharing options...
juiced Posted June 16, 2009 Author Share Posted June 16, 2009 But also in version 4 the template file has been changed to invoicepdf.tpl Simply "copy / paste" the content from pdfconfig in between the {php} {/php} tags + do the above change and it should be fine. 0 Quote Link to comment Share on other sites More sharing options...
juiced Posted June 16, 2009 Author Share Posted June 16, 2009 Reason it stopped working is... the "total" value is no longer a numeric value it's a result of the prefix, value and suffix which is why it wouldnt calculate so we have to retrieve that value from the database. However it's not retrieving the suffix for the currency so maybe dont use it? for now anyway. 0 Quote Link to comment Share on other sites More sharing options...
kahless2k Posted June 18, 2009 Share Posted June 18, 2009 Does this address: 1 - If you apply a partial payment to the invoice you still see it as the entire amount being due. 2 - Batch PDF will only ever give you a single invoice instead of a large PDF with all the invoices the report should give. *edit: Just testd the batch invoice and no, still not working.* Also, one correction: For the HTML Template: Where you have: $this->assign('balancebroughtforward',$balancebroughtfor ward); Should be: $this->assign('balancebroughtforward',$balancebroughtforward); (no space before "ward);" Thank you Andrew 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.