Posts Tagged ‘contribution’

osCommerce: Admin Store Summary v1.0

Posted in Development on May 21st, 2007 by Robert Heath – Be the first to comment

This contribution is a replacement for the administration home page. The home page has been simplified and includes the standard admin navigation as well as a brief summary of sales and other statistics.

This contribution is available through the osCommerce Community portal. Click here to download it now.

Support: http://www.robertheath.net/forum/viewforum.php?f=2

I’ve created a project on No Kahuna for reporting bugs and requests features: http://nokahuna.com/projects/6170/tasks

If you have used this contribution and found it helpful, please make a donation. Donations help fund the development and support of osCommerce contributions and othr open source software.

osCommerce: Customer Export v1.0

Posted in Development on May 21st, 2007 by Robert Heath – Be the first to comment

This contribution adds the ability to export and save customer data in CSV (Comma Separated Value) format. CSV is a standard format that can be imported into most applications that allow data import. CSV format is also compatible with most spreadsheet applications such as Microsoft Excel.

This contribution is available through the osCommerce Community portal. Click here to download it now.

Support: http://www.robertheath.net/forum/viewforum.php?f=1

I’ve created a project on No Kahuna for reporting bugs and requests features: http://nokahuna.com/projects/6171/tasks

If you have used this contribution and found it helpful, please make a donation. Donations help fund the development and support of osCommerce contributions and othr open source software.

osCommerce: Manufacturer Sales Report v2.1

Posted in Development on May 21st, 2007 by Robert Heath – Be the first to comment

Manufacturer Sales Report v2.0 for osCommerce has officially been released. This module allows you to view sales reports based on manufacturer rather than customer or product. This version adds the ability to view a breakdown of products sold by manufacturer in addition to total sales by manufacturer. In addition the additional features I have incorporated a few a few minor bug fixed suggested by the osCommerce community.

This contribution is available through the osCommerce Community portal. Click here to download it now.

Support: http://www.robertheath.net/forum/viewforum.php?f=3

I’ve created a project on No Kahuna for reporting bugs and requests features: http://nokahuna.com/projects/6172/tasks

If you have used this contribution and found it helpful, please make a donation. Donations help fund the development and support of osCommerce contributions and othr open source software.

Store Summary

Posted in Installation Instructions on May 21st, 2007 by Robert Heath – Be the first to comment

Contribution Name: Store Summary
Contribution Version: 1.0
Author Name: Robert Heath
Author E-Mail Address: robert@robertheath.net
Author Website: www.robertheath.net

This contribution is a replacement for the administration home page. The home page has been simplified and includes the standard admin navigation as well as a brief summary of sales and other statistics.

INSTALLATION:

There should be no need to manually modify any files unless you have already customized your osCommerce installation. Simply upload the files included in contribution and your done.

Manufacturer Sales Report

Posted in Installation Instructions on May 21st, 2007 by Robert Heath – Be the first to comment

Contribution Name: Manufacturer Sales Report
Contribution Version: 2.1
Author Name: Robert Heath
Author E-Mail Address: robert@robertheath.net
Author Website: www.robertheath.net

This contribution adds the ability to view sales reports based on manufacturer rather than customer or product. This version adds the ability to view a breakdown of products sold by manufacturer in addition to total sales by manufacturer. It also adds a printer friendly version of the report which displays the Store name, time and date the report was created, and the reporting period specified.

INSTALLATION:

Step 1: Upload the files included in this package

Step 2: Add the following line to /admin/includes/filenames.php

AFTER
define(’FILENAME_STATS_CUSTOMERS’, ’stats_customers.php’);

ADD
define(’FILENAME_STATS_MANUFACTURERS’, ’stats_manufacturers_sales.php’);

Step 3: Add the following line to/admin/includes/languages/english.php

AFTER
define(’BOX_REPORTS_ORDERS_TOTAL’, ‘Customer Orders-Total’);

ADD
define(’BOX_REPORTS_SALES_MANUFACTURERS’, ‘Manufacturer Sales’);

Step 4: Add the following line to /admin/includes/boxes/reports.php

AFTER
‘<a href=”‘ . tep_href_link(FILENAME_STATS_PRODUCTS_PURCHASED, ”, ‘NONSSL’) . ‘” class=”menuBoxContentLink”>’ . BOX_REPORTS_PRODUCTS_PURCHASED . ‘</a><br>’ .

ADD
‘<a href=”‘ . tep_href_link(FILENAME_STATS_MANUFACTURERS, ”, ‘NONSSL’) . ‘” class=”menuBoxContentLink”>’ . BOX_REPORTS_SALES_MANUFACTURERS . ‘</a><br>’ .

Customer Export

Posted in Installation Instructions on March 21st, 2007 by Robert Heath – Be the first to comment

Contribution Name: Customer Export
Contribution Version: 1.0
Author Name: Robert Heath
Author E-Mail Address: robert@robertheath.net
Author Website: www.robertheath.net

This contribution adds the ability to export and save customer data in CSV (Comma Separated Value) format. CSV is a standard format that can be imported into most applications that allow data import. CSV format is also compatible with most spreadsheet applications such as Microsoft Excel.

INSTALLATION:

Step 1: Upload the files included in this package

Step 2: Add the following line to /admin/includes/filenames.php

AFTER
define(’FILENAME_CUSTOMERS’, ‘customers.php’);

ADD
define(’FILENAME_CUSTOMER_EXPORT’, ‘customer_export.php’);

Step 3: Add the following line to/admin/includes/languages/english.php

AFTER
define(’BOX_CUSTOMERS_ORDERS’, ‘Orders’);

ADD
define(’BOX_CUSTOMERS_EXPORT’, ‘Export Customers’);

Step 4: Add the following line to /admin/includes/boxes/customers.php

AFTER
‘<a href=”‘ . tep_href_link(FILENAME_CUSTOMERS, ”, ‘NONSSL’) . ‘” class=”menuBoxContentLink”>’ . BOX_CUSTOMERS_CUSTOMERS . ‘</a><br>’ .

ADD
‘<a href=”‘ . tep_href_link(FILENAME_CUSTOMERS_EXPORT, ”, ‘NONSSL’) . ‘” class=”menuBoxContentLink”>’ . BOX_CUSTOMERS_EXPORT . ‘</a><br>’ .