After Customization PDF/HTML view problem
-
Hi there,
i customized your awesome plugin for our government calculate method. In html view everything seems normal: http://prntscr.com/luh13l
But when i look at pdf, 1 area changing please check: http://prntscr.com/luh4ii
Can you please tell me how am i solve that problem.
My invoice.php file is here:
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?> <?php do_action( 'wpo_wcpdf_before_document', $this->type, $this->order ); ?> <?php do_action( 'wpo_wcpdf_after_document_label', $this->type, $this->order ); ?> <table class="order-data-addresses"> <tr> <td class="address billing-address"> <!-- <h3><?php _e( 'Billing Address:', 'woocommerce-pdf-invoices-packing-slips' ); ?></h3> --> <?php do_action( 'wpo_wcpdf_before_billing_address', $this->type, $this->order ); ?> <?php $this->billing_address(); ?> <?php do_action( 'wpo_wcpdf_after_billing_address', $this->type, $this->order ); ?> <?php if ( isset($this->settings['display_email']) ) { ?> <div class="billing-email"><?php $this->billing_email(); ?></div> <?php } ?> <?php if ( isset($this->settings['display_phone']) ) { ?> <div class="billing-phone"><?php $this->billing_phone(); ?></div> <?php } ?> </td> <td class="address shipping-address"> <?php if ( isset($this->settings['display_shipping_address']) && $this->ships_to_different_address()) { ?> <h3><?php _e( 'Ship To:', 'woocommerce-pdf-invoices-packing-slips' ); ?></h3> <?php do_action( 'wpo_wcpdf_before_shipping_address', $this->type, $this->order ); ?> <?php $this->shipping_address(); ?> <?php do_action( 'wpo_wcpdf_after_shipping_address', $this->type, $this->order ); ?> <?php } ?> </td> <td class="order-data"> <table> <?php do_action( 'wpo_wcpdf_before_order_data', $this->type, $this->order ); ?> <?php if ( isset($this->settings['display_date']) ) { ?> <tr class="invoice-date"> <td><?php $this->invoice_date(); ?></td> </tr> <?php } ?> <?php do_action( 'wpo_wcpdf_after_order_data', $this->type, $this->order ); ?> </table> </td> </tr> </table> <?php do_action( 'wpo_wcpdf_before_order_details', $this->type, $this->order ); ?> <table class="order-details"> <tbody> <?php $items = $this->get_order_items(); if( sizeof( $items ) > 0 ) : foreach( $items as $item_id => $item ) : ?> <tr class="<?php echo apply_filters( 'wpo_wcpdf_item_row_class', $item_id, $this->type, $this->order, $item_id ); ?>"> <td class="product"> <?php $description_label = __( 'Description', 'woocommerce-pdf-invoices-packing-slips' ); // registering alternate label translation ?> <span class="item-name"><?php echo $item['name']; ?></span> <?php do_action( 'wpo_wcpdf_before_item_meta', $this->type, $item, $this->order ); ?> <span class="item-meta"><?php echo $item['meta']; ?></span> <dl class="meta"> <?php $description_label = __( 'SKU', 'woocommerce-pdf-invoices-packing-slips' ); // registering alternate label translation ?> <?php if( !empty( $item['sku'] ) ) : ?><dt class="sku"><?php _e( 'SKU:', 'woocommerce-pdf-invoices-packing-slips' ); ?></dt><dd class="sku"><?php echo $item['sku']; ?></dd><?php endif; ?> <?php if( !empty( $item['weight'] ) ) : ?><dt class="weight"><?php _e( 'Weight:', 'woocommerce-pdf-invoices-packing-slips' ); ?></dt><dd class="weight"><?php echo $item['weight']; ?><?php echo get_option('woocommerce_weight_unit'); ?></dd><?php endif; ?> </dl> <?php do_action( 'wpo_wcpdf_after_item_meta', $this->type, $item, $this->order ); ?> </td> <td class="quantity"><?php echo $item['quantity']; ?></td> <td><?php $fiyat = $item['order_price']; $fiyattemiz = substr($fiyat,107,-7); $hesap = str_replace(",",".",$fiyattemiz); $sonuc = $hesap - ($hesap * 18 /100); ?> <?php echo $sonuc; ?> TL</td></tr> <?php endforeach; endif; ?> <tr> <td>MNG KARGO</td> <td>1</td> <td><?php $kargo = $order->get_shipping_total(); $kargovergi = $kargo * 18 / 100; $kargovergisiz = $kargo - $kargovergi; echo $kargovergisiz; ?> TL</td> </tr> </tbody> <tfoot> <tr class="no-borders"> <td class="no-borders"> <div class="customer-notes"> <?php do_action( 'wpo_wcpdf_before_customer_notes', $this->type, $this->order ); ?> <?php if ( $this->get_shipping_notes() ) : ?> <h3><?php _e( 'Customer Notes', 'woocommerce-pdf-invoices-packing-slips' ); ?></h3> <?php $this->shipping_notes(); ?> <?php endif; ?> <?php do_action( 'wpo_wcpdf_after_customer_notes', $this->type, $this->order ); ?> </div> </td> <td class="no-borders" colspan="2"> <table class="totals"> <tfoot> <tr class="<?php echo $key; ?>"> <td class="no-borders"></td> <td class="price"><span class="totals-price"><span class="woocommerce-Price-currencySymbol"></span> <?php $toplam = $order->get_total(); $kdv = $toplam * 18 / 100; $yuvarla = 0.10; $hesap = $toplam - $kdv; echo $hesap; ?> TL</span></td> </tr> <tr class="<?php echo $key; ?>"> <td class="no-borders"></td> <td class="price"><span class="totals-price"><span class="woocommerce-Price-currencySymbol"></span><?php echo $kdv ?> TL</span></td> </tr> <tr class="<?php echo $key; ?>"> <td class="no-borders"></td> <td class="price"><span class="totals-price"><span class="woocommerce-Price-currencySymbol"></span><?php echo $hesap + $kdv ?> TL</span></td> </tr> </tfoot> </table> </td> </tr> </tfoot> </table> <?php do_action( 'wpo_wcpdf_after_order_details', $this->type, $this->order ); ?> <?php if ( $this->get_footer() ): ?> <div id="footer"> <?php $this->footer(); ?> </div><!-- #letter-footer --> <?php endif; ?> <?php do_action( 'wpo_wcpdf_after_document', $this->type, $this->order ); ?>Thank You.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘After Customization PDF/HTML view problem’ is closed to new replies.
