npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@pingleware/bestbooks-reports

v1.2.1

Published

Reports module for BestBooks Accounting Application Framework

Downloads

106

Readme

BestBooks Accounting Application Framework - Reports

There are no free options for creating reports from content received from a database. jsreports, jasperreports have limited free options.

Hence the report design will go back to basics,

1. creating an XML document for the data required for the report
2. display the XML using XSLT with CSS which can be printed or
   save as a PDF or DOCX (see https://www.geeksforgeeks.org/displaying-xml-using-xslt/)

During initialization (invoking the init() function)), will copy the xslt template files to the user's home directory in the bestbooks system directory.

The js2xmlparser package is used to convert an object to xml, while the xslt-processor package will transform the XML data and XSLT template to HTML format.

HTML can be converted to other forms like PDF.

Test Driven Development

When testing, run on a local system, as github workflows have issues with permissions and other problems that result in failure of the tests.

Reporting in Accounting

Reporting is the most important feature of any accounting system, because reporting permits the communication to interested parties. Using test driven development (TDD) allows the implementation of the reports module first.

GAAP Compliance

There is much discussion concerning GAAP compliance and accounting sofftware with some commentors stating that accounting software can never be GAAP compliance. First, GAAP compliance has to do with reporting and involves an accountant statement or notes added to the financial statements, this where the component noteToFinancialStatements permits the addition of a notes fields to the report XML data, thus making BestBooks GAAP compliance with the addition of a notes field on reports.

Also to ensure GAAP compliance, standard labels as defined by FASB should be used in the report generation. See FASB Segment Reporting (Topic 280), 2024 US GAAP Financial, SEC Reporting and DQC Rules Taxonomies with the updated link to FASB Explanatory Page

An exempt offering under Section 3(a)(11) which is an intrastate public offering issuing unrestricted securities to a single state bonafide residents. To ensure compliance of this exempt offering, segment reporting is required if the securities become traded on a NMS Exchange.

Reports included

You can customize the style of the reports by modifying the XSLT file located in the .bestbooks system directory of the current user home directory. The package XSLT files are ONLY copied to this directory if they do not exist. The available report XSLT files include,

account-payables-aging.xslt
account-receivables-aging.xslt
balance-sheet.xslt
breakeven-analysis.xslt
budget-vs-actual.xslt
customer-estimate.xslt
income-statement.xslt
income-statement-geographic.xslt
purchase-order.xslt
retained-earnings.xslt
statement-in-change-in-equity.xslt
statement-of-cash-flows.xslt
trial-balance.xslt

Account Payables Aging

account-payables-aging.png

Account Receivables Aging

account-receivables-aging.png

Balance Sheet

balance-sheet.png

Breakeven Analysis

breakeven-analysis.png

Budget vs. Actual

budget-vs-actual.png

Income Statement

income-statement.png

Income Statement by Geography

income-statement-geographic.png

Customer Estimate

1712500090802

Purchase Order

purchase-order.png

Retained Earnings

retained-earnings.png

Statement in Change in Equity

statement-of-change-in-equity.png

Statement of Cash Flows

statement-of-cashflows.png

Trial Balance

trial-balance