osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 

RMA Returns system

This is a discussion on RMA Returns system within the osCMax Projects Discussion forums, part of the osCMax v2.0 Forums category; A new project_project entry has been added: RMA Returns system This is a complete returns tracking and processing system with ...


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v2.0 Forums > osCMax Projects Discussion

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Reply

 

LinkBack Thread Tools
  #1  
Old 01-13-2007, 08:29 AM
automotiveuk automotiveuk is offline
osCMax Testing Team
 
Join Date: Oct 2004
Location: United Kingdom
Posts: 48
Thanks: 1
Thanked 22 Times in 13 Posts
Thanks: 1
Thanked 22 Times in 13 Posts
Rep Power: 0
automotiveuk automotiveuk
Default RMA Returns system

A new project_project entry has been added:

RMA Returns system

Quote:
This is a complete returns tracking and processing system with integration for the Credit Class GV ssytem for making refunds. Ported and 100% compatible with osCMax.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following 2 Users Say Thank You to automotiveuk For This Useful Post:
michael_s (01-18-2007), poppatopz (04-05-2007)
  #2  
Old 03-21-2007, 07:42 AM
New Member
 
Join Date: Jan 2005
Posts: 13
Thanks: 5
Thanked 7 Times in 4 Posts
Rep Power: 0
poppatopz
Question Re: RMA Returns system

this is excellent thanks for your work on these mods, i have only two questions, i ported your files directly into a fresh install and it worked but i noticed that you you had the faq, and rewards mods already tied into this and was wondering how hard it would be to import these into mine, also on the RMA how does the customer request a rma all i see on any of these menus (even logged in as a customer) is just the track rma. is there something i need to add menu wise or a link that will pull up a form they can use.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 03-21-2007, 08:04 AM
New Member
 
Join Date: Jan 2005
Posts: 13
Thanks: 5
Thanked 7 Times in 4 Posts
Rep Power: 0
poppatopz
Exclamation Re: RMA Returns system

Warning: htmlspecialchars() expects parameter 1 to be string, array given in /home/shop/public_html/includes/functions/general.php on line 47

Warning: htmlspecialchars() expects parameter 1 to be string, array given in /home/shop/public_html/includes/functions/general.php on line 47

this is an error i am getting from the file return_product.php on both the billing and delivery address does anyone know what needs to be done to fix this.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 04-24-2007, 01:57 AM
osCMax Testing Team
 
Join Date: Oct 2004
Location: United Kingdom
Posts: 48
Thanks: 1
Thanked 22 Times in 13 Posts
Rep Power: 0
automotiveuk automotiveuk
Default Re: RMA Returns system

Hi poppatopz,

RMA if you do a test purchase from your shop and set the order has despatched and them login in under your test account and go view orders you should see a link under that order do you wish to return this product then the system will generate an RMA number. the link will only show if the order has been despatched.

I think uploaded my english.php thats why it has both mods in if you go and get a copy of beyond and compare from scooter software and just compare my files to your own files its a windows app just right click your file and select
left side compare and then on second file select compare to what ever file and bobs your uncle.

All the best
Darren
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 01-08-2008, 11:48 AM
New Member
 
Join Date: Jan 2008
Posts: 26
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 0
drillsar is on a distinguished road
Default Re: RMA Returns system

Im trying to install this, There seems to be a issue with this:

The Table return_status returns a error in SQL, I beleive it's suppused to be like this:

DROP TABLE IF EXISTS returns_status;
CREATE TABLE returns_status (
returns_status_id int(11) NOT NULL default '1',
language_id int(11) NOT NULL default '1',
returns_status_name varchar(32) NOT NULL default '',
PRIMARY KEY (returns_status_id,language_id),
KEY idx_returns_status_name (returns_status_name)
) TYPE=MyISAM;
INSERT INTO returns_status VALUES (1, 1, 'Pending');
INSERT INTO returns_status VALUES (2, 1, 'Awaiting Return');
INSERT INTO returns_status VALUES (3, 1, 'Cancelled');
INSERT INTO returns_status VALUES (4, 1, 'Complete');

Also another problem is in the Admin I get really strange things happening, I get a whole bunch of sql statements. I'm thinking it's a bug, Anyone experience this isue?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 01-08-2008, 09:02 PM
New Member
 
Join Date: Jan 2008
Posts: 26
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 0
drillsar is on a distinguished road
Default Re: RMA Returns system

I figured why I was getting problems: In php.ini find this:

short_open_tag and make sure it's on
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 01-08-2008, 11:28 PM
New Member
 
Join Date: Jan 2008
Posts: 26
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 0
drillsar is on a distinguished road
Default Re: RMA Returns system

The RMA Needs to be updated, Here's my suggestions:



READ ME File way out dated

SQL Change:

Instead of this:


# Table structure for table `returns_status`
#
DROP TABLE IF EXISTS returns_status;
CREATE TABLE returns_status (
returns_status_id int(11) NOT NULL default '',
language_id int(11) NOT NULL default '1',
returns_status_name varchar(32) NOT NULL default '',
PRIMARY KEY (returns_status_id,language_id),
KEY idx_returns_status_name (returns_status_name)
) TYPE=MyISAM;
#
# Dumping data for table `returns_status`
#
INSERT INTO returns_status VALUES (1, 1, 'Pending');
INSERT INTO returns_status VALUES (2, 1, 'Awaiting Return');
INSERT INTO returns_status VALUES (3, 1, 'Cancelled');
INSERT INTO returns_status VALUES (4, 1, 'Complete');


Should Be this:

DROP TABLE IF EXISTS returns_status;
CREATE TABLE returns_status (
returns_status_id int(11) NOT NULL default '1',
language_id int(11) NOT NULL default '1',
returns_status_name varchar(32) NOT NULL default '',
PRIMARY KEY (returns_status_id,language_id),
KEY idx_returns_status_name (returns_status_name)
) TYPE=MyISAM;
INSERT INTO returns_status VALUES (1, 1, 'Pending');
INSERT INTO returns_status VALUES (2, 1, 'Awaiting Return');
INSERT INTO returns_status VALUES (3, 1, 'Cancelled');
INSERT INTO returns_status VALUES (4, 1, 'Complete');


Add SQL Statement:

insert into admin_files (admin_files_id, admin_files_name, admin_files_is_boxes, admin_files_to_boxes, admin_groups_id) values ('124', 'returns.php', '1', '0', '1');
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Download feature returns permission denied/cannot mod header Arrgh osCMax v2 Features Discussion 0 12-23-2005 10:31 PM
about the BTS system newtothis osCMax v2 Installation issues 1 07-13-2005 04:54 PM
Setting up information pages - shipping & returns...etc wyldeone osCMax v1.7 Discussion 1 03-19-2005 05:41 AM
FAQ System sabre2000 osCMax v1.7 Discussion 1 02-16-2005 08:51 AM
System ERD required. nagra101 osCommerce 2.2 Installation Help 0 01-06-2003 12:15 PM


All times are GMT -8. The time now is 08:24 PM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
Copyright 2008 osCMax