We implement a new Feature for the QUIQQER Order Module.
The QUIQQER Order Module integrates a complete order management in QUIQQER. The QUIQQER Order Module not only integrates an order management, actually a complete ordering process with integrated payment methods API and automated invoicing.
Version 1 will be released in the next few weeks / months.
It must be possible to open a single order in User Frontend Profile.
At the moment there is only the possibility to view an order in the order list and download the PDF invoice. This is not user-friendly.
The following things must be possible:
Loads the order into a DOM Node:
require([
'package/quiqqer/order/bin/frontend/controls/order/Order'
], function (Order) {
new Order({
hash : ORDER_HASH,
events: {
onLoad: function (OrderControl) {
}
}
}).inject(HtmlNode);
});
Opens the order in a QUI Window:
require([
'package/quiqqer/order/bin/frontend/controls/order/Window'
], function (Window) {
new Window({
hash : ORDER_HASH
}).open();
});
We tried to assign the commits as far as we could. The complete commit log can you find [here]
Thanks for reading
Hen, for PCSG Developers