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.
Il y a 1 an
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.)
Il y a 1 an
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? :))))
Il y a 1 an
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?
Il y a 1 an
yes it can do by customize and by creating a separate plugin
its all up to your equirement
Il y a 1 an
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.