Birel34 Posted September 10, 2015 Share Posted September 10, 2015 (edited) Hallo und guten Abend zusammen Mir ist aufgefallen, dass bei dem lieferschein und bei der Rechnung nur ein Artikel erscheint auch wenn ein Kunde mehrer Artikel bestellt hat. Nun habe ich eine Bestellung getätigt mit 5 Artikeln: Die sind auch sichtbar wie Ihr im obigen Bild sehen könnt. Nun klicke ich auf Rechnung oder Liferschein und ein PDFD wird erzeugt: Wenn ich nun das PDF öffne und anschaue, wird nur ein Artikel angezeigt und auch nur der Gesamtpreis stimmt auch nicht. Bei diesem Beispiel hat er ein Betrag der nicht stimmt. Der Gesammtpreis müsste ja 2.535.- sein (Siehe Bild oben) Bei einer anderen Bestellung eines Kunden der auch 5 Artikel bestellt hat, wird der Preis des einen Artikel, dert auch angezeigt wird, angegeben. Noch zu sagen, iuch habe nur diese Dateien angepasst wegen dem Adressfeld "delivery-slip.addresses-tab" und "invoice.addresses-tab". Auch wenn ich die Originalen Dateien raufspiele, das gleiche. An was könnte das liegen? Besten DAnk für die Hilfe. Herzliche Grüsse und einen schönen Abend Rolando Edited September 11, 2015 by Birel34 (see edit history) Link to comment Share on other sites More sharing options...
eleazar Posted September 10, 2015 Share Posted September 10, 2015 Wie man sieht, hast du an deiner Rechnung gebastelt und auch die Artikel-Anzeige geändert.Hast du da vielleicht versehentlich eine Schleife in der invoice.product-tab.tpl entfernt? Link to comment Share on other sites More sharing options...
Birel34 Posted September 10, 2015 Author Share Posted September 10, 2015 Hallo und guten Abend Habe die beiden Dateien verglichen und ich finde keinen unterschied. Hier die Original-Datei: "delivery-slip.addresses-tab" {** 2007-2015 PrestaShop** NOTICE OF LICENSE** This source file is subject to the Academic Free License (AFL 3.0)* that is bundled with this package in the file LICENSE.txt.* It is also available through the world-wide-web at this URL:* http://opensource.org/licenses/afl-3.0.php* If you did not receive a copy of the license and are unable to* obtain it through the world-wide-web, please send an email* to [email protected] so we can send you a copy immediately.** DISCLAIMER** Do not edit or add to this file if you wish to upgrade PrestaShop to newer* versions in the future. If you wish to customize PrestaShop for your* needs please refer to http://www.prestashop.com for more information.** @author PrestaShop SA <[email protected]>* @copyright 2007-2015 PrestaShop SA* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)* International Registered Trademark & Property of PrestaShop SA*}<table id="addresses-tab" cellspacing="0" cellpadding="0"> <tr> <td width="33%"><span class="bold"> </span><br/><br/> {$order_invoice->shop_address} </td> {if !empty($invoice_address)} <td width="33%">{if $delivery_address}<span class="bold">{l s='Delivery Address' pdf='true'}</span><br/><br/> {$delivery_address} {/if} </td> <td width="33%"><span class="bold">{l s='Billing Address' pdf='true'}</span><br/><br/> {$invoice_address} </td> {else} <td width="66%">{if $delivery_address}<span class="bold">{l s='Billing & Delivery Address' pdf='true'}</span><br/><br/> {$delivery_address} {/if} </td> {/if} </tr></table> Hier die angepasste Datei: "delivery-slip.addresses-tab" {** 2007-2015 PrestaShop** NOTICE OF LICENSE** This source file is subject to the Academic Free License (AFL 3.0)* that is bundled with this package in the file LICENSE.txt.* It is also available through the world-wide-web at this URL:* http://opensource.org/licenses/afl-3.0.php* If you did not receive a copy of the license and are unable to* obtain it through the world-wide-web, please send an email* to [email protected] so we can send you a copy immediately.** DISCLAIMER** Do not edit or add to this file if you wish to upgrade PrestaShop to newer* versions in the future. If you wish to customize PrestaShop for your* needs please refer to http://www.prestashop.com for more information.** @author PrestaShop SA <[email protected]>* @copyright 2007-2015 PrestaShop SA* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)* International Registered Trademark & Property of PrestaShop SA*}<table id="addresses-tab" cellspacing="0" cellpadding="0"> <tr> <td width="58%"><span class="bold"> </span><br/><br/> {$order_invoice->shop_address} </td> {if !empty($invoice_address)} <td width="33%">{if $delivery_address}<span class="bold">{l s='Delivery Address' pdf='true'}</span><br/><br/> {$delivery_address} {/if} </td> <td width="33%"><span class="bold">{l s='Billing Address' pdf='true'}</span><br/><br/> {$invoice_address} </td> {else} <td width="66%">{if $delivery_address}<span class="bold">{l s='' pdf='true'}</span><span style="font-size: 6pt;">LifeStyle-Shop - Flawilerstr. 22 - 9604 Lütisburg</span><br/><br/> {$delivery_address} {/if} </td> {/if} </tr></table> Hier die Original-Datei: "invoice.addresses-tab" {** 2007-2015 PrestaShop** NOTICE OF LICENSE** This source file is subject to the Academic Free License (AFL 3.0)* that is bundled with this package in the file LICENSE.txt.* It is also available through the world-wide-web at this URL:* http://opensource.org/licenses/afl-3.0.php* If you did not receive a copy of the license and are unable to* obtain it through the world-wide-web, please send an email* to [email protected] so we can send you a copy immediately.** DISCLAIMER** Do not edit or add to this file if you wish to upgrade PrestaShop to newer* versions in the future. If you wish to customize PrestaShop for your* needs please refer to http://www.prestashop.com for more information.** @author PrestaShop SA <[email protected]>* @copyright 2007-2015 PrestaShop SA* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)* International Registered Trademark & Property of PrestaShop SA*}<table id="addresses-tab" cellspacing="0" cellpadding="0"> <tr> <td width="33%"><span class="bold"> </span><br/><br/> {if isset($order_invoice)}{$order_invoice->shop_address}{/if} </td> <td width="33%">{if $delivery_address}<span class="bold">{l s='Delivery Address' pdf='true'}</span><br/><br/> {$delivery_address} {/if} </td> <td width="33%"><span class="bold">{l s='Billing Address' pdf='true'}</span><br/><br/> {$invoice_address} </td> </tr></table> Hier die angepasste Datei: "invoice.addresses-tab" {** 2007-2015 PrestaShop** NOTICE OF LICENSE** This source file is subject to the Academic Free License (AFL 3.0)* that is bundled with this package in the file LICENSE.txt.* It is also available through the world-wide-web at this URL:* http://opensource.org/licenses/afl-3.0.php* If you did not receive a copy of the license and are unable to* obtain it through the world-wide-web, please send an email* to [email protected] so we can send you a copy immediately.** DISCLAIMER** Do not edit or add to this file if you wish to upgrade PrestaShop to newer* versions in the future. If you wish to customize PrestaShop for your* needs please refer to http://www.prestashop.com for more information.** @author PrestaShop SA <[email protected]>* @copyright 2007-2015 PrestaShop SA* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)* International Registered Trademark & Property of PrestaShop SA*}<table id="addresses-tab" cellspacing="0" cellpadding="0"> <tr> <td width="58%"><span class="bold"> </span><br/><br/> {if isset($order_invoice)}{$order_invoice->shop_address}{/if} </td> <td width="33%"><span class="bold"></span><br/><br/> {$invoice_address} </td> </tr></table> Darf ich Dich bitte diese mal anzuschauen? Ob Du da was findest? Besten Dank. Herzliche Grüsse Rolando Link to comment Share on other sites More sharing options...
eleazar Posted September 10, 2015 Share Posted September 10, 2015 Du meinst also, die Artikel werden im Adressfeld generiert? Oder wieso hast du das jetzt in epischer Breite gepostet, als ich die von der Originalrechnung abweichende Artikeldarstellung ansprach? Link to comment Share on other sites More sharing options...
Birel34 Posted September 10, 2015 Author Share Posted September 10, 2015 Hallo und Danke für die schnell Antwort... Sorry... jetzt verstehe ich Dich nicht ganz richtig... Ich habe nur in diesen zwei Dateien anpassung durchgeführt. Diese neuen Rechnungsformulare sind via PS-Update gekommen. Im weiteren ist mir noch was ganz anderes aufgefallen, bei genauerer Betrachtung des Ganzen und zwar wie folgt. Wenn ältere Bestellungen öffne, werden diese ganz korrekt dargestellt. Ein Artikel eine Lineie, mehrer Artikel mehrer Linien. Bei dieser Bestellung stimm einiges nicht und wieso, kann ich nicht nachvollziehen. Schau mal die bestätigung von PayPal an, Anzahl Artikel, Preise und Total-Prsie stimmen. Nun schauen wir uns mal das Bild aus Bestellungen im PrestaShop an dies selben Kunden: Hier werden fünf Artikel angezeigt. Also einer mehr. Und das stimmt nicht. Der oberste Artikel wurde nicht bestellt udn auch nicht über PayPal abegrechnet und wieso ist der im PS drin? (Aloe Vera Fr. 26.75) Und wenn ich jetzt den Liferschein anklicke und öffne als PDF sehe ich nur diesen Artikel drin (Aloe Vera). Die fünf bestellten Artikel nicht. Und wenn man die Preise zusammenzählt, stimmt die Summe mit der bazhalten ja nicht. Wenn man den ersten Artikel auf der l^Liste nicht dazuzählt dann schon. Wie kann sowas passieren? Danke für die Antwort im Voraus. Herzliche Grüsse Rolando Link to comment Share on other sites More sharing options...
Birel34 Posted September 10, 2015 Author Share Posted September 10, 2015 Sorry ich komme nochmals... Haben nun über "Kunden" und dann "Warenkörbe" den Warenkorb dieser Bestellung angeschaut und auch da ist das Produkt AloeVera nicht drin. Link to comment Share on other sites More sharing options...
Birel34 Posted September 11, 2015 Author Share Posted September 11, 2015 Wie von Geisterhand... Habe heute erneut drei Testeinkäufe durchgeführt und es geht, funktiniert erneut alles. Das Misterium ist immer noch, dass bei der Kundin einfach ein Artikel mehr drin ist alls sie bestellt hat. Na ja, das wissen die Götter... Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now