In admin window, how to add a column to admin orders

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
alfredlaggner
Posts: 29
Joined: 12 Oct 2016, 03:18

In admin window, how to add a column to admin orders

Post by alfredlaggner » 26 Oct 2016, 20:23

I am designing a store pickup system. After customer orders products they come to the store to pick up the order. In order to find the order, I need their name in the order column. I could not find a class that does it. How can this be done?

User avatar
aimeos
Administrator
Posts: 7836
Joined: 01 Jan 1970, 00:00

Re: In admin window, how to add a column to admin orders

Post by aimeos » 27 Oct 2016, 12:23

Where do you exactly want to add this information? Could you post a screenshot?
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

alfredlaggner
Posts: 29
Joined: 12 Oct 2016, 03:18

Re: In admin window, how to add a column to admin orders

Post by alfredlaggner » 27 Oct 2016, 12:45

Attached is a screen shot
Attachments
Capture.PNG
Capture.PNG (65.57 KiB) Viewed 2934 times

User avatar
aimeos
Administrator
Posts: 7836
Joined: 01 Jan 1970, 00:00

Re: In admin window, how to add a column to admin orders

Post by aimeos » 28 Oct 2016, 13:20

As editor you can search for names in the administration interface if you add a line in the search bar with "Order base address lastname" for example.

If you need to add the name of the payment address to the list, you have to extend from the class https://github.com/aimeos/ai-admin-exta ... andard.php, add your own searchItems() method (use https://github.com/aimeos/ai-admin-exta ... se.php#L98 as base) and overwrite the ExtJS list view (https://github.com/aimeos/ai-admin-exta ... /ListUi.js).

An alternative would be to create your own order panel in the simplified admin interface, which is much easier because it's only PHP, HTML and JS:
- http://admin.demo.aimeos.org/default/jq ... ct?lang=en
- https://github.com/aimeos/ai-admin-jqad ... dmin/jqadm
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

alfredlaggner
Posts: 29
Joined: 12 Oct 2016, 03:18

Re: In admin window, how to add a column to admin orders

Post by alfredlaggner » 30 Oct 2016, 23:50

My I suggest a change in your administrator program and add "name" or "last name" as an optional column to extend the order view. You already have I would not be surprised the more users will see this a welcome extension. The list of orders as it right now looks very inaccessible.
:)
Let me know what you think.

User avatar
aimeos
Administrator
Posts: 7836
Joined: 01 Jan 1970, 00:00

Re: In admin window, how to add a column to admin orders

Post by aimeos » 31 Oct 2016, 18:12

We want to focus more on extending the simplified JQAdm interface to get a better usability. It's rather hard in the ExtJS based expert mode.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply