Is it possible to allow customer to mark his order as delivered on the order details page?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
один год назад
RE: "... the code for MARK AS DELIVERED button for front end ... "
If you are expecting that you can do this feature by only modifying the .cshtml page,  then  you will be disappointed.  Although razor code can probably 'resolve' the services you need to get the Shipment Id, the button needs to 'submit' to a controller action to update the shipment status (which will then updated the order status.)
один год назад
New York wrote:
RE: "... the code for MARK AS DELIVERED button for front end ... "
If you are expecting that you can do this feature by only modifying the .cshtml page,  then  you will be disappointed.  Although razor code can probably 'resolve' the services you need to get the Shipment Id, the button needs to 'submit' to a controller action to update the shipment status (which will then updated the order status.)


So how to be in this case? :))))
один год назад
New York wrote:
RE: "... the code for MARK AS DELIVERED button for front end ... "
If you are expecting that you can do this feature by only modifying the .cshtml page,  then  you will be disappointed.  Although razor code can probably 'resolve' the services you need to get the Shipment Id, the button needs to 'submit' to a controller action to update the shipment status (which will then updated the order status.)


Is it possible to do it with a separate plugin?
один год назад
yes it can do by customize and by creating a separate plugin
its all up to your equirement
один год назад
Yes, a custom Widget plugin would probably work best.  (The widget would contain the button, and could be placed in a 'zone' on your existing .cshtml page.)
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.