<?php
session_start();
if (isset($_SESSION['loggedin'])) {
echo "Please Login again";
header("Location:/swift/index.php");
} else {
$now = time();
if ($now > $_SESSION['expire']) {
session_destroy();
header("Location:/swift/index.php");
}
}
include("../../config.php");
$fd = $_POST["from_date"];
$sort = $_POST['sort'];
$zero = isset($_POST['zero']) ? 1 : 0;
$html = '<!DOCTYPE html>
<html>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 50%;
line-height:0.75rem;
font-size: 12px;
}
@media print {
table {
width: 100% !important;
margin: 0 auto !important;
}
}
td, th {
border: 1px solid #dddddd;
text-align: center;
padding: 5px;
}
h2 {
text-align: center;
}
p {
text-align: center;
}
#des {
text-align: left;
}
#name {
text-align: right;
}
#amount {
text-align: right;
}
</style>
</head>
<body>';
$html .= '<p>Balance Sheet As On ' . date("d/m/Y", strtotime($fd)) . '</p>
<table align="center">
<tr>
<th style="width:100px">Account No</th>
<th style="width:350px">Account Name</th>
<th style="width:100px">Asset</th>
<th style="width:100px">Liability</th>
</tr>';
$sql1 = "SELECT a.AccountNo, c.Category as CName, a.Name, SUM(b.CAmount) - SUM(b.DAmount) as temp, c.TName as type_Name, a.Typeid, a.HeadId as headid, b.CAmount, b.DAmount
FROM head a, transact b, type c, voucher d
WHERE b.VouId=d.VouId AND c.Id=a.Typeid AND a.HeadId=b.HeadId AND date(d.voudate) <= '$fd'
AND a.Typeid IN ('0','1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16','18','19','31')
GROUP BY a.AccountNo, a.Name, a.HeadId
ORDER BY c.Category, temp, a.Name";
$result1 = mysqli_query($con, $sql1);
$rowcount1 = mysqli_num_rows($result1);
if ($rowcount1 > 0) {
while ($row1 = mysqli_fetch_assoc($result1)) {
$accountNo = $row1['AccountNo'];
$temp = $row1['temp'];
if ($temp < 0) {
$Dtotal = (-1) * $temp;
$Ctotal = 0;
} else {
$Ctotal = $temp;
$Dtotal = 0;
}
$html .= "<tr><td>$accountNo</td><td>{$row1['Name']}</td><td style='text-align:right'>" . number_format($Dtotal, 2) . "</td><td style='text-align:right'>" . number_format($Ctotal, 2) . "</td></tr>";
$tot_damount1 += $Dtotal;
$tot_camount1 += $Ctotal;
}
$html .= "<tr><td><b>Total</b></td><td></td><td style='text-align:right'><b>" . number_format($tot_damount1, 2) . "</b></td><td style='text-align:right'><b>" . number_format($tot_camount1, 2) . "</b></td></tr>";
}
$sql_close_bal = "SELECT SUM(stockentry.Arrived - stockentry.Out) * stockhead.purchaseprice AS value ,stockhead.Name ,stockhead.Stockid, stockhead.Balance, stockhead.Value, stockhead.purchaseprice, stockhead.Unitid FROM stockhead, stockentry,svoucher WHERE stockhead.Stockid=stockentry.Stockid AND svoucher.Stid= stockentry.Stid AND date(svoucher.Sdate)<= '$fd' GROUP BY stockentry.Stockid ORDER BY stockhead.Name; ";
$result1_close_bal = mysqli_query($con, $sql_close_bal);
$close_stock = 0;
while ($row2 = mysqli_fetch_assoc($result1_close_bal)) {
$stock_temp = $row2['value'];
$close_stock += $stock_temp;
}
$html .= "<tr><td style='text-align:right'>Closing Stock : </td><td></td><td style='text-align:right'>" . number_format($close_stock, 2) . "</td><td style='text-align:right'></td></tr>";
include_once("profitloss.php");
$net_amount = $tot_damount1 + $nettemp + $close_stock;
$net_amt1 = $tot_camount1 + $profitloss;
$html .= "<tr><td style='text-align:right'>Net Amount : </td><td></td><td style='text-align:right'>" . number_format($net_amount, 2) . "</td><td style='text-align:right'>" . number_format($net_amt1, 2) . "</td></tr>";
$html .= '</table></body></html>';
echo $html;
?>