mitrobill/ui/ui/invoice-print.tpl

62 lines
2.4 KiB
Smarty
Raw Normal View History

2022-09-06 10:31:33 +07:00
<!DOCTYPE html>
<html>
2023-08-15 17:01:48 +07:00
2022-09-06 10:31:33 +07:00
<head>
<title>{$_title}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2022-09-17 21:05:24 +07:00
<link href="ui/ui/styles/bootstrap.min.css" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="ui/ui/images/favicon.ico">
2022-09-06 10:31:33 +07:00
2023-08-15 17:01:48 +07:00
<script type="text/javascript">
function printpage() {
window.print();
}
</script>
2022-09-06 10:31:33 +07:00
</head>
<body topmargin="0" leftmargin="0" onload="printpage()">
2023-08-15 17:01:48 +07:00
<div class="row">
<div class="col-md-12">
<table width="200">
<tr>
<td>
<fieldset>
<center>
<b>{$_c['CompanyName']}</b><br>
{$_c['address']}<br>
{$_c['phone']}<br>
</center>
============================================<br>
INVOICE: <b>{$d['invoice']}</b> - {$_L['Date']} : {$date}<br>
{$_L['Sales']} : {$_admin['fullname']}<br>
============================================<br>
{$_L['Type']} : <b>{$d['type']}</b><br>
{$_L['Plan_Name']} : <b>{$d['plan_name']}</b><br>
2023-08-30 09:01:37 +07:00
{$_L['Plan_Price']} : <b>{Lang::moneyFormat($d['price'])}</b><br>
2023-08-15 17:01:48 +07:00
<br>
{$_L['Username']} : <b>{$d['username']}</b><br>
{$_L['Password']} : **********<br>
{if $in['type'] != 'Balance'}
<br>
2023-08-28 09:44:57 +07:00
{$_L['Created_On']} : <b>{Lang::dateAndTimeFormat($d['recharged_on'],$d['recharged_time'])}</b><br>
{$_L['Expires_On']} : <b>{Lang::dateAndTimeFormat($d['expiration'],$d['time'])}</b><br>
2023-08-15 17:01:48 +07:00
{/if}
2023-08-16 08:30:05 +07:00
============================================<br>
<center>{$_c['note']}</center>
2023-08-15 17:01:48 +07:00
</fieldset>
</td>
</tr>
</table>
</div>
2022-09-06 10:31:33 +07:00
</div>
2023-08-15 17:01:48 +07:00
<script src="ui/ui/scripts/jquery-1.10.2.js"></script>
<script src="ui/ui/scripts/bootstrap.min.js"></script>
{if isset($xfooter)}
{$xfooter}
{/if}
2022-09-06 10:31:33 +07:00
</body>
2023-08-15 17:01:48 +07:00
</html>