export excel second
This commit is contained in:
parent
4683fe67a7
commit
ec6bfaf7ff
@ -692,7 +692,7 @@ class bibaccounts
|
|||||||
{
|
{
|
||||||
if (!isset($ReportOptions['AmountColWidth'])) $ReportOptions['AmountColWidth'] = 180;
|
if (!isset($ReportOptions['AmountColWidth'])) $ReportOptions['AmountColWidth'] = 180;
|
||||||
?>
|
?>
|
||||||
<table class="table table-sm table-accounts">
|
<table id='myTable'class="table table-sm table-accounts">
|
||||||
<?php if ($displayHeadings) { ?>
|
<?php if ($displayHeadings) { ?>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -17,7 +17,7 @@ $PL = $IncomesTotal - $ExpensesTotal;
|
|||||||
<h5 class="m-0"><?php echo $pageTitle; ?> </h5>
|
<h5 class="m-0"><?php echo $pageTitle; ?> </h5>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<table class="table table-bordered table-hover">
|
<table id='myTable'class="table table-bordered table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="4">Profit & Loss Statement</th>
|
<th colspan="4">Profit & Loss Statement</th>
|
||||||
@ -95,7 +95,7 @@ $PL = $IncomesTotal - $ExpensesTotal;
|
|||||||
{
|
{
|
||||||
$total = 0;
|
$total = 0;
|
||||||
?>
|
?>
|
||||||
<table class="table table-bordered table-hover">
|
<table id='myTable' class="table table-bordered table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Account</th>
|
<th>Account</th>
|
||||||
@ -121,6 +121,41 @@ $PL = $IncomesTotal - $ExpensesTotal;
|
|||||||
</tr>
|
</tr>
|
||||||
</tfoot> -->
|
</tfoot> -->
|
||||||
</table>
|
</table>
|
||||||
|
<!-- pdf document -->
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.17.0/xlsx.full.min.js"></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.getElementById('downloadCsv').addEventListener('click', function() {
|
||||||
|
const table = document.getElementById('myTable');
|
||||||
|
const rows = Array.from(table.rows);
|
||||||
|
const data = [];
|
||||||
|
|
||||||
|
rows.forEach((row) => {
|
||||||
|
const cells = Array.from(row.cells);
|
||||||
|
const rowData = [];
|
||||||
|
cells.forEach((cell) => {
|
||||||
|
// Handle colspan
|
||||||
|
const colspan = cell.colSpan || 1;
|
||||||
|
for (let i = 0; i < (colspan - 1); i++) {
|
||||||
|
rowData.push(''); // Fill empty cells for merged columns
|
||||||
|
}
|
||||||
|
for (let i = 0; i < 1; i++) {
|
||||||
|
rowData.push(cell.innerText.trim());
|
||||||
|
}
|
||||||
|
// Fill empty cells for colspan
|
||||||
|
});
|
||||||
|
data.push(rowData);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Create a worksheet
|
||||||
|
const worksheet = XLSX.utils.aoa_to_sheet(data);
|
||||||
|
const workbook = XLSX.utils.book_new();
|
||||||
|
XLSX.utils.book_append_sheet(workbook, worksheet, 'Sheet1');
|
||||||
|
|
||||||
|
// Export to Excel
|
||||||
|
XLSX.writeFile(workbook, 'table.xlsx');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!-- pdf document ends-->
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
@ -229,7 +229,7 @@ $BIBAccounts = new BIBAccounts();
|
|||||||
?>
|
?>
|
||||||
<div class="col-6 p-0">
|
<div class="col-6 p-0">
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table id='myTable' class="table ">
|
<table id='myTable' class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="group-name pl-1">Particulars</th>
|
<th class="group-name pl-1">Particulars</th>
|
||||||
@ -250,10 +250,10 @@ $BIBAccounts = new BIBAccounts();
|
|||||||
<?php foreach ($AccountGroups as $group) : ?>
|
<?php foreach ($AccountGroups as $group) : ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" class="p-0">
|
<td colspan="2" class="p-0">
|
||||||
<div id="group_<?php echo $group->acgroup_id; ?>" class="">
|
<!-- <div id="group_<?php echo $group->acgroup_id; ?>" class=""> -->
|
||||||
<?php $Accountcategories = $BIBAccounts->getRootCategoriesWithBalances($group->acgroup_id); ?>
|
<?php $Accountcategories = $BIBAccounts->getRootCategoriesWithBalances($group->acgroup_id); ?>
|
||||||
<?php $BIBAccounts->renderAccountCategoriesTable($Accountcategories, $ReportOptions, false, array()); ?>
|
<?php $BIBAccounts->renderAccountCategoriesTable($Accountcategories, $ReportOptions, false, array()); ?>
|
||||||
</div>
|
<!-- </div> -->
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
@ -275,15 +275,15 @@ $BIBAccounts = new BIBAccounts();
|
|||||||
<tfoot>
|
<tfoot>
|
||||||
<?php $PL = $incomes_totalClosingCr - $incomes_totalClosingDr; ?>
|
<?php $PL = $incomes_totalClosingCr - $incomes_totalClosingDr; ?>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="p-1">Total Incomes</th>
|
<td class="p-1">Total Incomes</th>
|
||||||
<th class="cr closing-cr text-bold">
|
<td class="cr closing-cr text-bold">
|
||||||
<?php if ($PL > 0) : ?>
|
<?php if ($PL > 0) : ?>
|
||||||
<?php echo myCurrency($incomes_totalClosingCr); ?>
|
<?php echo myCurrency($incomes_totalClosingCr); ?>
|
||||||
<?php else : ?>
|
<?php else : ?>
|
||||||
<?php echo myCurrency($incomes_totalClosingCr + abs($PL)); ?>
|
<?php echo myCurrency($incomes_totalClosingCr + abs($PL)); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
</th>
|
|
||||||
</tr>
|
</tr>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
@ -312,11 +312,11 @@ $BIBAccounts = new BIBAccounts();
|
|||||||
<?php foreach ($AccountGroups as $group) : ?>
|
<?php foreach ($AccountGroups as $group) : ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" class="p-0">
|
<td colspan="2" class="p-0">
|
||||||
<div id="group_<?php echo $group->acgroup_id; ?>" class="">
|
<!-- <div id="group_<?php echo $group->acgroup_id; ?>" class=""> -->
|
||||||
<i> <?php $Accountcategories = $BIBAccounts->getRootCategoriesWithBalances($group->acgroup_id); ?>
|
<i> <?php $Accountcategories = $BIBAccounts->getRootCategoriesWithBalances($group->acgroup_id); ?>
|
||||||
<?php $BIBAccounts->renderAccountCategoriesTable($Accountcategories, $ReportOptions, false, array()); ?>
|
<?php $BIBAccounts->renderAccountCategoriesTable($Accountcategories, $ReportOptions, false, array()); ?>
|
||||||
</i>
|
</i>
|
||||||
</div>
|
<!-- </div> -->
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
|
Loading…
x
Reference in New Issue
Block a user