PATH:
home
/
letacommog
/
letaweb
/
admin
/
views
/
builder
/
ecommerce
/
order
<?php Yii::app()->ecommerce->loadLanguageFile('sale/order'); ?> <!DOCTYPE html> <html dir="" lang="en"> <head> <meta charset="UTF-8" /> <title><?php echo Language::term('text_invoice'); ?></title> <base href="" /> <link href="/css/bootstrap.min.css" rel="stylesheet" media="all" /> <script type="text/javascript" src="/scripts/library/jquery/jquery-2.1.1.min.js"></script> <script type="text/javascript" src="view/javascript/bootstrap/js/bootstrap.min.js"></script> <link href="/css/font-awesome.min.css" type="text/css" rel="stylesheet" /> <link type="text/css" href="/css/stylesheet.css" rel="stylesheet" media="all" /> </head> <body> <div class="container"> <div style="page-break-after: always;"> <h1><?php echo Language::term('text_invoice'); ?> #<?php echo $order['order_number']; ?></h1> <table class="table table-bordered"> <thead> <tr> <td colspan="2"><?php echo Language::term('text_order_detail'); ?></td> </tr> </thead> <tbody> <tr> <td style="width: 50%;"><address> <strong><?php echo cmm_settings::get('STORE_NAME'); ?></strong><br /> <?php echo cmm_settings::get('GENERAL_ADDRESS'); ?> </address> <b><?php echo Language::term('text_telephone'); ?></b> <?php echo cmm_settings::get('GENERAL_TELEPHONE'); ?><br /> <?php //if ($order['store_fax']) { ?> <b><?php echo Language::term('text_fax'); ?></b> <?php echo cmm_settings::get('GENERAL_FAX'); ?><br /> <?php //} ?> <b><?php echo Language::term('text_email'); ?></b> <?php echo cmm_settings::get('GENERAL_EMAIL'); ?><br /> <b><?php echo Language::term('text_website'); ?></b> <a href="<?php echo Yii::app()->url->getWebsiteUrl(); ?>"><?php echo Yii::app()->url->getWebsiteUrl() ?></a></td> <td style="width: 50%;"><b><?php echo Language::term('text_date_added'); ?></b> <?php echo $order['date_added']; ?><br /> <?php if (isset($order['invoice_no'])) { ?> <b><?php echo Language::term('text_invoice_no'); ?></b> <?php echo $order['invoice_no']; ?><br /> <?php } ?> <b><?php echo Language::term('text_order_id'); ?></b> <?php echo $order['order_number']; ?><br /> <b><?php echo Language::term('text_payment_method'); ?></b> <?php echo $order['payment_option_name']; ?><br /> <?php if ($order['shipping_option_name']) { ?> <b><?php echo Language::term('text_shipping_method'); ?></b> <?php echo $order['shipping_option_name']; ?><br /> <?php } ?></td> </tr> </tbody> </table> <table class="table table-bordered"> <thead> <tr> <td style="width: 50%;"><b><?php echo Language::term('text_payment_address'); ?></b></td> <td style="width: 50%;"><b><?php echo Language::term('text_shipping_address'); ?></b></td> </tr> </thead> <tbody> <tr> <td><address> <?php echo $order['payment_address']; ?> </address></td> <td><address> <?php echo $order['shipping_address']; ?> </address></td> </tr> </tbody> </table> <table class="table table-bordered"> <thead> <tr> <td><b><?php echo Language::term('column_product'); ?></b></td> <td><b><?php echo Language::term('column_model'); ?></b></td> <td class="text-right"><b><?php echo Language::term('column_quantity'); ?></b></td> <td class="text-right"><b><?php echo Language::term('column_price'); ?></b></td> <td class="text-right"><b><?php echo Language::term('column_total'); ?></b></td> </tr> </thead> <tbody> <?php foreach ($order['items'] as $product) { ?> <tr> <td><?php echo $product['name']; ?> </td> <td><?php// echo $product['model']; ?></td> <td class="text-right"><?php echo $product['quantity']; ?></td> <td class="text-right"><?php echo cmm_currency::format($product['price'], 0,0 ,$order['currency_code'], $order['currency_value']); ?></td> <td class="text-right"><?php echo cmm_currency::format($product['quantity']*$product['price'], 0,0 ,$order['currency_code'], $order['currency_value']); ?></td> </tr> <?php } ?> <?php foreach ($order['order_total'] as $total) { ?> <tr> <td class="text-right" colspan="4"><b><?php echo $total['title']; ?></b></td> <td class="text-right"><?php echo cmm_currency::format($total['value'], 0,0 ,$order['currency_code'], $order['currency_value']); ?></td> </tr> <?php } ?> </tbody> </table> <?php if ($order['comments']) { ?> <table class="table table-bordered"> <thead> <tr> <td><b><?php echo Language::term('text_comment'); ?></b></td> </tr> </thead> <tbody> <?php foreach($order['comments'] as $comment) { ?> <tr> <td><?php echo $comment['text']; ?></td> </tr> <?php } ?> </tbody> </table> <?php } ?> </div> </div> </body> </html>
[+]
..
[-] orderdetail_info.php
[edit]
[-] paypal_order.php
[edit]
[-] order.php
[edit]
[+]
payment
[-] orderdetail_comment.php
[edit]
[-] orderdetail_product.php
[edit]
[-] orderdetail_customer.php
[edit]
[-] order_invoice.php
[edit]
[-] status_tab.php
[edit]
[-] payment_status_tab.php
[edit]
[-] cart_tab.php
[edit]
[-] orderdetail_shipping_address.php
[edit]
[-] order_detail - Copy.php
[edit]
[-] order_detail.php
[edit]
[-] orderdetail_total.php
[edit]