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 ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| A new project_project entry has been added: RMA Returns system Quote:
|
|
#2
| |||
| |||
| 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. |
|
#3
| |||
| |||
| 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. |
|
#4
| |||
| |||
| 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 |
|
#5
| |||
| |||
| 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? |
|
#6
| |||
| |||
| I figured why I was getting problems: In php.ini find this: short_open_tag and make sure it's on |
|
#7
| |||
| |||
| 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'); |
| Thread Tools | |
| |
| ||||
| 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 |