[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: print_invoice_a4.php
<?php $lng = $this->session->userdata('language'); $ln_text = isset($lng) && $lng && $lng=="bangla"?"bangla":''; $tax = ''; if($sale_object->sale_vat_objects != ''){ $tax = json_decode($sale_object->sale_vat_objects); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title><?php echo escape_output($sale_object->sale_no); ?></title> <link rel="stylesheet" href="<?php echo base_url(); ?>frequent_changing/css/inv_font.css"> <link rel="stylesheet" href="<?php echo base_url(); ?>frequent_changing/css/print_invoice_a4.css"> <link rel="stylesheet" href="<?php echo base_url(); ?>frequent_changing/css/inv_common.css"> </head> <body> <div id="wrapper" class="m-auto border-2s-e4e5ea br-5 p-30"> <div class="d-flex justify-content-between"> <div> <h3 class="pb-7 shop-name"><?php echo escape_output($this->session->userdata('business_name')); ?></h3> <p class="pb-7 common-heading"><?php echo escape_output($outlet_info->outlet_name); ?></p> <p class="pb-7 f-w-500 color-71"><?php echo escape_output($outlet_info->address); ?></p> <p class="pb-7 f-w-500 color-71"><?php echo lang('email');?>: <?php echo escape_output($outlet_info->email); ?></p> <p class="pb-7 f-w-500 color-71"><?php echo lang('phone');?>: <?php echo escape_output($outlet_info->phone); ?></p> <?php if($this->session->userdata('collect_tax') == 'Yes'){ ?> <p class="pb-7 f-w-900 rgb-71"><?php echo $this->session->userdata('tax_title'); ?>: <?php echo $this->session->userdata('tax_registration_no'); ?></p> <?php } ?> </div> <div class="d-flex align-items-center"> <div class="m-auto"> <?php $invoice_logo = $this->session->userdata('invoice_logo'); if($invoice_logo): ?> <img src="<?php echo base_url()?>uploads/site_settings/<?php echo escape_output($invoice_logo)?>"> <?php endif; ?> </div> </div> </div> <div class="text-center py-10"> <h2 class="invoice-heading"><?php echo lang('invoice');?></h2> </div> <div> <h4 class="pb-7 common-heading"><?php echo lang('bill_to');?>: </h4> <div class="d-flex justify-content-between"> <div> <?php if($customer_info->name && $customer_info->name != '') {?> <p class="pb-7 color-71"> <span class="f-w-600"><?php echo lang('name');?>:</span> <?php echo escape_output($customer_info->name) ?> </p> <?php } ?> <?php if($customer_info->address != '') {?> <p class="pb-7 color-71"> <span class="f-w-600"><?php echo lang('address');?>:</span> <?php echo escape_output($customer_info->address) ?> </p> <?php } ?> <?php if($customer_info->phone != '') {?> <p class="pb-7 color-71"> <span class="f-w-600"><?php echo lang('phone');?>:</span> <?php echo escape_output($customer_info->phone) ?> </p> <?php } ?> <?php if ($customer_info->gst_number != '') { ?> <p class="pb-7 color-71"> <span class="f-w-600"><?php echo lang('gst_no');?>:</span> <?php echo escape_output($customer_info->gst_number) ?> </p> <?php } ?> </div> <div class="text-rigth"> <p class="pb-7"> <span class="f-w-600"><?php echo lang('invoice_no');?>:</span> <?php echo escape_output($sale_object->sale_no);?> </p> <p class="pb-7 f-w-500 color-71"> <span class="f-w-600"><?php echo lang('date');?>:</span> <?php echo dateFormat($sale_object->sale_date) ?> </p> </div> </div> </div> <div> <table class="table w-100 mt-20"> <thead class="br-3 bg-00c53"> <tr> <th class="w-5 ps-5"><?php echo lang('sn');?></th> <th class="w-35"><?php echo lang('item');?>-<?php echo lang('code');?>-<?php echo lang('brand');?></th> <th class="w-15 text-center"><?php echo lang('unit_price');?></th> <th class="w-15 text-center"><?php echo lang('qty');?></th> <th class="w-10 text-center"><?php echo lang('discount');?></th> <th class="w-20 text-right pr-10"><?php echo lang('total');?></th> </tr> </thead> <tbody> <?php if (isset($sale_object->items)) : $i = 1; $totalItems = 0; $unitprice_sum = 0; $discount_sum = 0; $qty_sum = 0; $taxSum = 0; $total_discount_amount = 0; $warranty_date_f = ''; $guarantee_date_f = ''; foreach ($sale_object->items as $row) : $sale_date = date('Y-m-d', strtotime($sale_object->sale_date)); $totalItems++; $unitprice_sum = $unitprice_sum + $row->menu_unit_price; $total_discount_amount += $row->discount_amount; $qty_sum = $qty_sum+=$row->qty; $warranty_date = ''; if($row->warranty_date == "day"){ $warranty_date = "Day"; }elseif($row->warranty_date == "month"){ $warranty_date = "Month"; }elseif($row->warranty_date == "year"){ $warranty_date = "Year"; } if($row->warranty){ $warranty_date_f = dateMonthYearFinder($row->warranty, $warranty_date, $sale_date); } $guarantee_date = ''; if($row->guarantee_date == "day"){ $guarantee_date = "Day"; }elseif($row->guarantee_date == "month"){ $guarantee_date = "Month"; }elseif($row->guarantee_date == "year"){ $guarantee_date = "Year"; } if($row->guarantee){ $guarantee_date_f = dateMonthYearFinder($row->guarantee, $guarantee_date, $sale_date); } $warranty_date_f = date('Y-m-d', strtotime($warranty_date_f)); $guarantee_date_f = date('Y-m-d', strtotime($guarantee_date_f)); ?> <tr> <td><?php echo $i++; ?></td> <td> <?php echo getItemNameCodeBrandByItemId($row->food_menu_id); ?> <span class="short_note"> <?php echo isset($row->menu_note) && $row->menu_note? lang('note').": " .$row->menu_note.", ":''?> </span> <?php if(($row->item_type == 'IMEI_Product' || $row->item_type == 'Serial_Product' || $row->item_type == 'Medicine_Product') && $row->expiry_imei_serial){ ?> <p class="short_note"><?php echo checkItemShortType($row->item_type) ?>: <?php echo trim($row->expiry_imei_serial); ?></p> <?php } ?> <?php if($row->warranty != 0){ ?> <p class="text-muted short_note mt-5"> <?php echo lang('warranty');?>: <?php echo escape_output($row->warranty) . ' ' . $row->warranty_date ?><?php echo escape_output($row->warranty) > 3 ? 's' : ''; ?> </p> <p class="text-muted short_note"> <?php echo lang('will_expire');?> <?php echo date($this->session->userdata('date_format'), strtotime($warranty_date_f)); if(($sale_date <= $warranty_date_f) && ($warranty_date_f >= date('Y-m-d'))){ echo '<span class="wg-available">Available</span>'; echo '<a class="no-print" href="'. base_url() .'WarrantyProducts/addWarranty/'.getItemNameCodeBrandByItemId($row->food_menu_id).'/'. $customer_info->id . '/' . $row->expiry_imei_serial.'">Click to add Warrnty</a>'; }else{ echo '<span class="wg-expire">Expired</span>'; } ?> </p> <?php } ?> <?php if($row->guarantee != 0){ ?> <p class="text-muted short_note"> <?php echo lang('guarantee');?>: <?php echo escape_output($row->guarantee) . ' ' . $row->guarantee_date ?><?php echo escape_output($row->guarantee) > 3 ? 's' : ''; ?> </p> <p class="text-muted short_note"> <?php echo lang('will_expire');?> <?php echo date($this->session->userdata('date_format'), strtotime($guarantee_date_f)); if(($sale_date <= $guarantee_date_f) && ($guarantee_date_f >= date('Y-m-d'))){ echo '<span class="wg-available">Available</span>'; }else{ echo '<span class="wg-expire">Expired</span>'; } ?> </p> <?php } ?> </td> <td class="text-center"> <?php echo getAmtCustom($ln_text=="bangla"?banglaNumber($row->menu_unit_price):$row->menu_unit_price)?> </td> <td class="text-center"> <?php echo ($ln_text=="bangla"?banglaNumber($row->qty):$row->qty)?> <?php echo unitName(getSaleUnitIdByIgId($row->food_menu_id))?> </td> <td class="text-center"> <?php echo escape_output($row->menu_discount_value). ' (' . getAmtCustom($row->discount_amount) . ')'; ?> </td> <td class="text-right pr-10"> <?php echo getAmtCustom($ln_text=="bangla"?banglaNumber($row->menu_price_with_discount):$row->menu_price_with_discount); ?> </td> </tr> <?php endforeach; endif; ?> </tbody> <tfoot class="bg-240 bt-1-gray bb-1-gray"> <tr> <th class="pl-10" colspan="2"><?php echo lang('total');?></th> <th class="text-center"><?php echo getAmtCustom($unitprice_sum) ?></th> <th class="text-center"><?php echo ($ln_text=="bangla"?banglaNumber($totalItems):$totalItems)?> (<?php echo ($ln_text=="bangla"?banglaNumber($qty_sum):$qty_sum)?>)</th> <th class="text-center"><?php echo getAmtCustom($total_discount_amount); ?></th> <th class="text-right pr-10"><?php echo getAmtCustom($ln_text=="bangla"?banglaNumber($sale_object->sub_total):$sale_object->sub_total)?></th> </tr> </tfoot> </table> </div> <div class="d-grid g-template-c-50-40 grid-gap-10 pt-20"> <div> <div class="pt-10"> <h4 class="d-block pb-10"><?php echo lang('note');?></h4> <div class="w-100 bg-240 h-120px p-15 b-1s-240 br-4"> <p> <?php echo escape_output($sale_object->note);?> </p> </div> </div> </div> <div> <?php if($sale_object->previous_due > 0){ $inv_prev_due = absCustom($sale_object->previous_due); ?> <div class="d-flex justify-content-between pt-10"> <p class="f-w-600"><?php echo lang('previous_balance');?></p> <p><?php echo getAmtCustom($ln_text=="bangla"?banglaNumber($inv_prev_due): $inv_prev_due)?> (Debit)</p> </div> <?php } else if ($sale_object->previous_due < 0){ $inv_prev_due = absCustom($sale_object->previous_due); ?> <div class="d-flex justify-content-between pt-10"> <p class="f-w-600"><?php echo lang('previous_balance');?></p> <p><?php echo getAmtCustom($ln_text=="bangla"?banglaNumber($inv_prev_due): $inv_prev_due)?> (Credit)</p> </div> <?php } else{ ?> <div class="d-flex justify-content-between pt-10"> <p class="f-w-600"><?php echo lang('previous_balance');?></p> <p><?php echo getAmtCustom($ln_text=="bangla"?banglaNumber($sale_object->previous_due): $sale_object->previous_due)?></p> </div> <?php } ?> <div class="d-flex justify-content-between pt-10"> <p class="f-w-600"><?php echo lang('subtotal');?></p> <p><?php echo getAmtCustom($ln_text=="bangla"?banglaNumber($sale_object->sub_total):$sale_object->sub_total)?></p> </div> <?php if($tax) { $i = 0; foreach($tax as $t){ if($t->tax_field_amount > 0){ $i++; $taxSum += $t->tax_field_amount; ?> <div class="d-flex justify-content-between pt-5 pb-5 border-bottom-dotted-gray <?php echo escape_output($i) == 1 ? 'border-top-dotted-gray mt-10' : '' ?>"> <p class="f-w-600"><?php echo escape_output($t->tax_field_type) ?></p> <p><?php echo getAmtCustom($t->tax_field_amount);?></p> </div> <?php } } } ?> <div class="d-flex justify-content-between pt-10"> <p class="f-w-600"><?php echo lang('charge');?> (<?php echo escape_output($sale_object->charge_type) == 'delivery' ? 'Delivery' : 'Service'; ?>)</p> <p><?php echo getAmtCustom($ln_text=="bangla" ? banglaNumber($sale_object->delivery_charge) : $sale_object->delivery_charge)?></p> </div> <div class="d-flex justify-content-between pt-10"> <p class="f-w-600"><?php echo lang('discount');?></p> <p><?php echo getAmtCustom($sale_object->sub_total_discount_amount);?></p> </div> <div class="d-flex justify-content-between pt-10 mt-10 p-10 bg-00c53 br-4"> <p class="f-w-600"><?php echo lang('total_payable');?></p> <?php $totalpayable = ($sale_object->total_payable); ?> <p><?php echo getAmtCustom($ln_text=="bangla"?banglaNumber($totalpayable):$totalpayable) ?></p> </div> <div class="d-flex justify-content-between pt-10"> <p class="f-w-600"><?php echo lang('paid_amount');?></p> <p><?php echo getAmtCustom($ln_text=="bangla"?banglaNumber($sale_object->paid_amount):$sale_object->paid_amount) ?></p> </div> <?php if($sale_object->due_amount > 0) { ?> <div class="d-flex justify-content-between pt-10"> <p class="f-w-600"><?php echo lang('due_amount');?></p> <p><?php echo getAmtCustom($ln_text=="bangla"?banglaNumber($sale_object->due_amount):$sale_object->due_amount) ?></p> </div> <?php } else { ?> <div class="d-flex justify-content-between pt-10"> <p class="f-w-600"><?php echo lang('due_amount');?></p> <p><?php echo getAmtCustom($ln_text=="bangla"?banglaNumber(0):0) ?></p> </div> <?php } ?> <?php if($sale_object->due_amount < 0) { $due_reveive = 0; $advance_receive = 0; if(absCustom($sale_object->due_amount) <= $inv_prev_due){ $due_reveive = $sale_object->due_amount; } if(absCustom($sale_object->due_amount) > $inv_prev_due){ $due_reveive = $inv_prev_due; $advance_receive = absCustom($sale_object->due_amount) - $inv_prev_due; } ?> <div class="d-flex justify-content-between pt-10"> <p class="f-w-600"><?php echo lang('due_receive');?></p> <p><?php echo getAmtCustom($ln_text=="bangla"?banglaNumber(absCustom($due_reveive) ? absCustom($due_reveive) : 0 ): (absCustom($due_reveive) ? absCustom($due_reveive) : 0)); ?></p> </div> <div class="d-flex justify-content-between pt-10"> <p class="f-w-600"><?php echo lang('advance_receive');?></p> <p><?php echo getAmtCustom($ln_text=="bangla"?banglaNumber(absCustom($advance_receive) ? absCustom($advance_receive) : 0 ): (absCustom($advance_receive) ? absCustom($advance_receive) : 0)); ?></p> </div> <?php } ?> <div class="d-flex justify-content-between border-bottom-dotted-gray border-top-dotted-gray my-10"> <p class="f-w-600"><?php echo lang('payment_method');?> :</p> </div> <?php $outlet_id = $this->session->userdata('outlet_id'); $salePaymentDetails = salePaymentDetails($sale_object->id,$outlet_id); if(isset($salePaymentDetails) && $salePaymentDetails): foreach($salePaymentDetails as $p_name): $payment_details = explode(",",$p_name->payment_details); ?> <div class="d-flex justify-content-between"> <p class="f-w-600"> <?php echo escape_output($p_name->payment_name); ?> <?php if($p_name->payment_details != ''){ foreach($payment_details as $key=>$details){ ?> <span class="font-size-10"><?php echo $details != '' ? ($key === array_key_last($payment_details) ? $details : $details . ',' ) : '';?> </span> <?php } }?> </p> <p><?php echo getAmtCustom($p_name->amount); ?></p> </div> <?php endforeach; endif; ?> </div> </div> <div class="d-flex justify-content-end mt-80"> <div> <p class="color-71 d-inline b-t-1p-e4e5ea pt-10"><?php echo lang('authorized_signature');?></p> </div> </div> <div class="mt-80"> <p><?php echo $this->session->userdata('term_conditions'); ?></p> </div> <div class="d-flex justify-content-center pt-30"> <p class="font-size-15"><?php echo $this->session->userdata('invoice_footer'); ?></p> </div> <div class="d-flex justify-content-center pt-30"> <button onclick="window.print();" type="button" class="print-btn"><?php echo lang('print');?></button> </div> </div> <script src="<?php echo base_url(); ?>assets/bower_components/jquery/dist/jquery.min.js"></script> <script src="<?php echo base_url(); ?>frequent_changing/js/onload_print.js"></script> </body> </html>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.79 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002