- Posts: 90
- Thank you received: 1
Get serial to show up in order export
Please Log in or Create an account to join the conversation.
It requires a little HikaShop plugin to be triggered by the event "onBeforeOrderExport(&$rows, &$view)" to add the serial into the exported rows.
The best solution is to add this code into HikaSerial directly and add some options for export (with the first one, the activation of the feature).
I didn't implement this feature before because the export system was planned to be improved (with new triggers and new features) but this project has been delayed.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
I am implementing it.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
Thanks!
Please Log in or Create an account to join the conversation.
There is no "fix", it is a feature to implement.
The serials are stored in another table than the HikaShop order table. So, thanks to the trigger "onBeforeOrderExport" you can update the content of the export to add your own values (or modify the current values).
The idea is to load the serials for the orders, add a new column in the rows and populate the data with the serials.
"Fixing" it is the same thing than implementing the feature.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
The feature is now implemented in HikaSerial, it would be included in the next release during next week.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
I was told in another thread that this release won't be coming for another few weeks. This lack of serial in the export may actually keep us from launching our store, (because we need a valid export file that we can import into our homegrown CRM database)... Is there any way that you can instruct me how to achieve this without the update, or would you recommend just waiting to launch our store after the update is out.
Please Log in or Create an account to join the conversation.
The new version is accessible in download (not in the automatic update).
You can download it thanks to the "your subscriptions" section.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
EDIT:
So this is still 2.1.1?
Please Log in or Create an account to join the conversation.
I don't know of what you're talking about but, I am talking about HikaSerial.
www.hikashop.com/fr/hikashop/120-hikaserial-change-log.html
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
My custom views will be preserved during the update, right?
Please Log in or Create an account to join the conversation.
Sure.
Overridden views are not deleted or modify during the update.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
I am not sure how to do this. I tried working in the mass actions section but was confused.
Could you let me know the steps or point me to tutorial that explains how to export order data along with the HikaSerial number purchased?
Thanks! -- Steven
Please Log in or Create an account to join the conversation.
When you are in the order listing, you have an "export" button which allow you to export your orders.
If you select some orders, they will be exported. If you select any order, all listed order will be exported (in all pages).
You can use the filters in order to filter the order you want to export.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
I had not seen this button on the orders page.
I think this will get me what i need.
I can export the orders and then do some excel cleanup to get down to the data that I am really after.
Is it possible to create a custom report on the orders that would display just the columns that I need and allow me to export them?
Thanks! -- Steven
Please Log in or Create an account to join the conversation.
It is possible to create a custom plugin in order to change the columns exported.
It is the same trigger than HikaSerial uses in order to add his columns, so you can use it too if you want to remove some.
www.hikashop.com/support/documentation/6...#onBeforeOrderExport
onBeforeOrderExport(&$rows,&$this)
This function will be triggered by HikaShop before exporting the orders. $rows is an array of all the orders.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.