mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-03 06:57:54 -05:00
Fix reports error due to report.php now being Report.php (#120)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Detailed_receivings extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Detailed_sales extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Inventory_low extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Inventory_summary extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Specific_customer extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Specific_discount extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Specific_employee extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Summary_categories extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Summary_customers extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Summary_discounts extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Summary_employees extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Summary_items extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Summary_payments extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Summary_sales extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Summary_suppliers extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
require_once("report.php");
|
||||
require_once("Report.php");
|
||||
class Summary_taxes extends Report
|
||||
{
|
||||
function __construct()
|
||||
|
||||
Reference in New Issue
Block a user