Файловый менеджер - Редактировать - /home/lmsyaran/public_html_back/public_html/administrator/components/com_hikashop/views/order/tmpl/invoice.php
Назад
<?php /** * @package HikaShop for Joomla! * @version 4.4.1 * @author hikashop.com * @copyright (C) 2010-2021 HIKARI SOFTWARE. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><div id="hikashop_invoice_main_div"> <div id="print" style="float:right"> <a class="btn btn-primary" href="#" onclick="document.getElementById('print').style.visibility='hidden';window.focus();window.print();return false;"> <i class="fa fa-print"></i> <?php echo JText::_('HIKA_PRINT'); ?> </a> </div> <br/> <table width="100%"> <tr> <td> <h1 style="text-align:center"> <?php if($this->invoice_type == 'full') { echo JText::_('INVOICE'); } else { echo JText::_('SHIPPING_INVOICE'); } ?> </h1> <br/> <br/> </td> </tr> <tr> <td> <div style="float:right;width:10em;padding-top:20px"> <?php if(!empty($this->element->order_invoice_created)) { echo JText::_('DATE').': '.hikashop_getDate($this->element->order_invoice_created,'%d %B %Y'); }else{ echo JText::_('DATE').': '.hikashop_getDate($this->element->order_created,'%d %B %Y'); } ?><br/> <?php if(!empty($this->element->order_invoice_number)) { echo JText::_('INVOICE').': '.$this->element->order_invoice_number; } else { echo JText::_('INVOICE').': '.@$this->element->order_number; } ?> </div> <p><?php echo $this->store_address; ?></p> </td> </tr> <tr> <td> <br/> <br/> <table width="100%"> <tr> <?php if($this->invoice_type=='full' && !empty($this->element->billing_address)) { ?> <td> <fieldset class="adminform" id="htmlfieldset_billing"> <legend style="background-color: #FFFFFF;"><?php echo JText::_('HIKASHOP_BILLING_ADDRESS'); ?></legend> <?php $addressClass = hikashop_get('class.address'); echo $addressClass->displayAddress($this->element->fields, $this->element->billing_address, 'order'); ?> </fieldset> </td> <?php } ?> <td> <?php if(!empty($this->element->order_shipping_id) && !empty($this->element->shipping_address)){ ?> <fieldset class="adminform" id="htmlfieldset_shipping"> <legend style="background-color: #FFFFFF;"><?php echo JText::_('HIKASHOP_SHIPPING_ADDRESS'); ?></legend> <?php if(empty($this->element->override_shipping_address)) { $addressClass = hikashop_get('class.address'); echo $addressClass->displayAddress($this->element->fields, $this->element->shipping_address, 'order'); } else { echo $this->element->override_shipping_address; } ?> </fieldset> <?php } ?> </td> </tr> </table> </td> </tr> <tr> <td> <br/> <fieldset class="adminform" id="htmlfieldset_products"> <legend style="background-color: #FFFFFF;"><?php echo JText::_('PRODUCT_LIST'); ?></legend> <table class="adminlist table table-striped" cellpadding="1" width="100%"> <?php $colspan = 4; ?> <thead> <tr> <th class="title" width="60%" colspan="2"> <?php echo JText::_('PRODUCT'); ?> </th> <?php if($this->config->get('show_code')) { $colspan++; ?> <th class="title" ><?php echo JText::_('CART_PRODUCT_CODE'); ?></th> <?php } ?> <?php $null = null; $type = 'display:back_shipping_invoice=1'; $shipping_invoice = 'shipping_'; if($this->invoice_type=='full'){ $type = 'display:back_invoice=1'; $shipping_invoice = ''; } $weight = bccomp((float)$this->order->order_weight, 0, 3); $unit_weight = false; if($weight && $this->config->get('show_'.$shipping_invoice.'invoice_unit_weight',0)) $unit_weight = true; $total_weight = false; if($weight && $this->config->get('show_'.$shipping_invoice.'invoice_total_weight',0)) $total_weight = true; $order_weight = false; if($weight && $this->config->get('show_'.$shipping_invoice.'invoice_weight',0)) $order_weight = true; if(hikashop_level(1)){ $productFields = $this->fieldsClass->getFields($type,$null,'product'); if(!empty($productFields)) { $usefulFields = array(); foreach($productFields as $field){ $fieldname = $field->field_namekey; foreach($this->products as $product){ if(!empty($product->$fieldname)){ $usefulFields[] = $field; break; } } } $productFields = $usefulFields; if(!empty($productFields)) { foreach($productFields as $field){ $colspan++; ?> <th class="hikashop_order_item_name_title title" ><?php echo $this->fieldsClass->getFieldName($field); ?></th> <?php } } } } ?> <?php if($unit_weight) { $colspan++; echo '<th class="hikashop_order_item_unit_weight_title title">' . JText::_('PRODUCT_WEIGHT') . '</th>'; } if($this->invoice_type=='full') { ?> <th class="hikashop_order_item_unit_price_title title"><?php echo JText::_('UNIT_PRICE'); ?></th> <?php } ?> <th class="hikashop_order_item_quantity_title title titletoggle"><?php echo JText::_('PRODUCT_QUANTITY'); ?></th> <?php if($total_weight) { $colspan++; echo '<th class="hikashop_order_item_total_weight_title title titletoggle">' . JText::_('TOTAL_WEIGHT') . '</th>'; } if($this->invoice_type=='full') { ?> <th class="hikashop_order_item_total_price_title title titletoggle"><?php echo JText::_('PRICE'); ?></th> <?php } ?> </tr> </thead> <tbody> <?php $k = 0; $group = $this->config->get('group_options', 0); $imageHelper = hikashop_get('helper.image'); $width = (int)$this->config->get('cart_thumbnail_x', 50); $height = (int)$this->config->get('cart_thumbnail_y', 50); $image_options = array( 'default' => true, 'forcesize' => $this->config->get('image_force_size', true), 'scale' => $this->config->get('image_scale_mode','inside') ); foreach($this->order->products as $product) { if($group && $product->order_product_option_parent_id) continue; ?> <tr class="row<?php echo $k; ?>"> <td class="hikashop_order_item_image_value"> <?php $image_path = (!empty($product->images) ? @$product->images[0]->file_path : ''); $img = $imageHelper->getThumbnail($image_path, array('width' => $width, 'height' => $height), $image_options); if($img->success) { echo '<img class="hikashop_order_product_image" title="'.$this->escape(@$product->images[0]->file_description).'" alt="'.$this->escape(@$product->images[0]->file_name).'" src="'.$img->url.'"/>'; } ?> </td> <td class="hikashop_order_item_name_value"> <?php echo $product->order_product_name; ?> <p class="hikashop_order_product_custom_item_fields"> <?php if($group){ $display_item_price=false; foreach($this->order->products as $j => $optionElement){ if($optionElement->order_product_option_parent_id != $product->order_product_id) continue; if($optionElement->order_product_price > 0) { $display_item_price = true; } } if($display_item_price) { if($this->config->get('price_with_tax')) { echo ' '.$this->currencyHelper->format($product->order_product_price+$product->order_product_tax,$this->order->order_currency_id); } else { echo ' '.$this->currencyHelper->format($product->order_product_price,$this->order->order_currency_id); } } } if(hikashop_level(2)) { $itemFields = $this->fieldsClass->getFields($type, $product, 'item'); if(!empty($itemFields)) { foreach($itemFields as $field) { $namekey = $field->field_namekey; if(empty($product->$namekey) && (!isset($product->$namekey) || !strlen($product->$namekey))) { continue; } echo '<p class="hikashop_order_item_'.$namekey.'">'.$this->fieldsClass->getFieldName($field).': '.$this->fieldsClass->show($field,$product->$namekey).'</p>'; } } } echo '</p>'; if($group) { foreach($this->order->products as $j => $optionElement) { if($optionElement->order_product_option_parent_id != $product->order_product_id) continue; $product->order_product_weight += $optionElement->order_product_weight; $product->order_product_price +=$optionElement->order_product_price; $product->order_product_tax +=$optionElement->order_product_tax; $product->order_product_total_price+=$optionElement->order_product_total_price; $product->order_product_total_price_no_vat+=$optionElement->order_product_total_price_no_vat; ?> <p class="hikashop_order_option_name"><?php echo $optionElement->order_product_name; if($optionElement->order_product_price > 0) { if($this->config->get('price_with_tax')) { echo ' ( + '.$this->currencyHelper->format($optionElement->order_product_price+$optionElement->order_product_tax,$this->order->order_currency_id).' )'; }else{ echo ' ( + '.$this->currencyHelper->format($optionElement->order_product_price,$this->order->order_currency_id).' )'; } } ?></p> <?php } } if(!empty($product->extraData)) echo '<p class="hikashop_order_product_extra">' . (is_string($product->extraData) ? $product->extraData : implode('<br/>', $product->extraData)) . '</p>'; ?> </td> <?php if($this->config->get('show_code')) { echo '<td class="hikashop_order_item_code_value"><p class="hikashop_product_code_invoice">'.$product->order_product_code.'</p></td>'; } if(hikashop_level(1)) { if(!empty($productFields)) { foreach($productFields as $field){ $namekey = $field->field_namekey; $productData = @$this->products[$product->product_id]; ?> <td><?php if(!empty($productData->$namekey)) echo '<p class="hikashop_order_product_'.$namekey.'">'.$this->fieldsClass->show($field,$productData->$namekey).'</p>'; ?></td> <?php } } } if($unit_weight) { echo '<td class="hikashop_order_item_weight_value">' . rtrim(rtrim($product->order_product_weight,'0'),',.').' '.JText::_($product->order_product_weight_unit) . '</td>'; } if($this->invoice_type=='full'){ ?> <td class="hikashop_order_item_unit_price_value"><?php if($this->config->get('price_with_tax')){ echo $this->currencyHelper->format($product->order_product_price+$product->order_product_tax,$this->order->order_currency_id); }else{ echo $this->currencyHelper->format($product->order_product_price,$this->order->order_currency_id); } ?></td> <?php } ?> <td class="hk_center hikashop_order_item_quantity_value"><?php echo $product->order_product_quantity; ?></td> <?php if($total_weight) { echo '<td class="hikashop_order_item_total_weight_value">' . rtrim(rtrim($product->order_product_weight*$product->order_product_quantity,'0'),',.').' '.JText::_($product->order_product_weight_unit) . '</td>'; } ?> <?php if($this->invoice_type=='full') { ?> <td class="hikashop_order_item_total_price_value"><?php if($this->config->get('price_with_tax')){ echo $this->currencyHelper->format($product->order_product_total_price,$this->order->order_currency_id); }else{ echo $this->currencyHelper->format($product->order_product_total_price_no_vat,$this->order->order_currency_id); } ?></td> <?php } ?> </tr> <?php $k = 1 - $k; } ?> <?php if($this->invoice_type == 'full') { ?> <tr> <td style="border-top:2px solid #B8B8B8;" colspan="<?php echo $colspan; ?>" class="key"> <label><?php echo JText::_('SUBTOTAL'); ?></label> </td> <td style="border-top:2px solid #B8B8B8;"><?php if($this->config->get('price_with_tax')){ echo $this->currencyHelper->format($this->order->order_subtotal,$this->order->order_currency_id); }else{ echo $this->currencyHelper->format($this->order->order_subtotal_no_vat,$this->order->order_currency_id); } ?></td> </tr> <?php $taxes = $this->currencyHelper->round($this->order->order_subtotal - $this->order->order_subtotal_no_vat + $this->order->order_shipping_tax + $this->order->order_payment_tax - $this->order->order_discount_tax,$this->currencyHelper->getRounding($this->order->order_currency_id,true)); if($this->order->order_discount_price != 0) { ?> <tr> <td class="key" colspan="<?php echo $colspan; ?>"> <label><?php echo JText::_('HIKASHOP_COUPON'); ?></label> </td> <td><?php if($this->config->get('price_with_tax')){ echo $this->currencyHelper->format($this->order->order_discount_price*-1.0,$this->order->order_currency_id); }else{ echo $this->currencyHelper->format(($this->order->order_discount_price-@$this->order->order_discount_tax)*-1.0,$this->order->order_currency_id); } ?></td> </tr> <?php } if($this->order->order_shipping_price != 0 || ($this->config->get('price_with_tax') && $this->order->order_shipping_tax != 0)) { ?> <tr> <td class="key" colspan="<?php echo $colspan; ?>"> <label><?php echo JText::_('SHIPPING'); ?></label> </td> <td><?php if($this->config->get('price_with_tax')) { echo $this->currencyHelper->format($this->order->order_shipping_price, $this->order->order_currency_id); } else { echo $this->currencyHelper->format($this->order->order_shipping_price - @$this->order->order_shipping_tax, $this->order->order_currency_id); } ?></td> </tr> <?php } if(!empty($this->order->additional)) { $exclude_additionnal = explode(',', $this->config->get('order_additional_hide', '')); foreach($this->order->additional as $additional) { if(in_array($additional->order_product_name, $exclude_additionnal)) continue; ?> <tr> <td class="hikashop_order_additionall_title key" colspan="<?php echo $colspan; ?>"> <label><?php echo JText::_($additional->order_product_name); ?></label> </td> <td><?php if(!empty($additional->order_product_price)) { if($this->config->get('price_with_tax') && !empty($additional->order_product_tax)) $additional->order_product_price = (float)$additional->order_product_price + (float)$additional->order_product_tax; else $additional->order_product_price = (float)$additional->order_product_price; } if(!empty($additional->order_product_price) || empty($additional->order_product_options)) { echo $this->currencyHelper->format($additional->order_product_price, $this->order->order_currency_id); } else { echo $additional->order_product_options; } ?></td> </tr> <?php } } if($this->order->order_payment_price != 0 || ($this->config->get('price_with_tax') && $this->order->order_payment_tax != 0)) { ?> <tr> <td class="key" colspan="<?php echo $colspan; ?>"> <label><?php echo JText::_('HIKASHOP_PAYMENT'); ?></label> </td> <td><?php if($this->config->get('price_with_tax')) { echo $this->currencyHelper->format($this->order->order_payment_price, $this->order->order_currency_id); } else { echo $this->currencyHelper->format($this->order->order_payment_price - @$this->order->order_payment_tax, $this->order->order_currency_id); } ?></td> </tr> <?php } if($taxes != 0) { if($this->config->get('detailed_tax_display') && !empty($this->order->order_tax_info)){ foreach($this->order->order_tax_info as $tax) { ?> <tr> <td class="hikashop_order_tax_title key" colspan="<?php echo $colspan; ?>"> <label><?php echo hikashop_translate($tax->tax_namekey); ?></label> </td> <td class="hikashop_order_tax_value"><?php echo $this->currencyHelper->format($tax->tax_amount,$this->order->order_currency_id); ?></td> </tr> <?php } } else { ?> <tr> <td class="hikashop_order_tax_title key" colspan="<?php echo $colspan; ?>"> <label><?php echo JText::_('VAT'); ?></label> </td> <td class="hikashop_order_tax_value"><?php echo $this->currencyHelper->format($taxes,$this->order->order_currency_id); ?></td> </tr> <?php } } ?> <tr> <td class="key" colspan="<?php echo $colspan; ?>"> <label><?php echo JText::_('HIKASHOP_TOTAL'); ?></label> </td> <td><?php echo $this->currencyHelper->format($this->order->order_full_price,$this->order->order_currency_id); ?></td> </tr> <?php } ?> </tbody> </table> </fieldset> </td> </tr> <?php if($this->invoice_type == 'full') { $fieldsClass = hikashop_get('class.field'); $fields = $fieldsClass->getFields('display:invoice=1',$this->order,'order'); if(!empty($fields)) { ?> <tr> <td> <fieldset class="hikashop_order_custom_fields_fieldset"> <legend><?php echo JText::_('ADDITIONAL_INFORMATION'); ?></legend> <table class="hikashop_order_custom_fields_table adminlist" cellpadding="1" width="100%"> <?php foreach($fields as $fieldName => $oneExtraField) { ?> <tr class="hikashop_order_custom_field_<?php echo $fieldName;?>_line"> <td class="key"> <?php echo $this->fieldsClass->getFieldName($oneExtraField);?> </td> <td> <?php echo $this->fieldsClass->show($oneExtraField,@$this->order->$fieldName); ?> </td> </tr> <?php } ?> </table> </fieldset> </td> </tr> <?php } ?> <tr> <td> <?php if(!empty($this->shipping)) { echo '<p class="hikashpo_order_shipping_method">'.JText::_('HIKASHOP_SHIPPING_METHOD').' : '; if(is_string($this->order->order_shipping_method)) echo $this->shipping->getName($this->order->order_shipping_method, $this->order->order_shipping_id); else echo implode(', ', $this->order->order_shipping_method); echo '</p>'; } ?> <?php if(!empty($this->payment)) { echo '<p class="hikashpo_order_payment_method">'.JText::_('HIKASHOP_PAYMENT_METHOD').' : '.$this->payment->getName($this->order->order_payment_method,$this->order->order_payment_id).'</p>'; } if($order_weight) { echo '<p class="hikashpo_order_total_weight">'.JText::_('HIKASHOP_TOTAL_ORDER_WEIGHT') . ' : ' . rtrim(rtrim($this->order->order_weight,'0'),',.').' '.JText::_($this->order->order_weight_unit).'</p>'; } ?> </td> </tr> <?php } else { $fieldsClass = hikashop_get('class.field'); $fields = $fieldsClass->getFields('display:back_shipping_invoice=1',$this->order,'order'); if(!empty($fields)) { ?> <tr> <td> <fieldset class="hikashop_order_custom_fields_fieldset"> <legend><?php echo JText::_('ADDITIONAL_INFORMATION'); ?></legend> <table class="hikashop_order_custom_fields_table adminlist" cellpadding="1" width="100%"> <?php foreach($fields as $fieldName => $oneExtraField) { ?> <tr class="hikashop_order_custom_field_<?php echo $fieldName;?>_line"> <td class="key"><?php echo $this->fieldsClass->getFieldName($oneExtraField); ?></td> <td><?php echo $this->fieldsClass->show($oneExtraField,@$this->order->$fieldName); ?></td> </tr> <?php } ?> </table> </fieldset> </td> </tr> <?php } } if($order_weight) { echo '<tr><td><p class="hikashpo_order_total_weight">'.JText::_('HIKASHOP_TOTAL_ORDER_WEIGHT') . ' : ' . rtrim(rtrim($this->order->order_weight,'0'),',.').' '.JText::_($this->order->order_weight_unit).'</p></td></tr>'; } ?> <?php JPluginHelper::importPlugin('hikashop'); $app = JFactory::getApplication(); ob_start(); $app->triggerEvent('onAfterOrderProductsListingDisplay', array(&$this->order, 'order_back_invoice')); $html = ob_get_clean(); if(!empty($html)) { echo '<tr><td>'.$html.'</td></tr>'; } ?> <tr> <td> </td> </tr> </table> </div> <?php $navigator_check = hikashop_getNavigator(); if ($navigator_check["name"] != "Apple Safari") { ?> <div style="page-break-after:always"></div> <?php }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка