Page 1 of 1
Order Notes
#1
Posted 26 January 2012 - 08:06 AM
Is there a way to show the Notes from an order in the /shop/orders/ screen?
In the List Setup I can add Customer Notes but not the Notes from the order that we add.
thanks
In the List Setup I can add Customer Notes but not the Notes from the order that we add.
thanks
#2
Posted 29 January 2012 - 02:57 PM
Hi,
It is possible to add this column to the list by adding a new relation to the Shop_Product model in a custom module:
I wouldn't like to make it a default feature, because displaying multi-line notes posted by different users in a single list row involves some complications. Feel free to extend the order model by yourself.
Thank you
It is possible to add this column to the list by adding a new relation to the Shop_Product model in a custom module:
public function subscribeEvents()
{
Backend::$events->addEvent('shop:onExtendOrderModel', $this, 'extend_order_model');
}
public function extend_order_model($product)
{
$product->define_relation_column('notes', 'notes', 'Notes ', db_varchar, '@note');
}I wouldn't like to make it a default feature, because displaying multi-line notes posted by different users in a single list row involves some complications. Feel free to extend the order model by yourself.
Thank you
#3
Posted 30 January 2012 - 01:26 AM
Aleksey, on 29 January 2012 - 02:57 PM, said:
I wouldn't like to make it a default feature, because displaying multi-line notes posted by different users in a single list row involves some complications. Feel free to extend the order model by yourself.
Thank you
Hi Aleksey, Yes I understand it could cause display issues if the notes are rather long. Maybe a useful modification (for all users) would be a feature to enable the note column BUT instead of displaying the text it could display an icon, to alert the user that there are notes in the order screen to read. If there are no notes then no icon is displayed. I think most users would find that useful?
#4
Posted 30 January 2012 - 02:14 AM
Hi!
I agree, it would be useful. I added this request to our internal feature list.
Thank you
I agree, it would be useful. I added this request to our internal feature list.
Thank you
#5
Posted 01 February 2012 - 08:44 AM
That's great news Aleksey - thank you.
Would this be a quick job or is it going on to the roadmap and take some time?
Would this be a quick job or is it going on to the roadmap and take some time?
#7
Posted 06 February 2012 - 04:48 PM
Hi!
We added the Has Notes column to the Order list.
Thank you
We added the Has Notes column to the Order list.
Thank you
Share this topic:
Page 1 of 1

Help













