[Released] Orders and Comments AT-A-GLANCE
63 posts
• Page 1 of 4 • 1, 2, 3, 4
[Released] Orders and Comments AT-A-GLANCE
This modification is based on 2 well known contributions for osCommerce.
UPDATED TO WORK WITH OpenCart 1.5.x
A MUST-HAVE for stores with large numbers of orders every day!
What it does:
Dowload
!! You need to feel comfortable with editing core-files !!
ALL CREDITS GO TO: AFWOLLIS and MARVMEN21
UPDATED TO WORK WITH OpenCart 1.5.x
A MUST-HAVE for stores with large numbers of orders every day!
What it does:
This time-saving contribution adds 3 icons to the admin orders listing and on the admin dashboard. When you rollover any of these icons, it displays the products of that order, the comments made by the customer or the comments added by the store-owner... WITHOUT HAVING TO GO INTO THE ORDER!
The blue-icon is for ordered Products.
The green-icon is for customer comments.
The red-icon is for store comments.
If there are no comments (or products) the colored icons will not show.
Dowload
!! You need to feel comfortable with editing core-files !!
ALL CREDITS GO TO: AFWOLLIS and MARVMEN21
- Attachments
-
- Customer comments
- Customer-comments.jpg (50.29 KiB) Viewed 4778 times
-
- Ordered Products
- Ordered-Products.jpg (49.1 KiB) Viewed 4778 times
-
- Dashboard (Orderlist)
- Dashboard.jpg (37.4 KiB) Viewed 4778 times
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
-

i2Paq - Global Moderator
- Posts: 9747
- Joined: Mon Nov 09, 2009 11:00 am
- Location: Winkel - The Netherlands
Re: [Released] Orders and Comments AT-A-GLANCE
Wow awesome and looks much better than the original at-a-glance

Donate!|OpenCart Basics|GeoZones
Help me get more development cloud storage - Click Here to get DropBox
-

Qphoria - Administrator
- Posts: 18197
- Joined: Mon Jul 21, 2008 7:02 pm

Re: [Released] Orders and Comments AT-A-GLANCE
Qphoria wrote:Wow awesome and looks much better than the original at-a-glance
Thank you for the compliment
I agree, as for as I can see a job well done

As far as I'm concerned this should be in 1.5.x somewhere.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
-

i2Paq - Global Moderator
- Posts: 9747
- Joined: Mon Nov 09, 2009 11:00 am
- Location: Winkel - The Netherlands
Re: [Released] Orders and Comments AT-A-GLANCE
There is one minor bug.. it is missing:
from the public function webme_getOrderProducts() { function
But I've fixed that and created a vQmod script for it. Tested & Attached.
- Code: Select all
$this->data['glance_order'] = $this->language->get('glance_order');
from the public function webme_getOrderProducts() { function
But I've fixed that and created a vQmod script for it. Tested & Attached.
- Attachments
-
At_a_Glance_OCv1.4.X.xml- (22.1 KiB) Downloaded 248 times

Donate!|OpenCart Basics|GeoZones
Help me get more development cloud storage - Click Here to get DropBox
-

Qphoria - Administrator
- Posts: 18197
- Joined: Mon Jul 21, 2008 7:02 pm

Re: [Released] Orders and Comments AT-A-GLANCE
updated the vQmod for a few people whose mysql is strict and doesn't allow spaces between the CONCAT function

Donate!|OpenCart Basics|GeoZones
Help me get more development cloud storage - Click Here to get DropBox
-

Qphoria - Administrator
- Posts: 18197
- Joined: Mon Jul 21, 2008 7:02 pm

Re: [Released] Orders and Comments AT-A-GLANCE
First of all I want to say Thanks to Norman for an idea and testing.
Qphoria, thanks for report.
Norman has told me about that error and it should be fixed already.
And thanks for the vQmod script.
I would definitely try it
UPD
I've downloaded archive from the extensions-area and found a nuance, which may lead to confusion:
there is a fix (~554 line in READMEs) for an error described above:
But for this ~time-of-editing there are will NO such line-number and row.
We need that fix (a missed row only) be placed on a ~592 line in READMEs:
So, Norman, could you change the readme files and re-upload archive please?
Thanks
Qphoria, thanks for report.
Norman has told me about that error and it should be fixed already.
And thanks for the vQmod script.
I would definitely try it
UPD
I've downloaded archive from the extensions-area and found a nuance, which may lead to confusion:
there is a fix (~554 line in READMEs) for an error described above:
- Code: Select all
================= ~1274 line =================
Find:
===
$this->data['column_product'] = $this->language->get('column_product');
===
Add before:
=======
$this->data['glance_order'] = $this->language->get('glance_order');
=======
But for this ~time-of-editing there are will NO such line-number and row.
We need that fix (a missed row only) be placed on a ~592 line in READMEs:
- Code: Select all
/* webme - Orders AT-A-GLANCE - mod - start */
public function webme_getOrderProducts() {
$this->data['orderID'] = $this->request->get['order_id'];
$this->data['products'] = array();
$this->load->model('sale/order');
$order_info = $this->model_sale_order->getOrder($this->data['orderID']);
if ($order_info) {
$this->load->language('sale/order');
$this->data['heading_title'] = $this->language->get('heading_title');
$this->data['text_wait'] = $this->language->get('text_wait');
// here it is - the missed row start
$this->data['glance_order'] = $this->language->get('glance_order');
// here it is - the missed row end
$this->data['column_product'] = $this->language->get('column_product');
So, Norman, could you change the readme files and re-upload archive please?
Thanks
- afwollis
- Posts: 110
- Joined: Mon Jan 10, 2011 9:41 pm
- Location: Ukraine
Re: [Released] Orders and Comments AT-A-GLANCE
I have updated the readme's and re-uploaded the zip, version is now 1.1
I have also added the vQmod as a separate download, thanks Qphoria!
I have also added the vQmod as a separate download, thanks Qphoria!
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
-

i2Paq - Global Moderator
- Posts: 9747
- Joined: Mon Nov 09, 2009 11:00 am
- Location: Winkel - The Netherlands
Re: [Released] Orders and Comments AT-A-GLANCE
Hello iPaq et al,
I downloaded this from extensions and - is the folder view/javascript/jquery/bt/ supposed to be empty or am I missing some js files.
Thanks
I downloaded this from extensions and - is the folder view/javascript/jquery/bt/ supposed to be empty or am I missing some js files.
Thanks
- jty
- Posts: 1163
- Joined: Sat Aug 30, 2008 12:19 am
Re: [Released] Orders and Comments AT-A-GLANCE
jty wrote:Hello iPaq et al,
I downloaded this from extensions and - is the folder view/javascript/jquery/bt/ supposed to be empty or am I missing some js files.
Thanks
Nôpe, I will re-upload it tonight.
Sorry for the inconvenience.
Edit: Download 1.3, missing files are added.
Thanks for mentioning!
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
-

i2Paq - Global Moderator
- Posts: 9747
- Joined: Mon Nov 09, 2009 11:00 am
- Location: Winkel - The Netherlands
Re: [Released] Orders and Comments AT-A-GLANCE
Well that was super fast service indeed and the mod is brilliant
I have it working using Q's vqmod
Thank-you to you + afwollis + Q
I can't rate it on the extensions page cuz we can't rate without buying anymore and I can't buy cuz it's free
I have it working using Q's vqmod
Thank-you to you + afwollis + Q
I can't rate it on the extensions page cuz we can't rate without buying anymore and I can't buy cuz it's free

- jty
- Posts: 1163
- Joined: Sat Aug 30, 2008 12:19 am
Re: [Released] Orders and Comments AT-A-GLANCE
i2Paq, how could you forget about js?
jty, thanks for "report"
jty, thanks for "report"
- afwollis
- Posts: 110
- Joined: Mon Jan 10, 2011 9:41 pm
- Location: Ukraine
Re: [Released] Orders and Comments AT-A-GLANCE
jty wrote:I can't rate it on the extensions page cuz we can't rate without buying anymore and I can't buy cuz it's free
I'll fix that

Donate!|OpenCart Basics|GeoZones
Help me get more development cloud storage - Click Here to get DropBox
-

Qphoria - Administrator
- Posts: 18197
- Joined: Mon Jul 21, 2008 7:02 pm

Re: [Released] Orders and Comments AT-A-GLANCE
Great mod, thanks!
- Ion_Cannon
- Posts: 30
- Joined: Fri Jan 28, 2011 3:11 am
Re: [Released] Orders and Comments AT-A-GLANCE
There's something wrong with the "read me" file 
The codes & words are all bundled together I don't know how to follow the instructions.
Can somebody help me please?

The codes & words are all bundled together I don't know how to follow the instructions.
Can somebody help me please?
I'm using Opencart 1.5.4.1 & vQmod 2.3.2.
-

yiyinlah - Posts: 169
- Joined: Thu Sep 23, 2010 5:19 am
- Location: Singapore
Re: [Released] Orders and Comments AT-A-GLANCE
Use a different reader 

Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
-

i2Paq - Global Moderator
- Posts: 9747
- Joined: Mon Nov 09, 2009 11:00 am
- Location: Winkel - The Netherlands
Re: [Released] Orders and Comments AT-A-GLANCE
is the vqmod working with oc 1.4.9.4?
You want to thank me for my time!
Click here to donate
Click here to donate- marvmen21
- Posts: 362
- Joined: Mon Nov 08, 2010 8:54 pm
Re: [Released] Orders and Comments AT-A-GLANCE
marvmen21 wrote:is the vqmod working with oc 1.4.9.4?
yes

Donate!|OpenCart Basics|GeoZones
Help me get more development cloud storage - Click Here to get DropBox
-

Qphoria - Administrator
- Posts: 18197
- Joined: Mon Jul 21, 2008 7:02 pm

Re: [Released] Orders and Comments AT-A-GLANCE
yiyinlah wrote:There's something wrong with the "read me" file
The codes & words are all bundled together I don't know how to follow the instructions.
Can somebody help me please?
Like i2paq said, you need a reader that handles certain formats. Notepad only supports Ansi and so it looks strange. Get notepad++ and try. Or the author could also save the files in the more compatible format but it likely won't happen.

Donate!|OpenCart Basics|GeoZones
Help me get more development cloud storage - Click Here to get DropBox
-

Qphoria - Administrator
- Posts: 18197
- Joined: Mon Jul 21, 2008 7:02 pm

Re: [Released] Orders and Comments AT-A-GLANCE
Is there an update to v.1.4.9.4?
Where to download notepad ++?
I'm still using notepad. haha
Where to download notepad ++?
I'm still using notepad. haha
I'm using Opencart 1.5.4.1 & vQmod 2.3.2.
-

yiyinlah - Posts: 169
- Joined: Thu Sep 23, 2010 5:19 am
- Location: Singapore
Re: [Released] Orders and Comments AT-A-GLANCE

Donate!|OpenCart Basics|GeoZones
Help me get more development cloud storage - Click Here to get DropBox
-

Qphoria - Administrator
- Posts: 18197
- Joined: Mon Jul 21, 2008 7:02 pm

63 posts
• Page 1 of 4 • 1, 2, 3, 4
Who is online
Users browsing this forum: freddy87 and 13 guests













