mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-22 16:28:10 -05:00
48 lines
1.9 KiB
PHP
48 lines
1.9 KiB
PHP
<?php $this->load->view("partial/header"); ?>
|
|
|
|
<?php
|
|
if (isset($error_message))
|
|
{
|
|
echo "<div class='alert alert-dismissible alert-danger'>".$error_message."</div>";
|
|
exit;
|
|
}
|
|
?>
|
|
|
|
<?php if(!empty($customer_email)): ?>
|
|
<script type="text/javascript">
|
|
$(document).ready(function()
|
|
{
|
|
var send_email = function()
|
|
{
|
|
$.get('<?php echo site_url() . "/sales/send_receipt/" . $sale_id_num; ?>',
|
|
function(response)
|
|
{
|
|
$.notify(response.message, { type: response.success ? 'success' : 'danger'} );
|
|
}, 'json'
|
|
);
|
|
};
|
|
|
|
$("#show_email_button").click(send_email);
|
|
|
|
<?php if(!empty($email_receipt)): ?>
|
|
send_email();
|
|
<?php endif; ?>
|
|
});
|
|
</script>
|
|
<?php endif; ?>
|
|
|
|
<?php $this->load->view('partial/print_receipt', array('print_after_sale'=>$print_after_sale, 'selected_printer'=>'receipt_printer')); ?>
|
|
|
|
<div class="print_hide" id="control_buttons" style="text-align:right">
|
|
<a href="javascript:printdoc();"><div class="btn btn-info btn-sm", id="show_print_button"><?php echo '<span class="glyphicon glyphicon-print"> </span>' . $this->lang->line('common_print'); ?></div></a>
|
|
<?php if(!empty($customer_email)): ?>
|
|
<a href="javascript:void(0);"><div class="btn btn-info btn-sm", id="show_email_button"><?php echo '<span class="glyphicon glyphicon-envelope"> </span>' . $this->lang->line('sales_send_receipt'); ?></div></a>
|
|
<?php endif; ?>
|
|
<?php echo anchor("sales", '<span class="glyphicon glyphicon-shopping-cart"> </span>' . $this->lang->line('sales_register'), array('class'=>'btn btn-info btn-sm', 'id'=>'show_sales_button')); ?>
|
|
<?php echo anchor("sales/manage", '<span class="glyphicon glyphicon-list-alt"> </span>' . $this->lang->line('sales_takings'), array('class'=>'btn btn-info btn-sm', 'id'=>'show_takings_button')); ?>
|
|
</div>
|
|
|
|
<?php $this->load->view("sales/" . $this->config->item('receipt_template')); ?>
|
|
|
|
<?php $this->load->view("partial/footer"); ?>
|