<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Invoice V1</title>
	<?php echo HTML::style('css/installment.css'); ?>

    <style media="print">
    @page  {
        size: A4;
        margin-top: 10px !important;
        margin: 10px;
        margin-left: 10px;

    }
    body { font-size: 12px !important; color: #000 !important; }
    img { width: 150px !important; }
    hr { border-color: #333333!important; margin-top: 0; margin-bottom: 0;}
        /*.table-nobordered { border: 1px solid #333333 !important; }*/
        .table-nobordered th, .table-nobordered td { border: 0 !important;  padding: 5px; color: #000 !important;}
        .table-nobordered { margin-bottom: 5px; }
        table, th, td { border-color: #333333 !important; padding: 5px !important; color: #000 !important;}
        th { border-bottom-width: 1px !important;}
        h2 { font-family: "Khmer OS Muol";}
        h2, h3, p { text-align: center; }
        h2 { font-size: 22px !important; margin-bottom: 5px !important; }
        h3 { font-size: 18px !important; margin-top: 0 !important; }
        p { margin: 5px !important; color: #000 !important;}
        table.table-paid{
            border: 1px solid #333;
        }
        table th { font-weight: bold !important; }
        .table-paid th, .table-paid td{
            border: 1px solid #333;
        }
        .table-paid tr td:last-child{
            border-right: none;
        }
        .strike-trough{
            position: relative;
        }
        .strike-trough:after{
            content: '';
            display: block;
            border-bottom: 1px solid #333;
            right: 0;
            position: absolute;
            left: 0;
            padding-top: 20px;
            margin-left: 15px;
            margin-right: 15px;
        }
        .logo { padding-top: 30px; padding-bottom: 40px; }
    </style>
    <style>
        hr { border-color: #333333!important; margin-top: 0; margin-bottom: 0;}
        /*.table-nobordered { border: 1px solid #333333 !important; }*/
        .table-nobordered th, .table-nobordered td { border: 0 !important; }
        table, th, td { border-color: #333333 !important;}
        th { border-bottom-width: 1px !important;}
        h2 { font-family: "Khmer OS Muol";}
        h2, h3, p { text-align: center; }
        table.table-paid{
            border: 1px solid #333;
        }
        .table-paid th, .table-paid td{
            border: 1px solid #333;
        }
        .table-paid tr td:last-child{
            border-right: none;
        }
        .strike-trough{
            position: relative;
        }
        .strike-trough:after{
            content: '';
            display: block;
            border-bottom: 1px solid #333;
            right: 0;
            position: absolute;
            left: 0;
            padding-top: 20px;
            margin-left: 15px;
            margin-right: 15px;
        }
        .logo { padding-top: 30px; padding-bottom: 40px; }
		.company_banner {
			padding: 5px;}
		.installment-title { border-bottom: 1px solid #000; padding-bottom: 5px; }
        .header { text-align: center;}
        .header p { margin-bottom: 5px !important;}
		<?php echo get_config("custom_style"); ?>

    </style>
</head>

<body>
	<div class="container-fluid">
		<div class="row">
			<div class="col-xs-3" >
				<?php echo HTML::image(get_config('company_logo'), "Logo", ['width' => '200px;', 'class' => 'logo']); ?>

			</div>
			<div class="col-xs-6">
				<div class="header">
                    <h2><?php echo get_config('company_name'); ?></h2>
                    <h3 style="margin-top: 10px; text-transform: uppercase;"><?php echo get_config('company_name_en'); ?></h3>
                    <p><?php echo get_config('company_detail'); ?></p>
                    <p><?php echo get_config('company_address'); ?></p>
                    <p><?php echo get_config('company_tel'); ?></p>
                    <?php if(get_config('company_facebook')): ?>
                        <p>Facebook: <?php echo get_config("company_facebook"); ?></p>
                    <?php endif; ?>
                </div>
			</div>
		</div>

		<div class="row">
			<div class="col-xs-12">
				<h3 class="text-left installment-title"><?php echo trans('installments.menu'); ?></h3>
				<table class="table table-nobordered">
					<tr>
						<th style="width: 15%;"><?php echo trans('installments.code'); ?></th>
						<td><?php echo convertInvoiceNumber($installment->id); ?></td>
						<th style="width: 15%;"><?php echo trans('installments.user'); ?></th>
						<td style="width: 15%;"><?php echo $installment->first_name; ?> <?php echo $installment->last_name; ?></td>
					</tr>
					<tr>
						<th><?php echo trans('installments.date'); ?></th>
						<td><?php echo get_day_week($installment->created_at); ?> <?php echo format_date_installment($installment->created_at); ?></td>
					</tr>
				</table>
				<table class="table table-nobordered">
					<tr>
						<th><?php echo trans('installments.customer_name'); ?></th>
						<td><?php echo $installment->full_name_kh; ?></td>
						<th><?php echo trans('installments.product_name'); ?></th>
						<td><?php echo $installment->product_name; ?></td>
						<th><?php echo trans('installments.duration'); ?></th>
						<td><?php echo $installment->duration; ?></td>
					</tr>
					<tr>
						<th><?php echo trans('customers.sex'); ?></th>
						<td><?php echo trans('customers.gender.'.$installment->gender); ?></td>
						<th><?php echo trans('installments.total_price'); ?></th>
						<td><?php echo money($installment->total_price); ?></td>
						<th><?php echo trans('installments.principal'); ?></th>
						<td><?php echo money($installment->getMonthlyPriciple()); ?></td>
					</tr>
					<tr>
						<th><?php echo trans('customers.tel'); ?></th>
						<td><?php echo $installment->tel; ?></td>
						<th><?php echo trans('installments.deposit'); ?></th>
						<td><?php echo money($installment->deposit); ?></td>
						<th><?php echo trans('installments.total_pay'); ?></th>
						<td><?php echo money($installment->getFutureValue() ); ?></td>
					</tr>
					<tr>
						<th></th>
						<td></td>
						<?php /* <th><?php echo trans('installments.rate'); ?></th>
						<td><?php echo $installment->rate; ?>%</td> */ ?>
						<th><?php echo trans('installments.pay_of_day'); ?></th>
						<td><?php echo get_day_week($payOffDay->payment_date); ?> <?php echo $payOffDay->displayDate(); ?></td>
					</tr>
				</table>
		<table class="table table-paid">
					<thead>
              <tr>
                  <th style="width: 5%;"><?php echo trans('installments.id'); ?></th>
                  <th colspan="2" style="width: 25%;"><?php echo trans('installments.date_payment'); ?></th>
                  <th style="width: 15%;"><?php echo trans('installments.monthly_payment'); ?></th>
                  <th style="width: 15%;"><?php echo trans('installments.payment_name'); ?></th>
                  <th style="width: 15%;"><?php echo trans('installments.reciever_name'); ?></th>
                  <th style="width: 15%;"><?php echo trans('installments.others'); ?></th>
              </tr>
           </thead>
           <tbody>
           	<?php if(count($payments) > 0): ?>
           		<?php $i = 1; ?>
           		<?php foreach($payments as $pay): ?>
           		<tr>
           			<td><?php echo $i; ?></td>
           			<td style="width: 10%;"><?php echo get_day_week($pay->payment_date); ?></td>
                    <td><?php echo format_date_installment($pay->payment_date); ?></td>
           			<td><?php echo money($pay->amount); ?></td>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
           			<td>&nbsp;</td>
           		</tr>
           		<?php $i++; ?>
           		<?php endforeach; ?>
           	<?php endif; ?>
           </tbody>
				</table>
        <p class="text-left"><?php echo get_config("invoice_client_note "); ?></p>
			</div>
		</div>
	</div>
   
</body>
<script>
	window.print();
</script>
<?php if(get_config('auto_close_print') == 'yes'): ?>
<script>
    window.close();
</script>
<?php endif; ?>
</html>
