Menu Content

Support

> Forums, FAQs & Paid Support
Welcome, Guest
Username Password: Remember me

Profile for FritzB001

  • OFFLINE
  • Time Zone: GMT +0:00
  • Local Time: 14:29
  • Posts: 17
  • Profile Views: 3224
  • Location: Unknown
  • Gender: Unknown
  • Birthdate: Unknown

Signature

Posts

Posts

emo
Perfect!
Thanks for the fast support. :-)
Integrating Pdf Down ...
Category: Customer Support
emo
I sender you ftp access information via Pavels E-Mail address (did not know how to send you a personal message via this board)
Integrating Pdf Down ...
Category: Customer Support
emo
Hi,

yes, I am editing components/com_virtuemart/views/orders/tmpl/list.php.

I don't know what you mean with "invoice-header"; pls. see the complete text of file in postings before.

I am on VM 2.0.6

Fritz
Integrating Pdf Down ...
Category: Customer Support
emo
Hi,

yes, I am sure.

Changed the wrong placement (thanks for that.. :-)) but had no effect on pdf in frontend.
Still not showing up

Fritz
Integrating Pdf Down ...
Category: Customer Support
emo
Hi,

I did and it is not working.

This is the complete code:


<?php
/**
*
* Orderlist
* NOTE: This is a copy of the edit_orderlist template from the user-view (which in turn is a slighly
* modified copy from the backend)
*
* @package VirtueMart
* @subpackage Orders
* @author Oscar van Eijk
* @link www.virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: list.php 5434 2012-02-14 07:59:10Z electrocity $
*/

// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
/* START: ARTIO VM INVOICE ICON INTEGRATION */
$helper =
JPATH_ADMINISTRATOR.DS.'components'.DS.'com_vminvoice'.DS.'helpers'.DS.'invoicehelper.php';
if (file_exists($helper))
include_once(JPATH_ADMINISTRATOR.DS.'components'.DS.'com_vminvoice'.DS.'helpers'.DS.
'invoicehelper.php');
/* END: ARTIO VM INVOICE ICON INTEGRATION */
?>
<h1><?php echo JText::_('COM_VIRTUEMART_ORDERS_VIEW_DEFAULT_TITLE'); ?></h1>
<?php
if (count($this->orderlist) == 0) {
//echo JText::_('COM_VIRTUEMART_ACC_NO_ORDER');
echo shopFunctionsF::getLoginForm(false,true);
} else {
?>
<div id="editcell">
<table class="adminlist" width="80%">
<!-- START: ARTIO VM INVOICE ICON INTEGRATION -->
<th>
<?php echo JText::_('COM_VIRTUEMART_INVOICE'); ?>
</th>
<!-- END: ARTIO VM INVOICE ICON INTEGRATION -->
<thead>
<tr>
<th>
<?php echo JText::_('COM_VIRTUEMART_ORDER_LIST_ORDER_NUMBER'); ?>
</th>
<th>
<?php echo JText::_('COM_VIRTUEMART_ORDER_LIST_CDATE'); ?>
</th>
<!--th>
<?php //echo JText::_('COM_VIRTUEMART_ORDER_LIST_MDATE'); ?>
</th -->
<th>
<?php echo JText::_('COM_VIRTUEMART_ORDER_LIST_STATUS'); ?>
</th>
<th>
<?php echo JText::_('COM_VIRTUEMART_ORDER_LIST_TOTAL'); ?>
</th>
</thead>
<?php
$k = 0;
foreach ($this->orderlist as $row) {
$editlink = JRoute::_('index.php?option=com_virtuemart&view=orders&layout=details&order_number=' . $row->order_number);
?>
<tr class="<?php echo "row$k"; ?>">
<td align="left">
<a href="<?php echo $editlink; ?>"><?php echo $row->order_number; ?></a>
</td>
<td align="left">
<?php echo vmJsApi::date($row->created_on,'LC4',true); ?>
</td>
<!--td align="left">
<?php //echo vmJsApi::date($row->modified_on,'LC3',true); ?>
</td -->
<td align="left">
<?php echo ShopFunctions::getOrderStatusName($row->order_status); ?>
</td>
<td align="left">
<?php echo $this->currency->priceDisplay($row->order_total); ?>
</td>
<!-- START: ARTIO VM INVOICE ICON INTEGRATION -->
<td align="center">
<?php if (class_exists('invoiceHelper') &&
invoiceHelper::getInvoiceNo($row->virtuemart_order_id)){?>
<a href="index.php?option=com_vminvoice&controller=invoices&task=pdf&cid=<?php
echo $row->virtuemart_order_id
?>" target="_blank">
<img src="<?php echo JURI::root()?>media/media/images/mime-icon-16/pdf.png">
</a>
<?php } ?>
</td>
<!-- END: ARTIO VM INVOICE ICON INTEGRATION -->
</tr>
<?php
$k = 1 - $k;
}
?>
</table>
</div>
<?php } ?>


Should be correct...
Integrating Pdf Down ...
Category: Customer Support
emo
Hi,

wether my vendor address nor the shipping address (different from buyer address) is shown.
Configuration settings (show "address label" and "show shipping address if different") are made correctly.

I noticed that if I set "always show shop buyer and shipping address" both are displayed but are the buyer address. Although they are different.

Can somebody help?

regards

Fritz
Vendor Adress and Sh ...
Category: Customer Support
emo
Thanks so much.
E-Mail with Userdata is on its way.
Pdf misses billing d ...
Category: Customer Support
emo
FritzB001 wrote:
I found out, that there is a relation to the safe path.

I just tried to leave that path empty and tested again. Now pfd are created.
Instead of that I get a warning message from the system that the safe part is empty but important... bla bla bla.

However. I can live with that for the moment. Maybe this is a help for someone.

If anybody can solve this problem (not by tricking like me) I would be really happy about an answer.

Regards

Fritz


Unfortunately I was wrong. It is not working. Everytime an order comes in I am unable to get correct pdf.
Generating them with VM-Invoice works, BUT only for manually created orders. Orders coming from the shop cannot be displayed correctly.

I am in urgent need of help (although this doesn´t obviously seem to be an VM invoice problem... but maybe someone has an idea)
Pdf misses billing d ...
Category: Customer Support
emo
I found out, that there is a relation to the safe path.

I just tried to leave that path empty and tested again. Now pfd are created.
Instead of that I get a warning message from the system that the safe part is empty but important... bla bla bla.

However. I can live with that for the moment. Maybe this is a help for someone.

If anybody can solve this problem (not by tricking like me) I would be really happy about an answer.

Regards

Fritz
Pdf misses billing d ...
Category: Customer Support
emo
Btw the "printing view" under VM works as it should and has all the details.

After dozens of tests I found out, that it works if I restore to system defaults BUT only till the next order comes in. After that I have the same problem again. Then restoring again... then next order... an here is my problem again.
Pdf misses billing d ...
Category: Customer Support
emo
Here the Screenshot
Pdf misses billing d ...
Category: Customer Support
emo
Did not work. I added the invoice that was created in a wrong way.

I am on your VM Invoice version from today (2.0.10), Joomla 2.5 and VM 2.0.6.

Really a big thanks for your help. I am in really big trouble with that problem
Pdf misses billing d ...
Category: Customer Support
emo
Hi,

thanks for that step by step guide. :-)
Because of your good explanation I am sure I did right.

But unfortunately it has no effect.
Or will it only affect new orders?

Regards

Fritz
Integrating Pdf Down ...
Category: Customer Support
emo
Found it myself:
Global Configuration --> Footer --> Show Signature: "no"
Copyright
Category: Customer Support
emo
Hi,

in new orders the pdf Details are wrong.
The whole amount and Discount code and so on is missing. It seems as if the pdf is created wrong and only the first lines appear.
Settings are (as far as i can see) correct.

Please help ASAP in this very urgent matter as I am not able to print invoices!

Regards

Fritz
Pdf misses billing d ...
Category: Customer Support
emo
Hi,

I read the documentation but that only works for older versions of VM.
How can I integrate the pdf download in users fronted in VM 2?!

Regards

Fritz
Integrating Pdf Down ...
Category: Customer Support
emo
Hi all,

does anyone know how to disable the note "Dieses Dokument wurde mit Hilfe von ARTIO VM Invoice - VirtueMart PDF Rechnungserstellung erstellt. www.artio.net/virtuemart-tools/vm-invoice-generator" in the pdf?

Regards

Fritz
Copyright
Category: Customer Support
More
User Login Empty