Get up to 80 % extra points for free! More info:

Lesson 26 - E-shop in ASP.NET Core MVC - Order Completion Wizard 3

From the previous lesson, E-shop in ASP.NET Core MVC - Order Completion Wizard 2, we got three of the four parts of the order completion wizard implemented. We're going to finish the wizard today adding an order summary and we're going to shop for the first time in our online store. In the attachment of today's ASP.NET core tutorial, you'll find the current project to download.

Order Completion Wizard - Finishing

Recapitulation

The final step in the wizard will be to review the order.

The order recap

After clicking the "Order" button, we'll finish the order and send the user an email with this summary. To do this, we'll have to prepare some methods in the business layer again.

OrderManager

We'll add a method to OrderManager for completing the current order. In this method we'll set the order properties related to the seller and mainly set its status to COMPLETED. We'll also delete the order from Session because it will no longer be the current order for us:

public void CompleteOrder(string emailBody)
{
    var order = GetOrder(null, false);
    AddProducts(order.DeliveryProductId.Value, 1, order.EOrderId, true);
    var settings = accountingSettingManager.GetSetting();
    order.SellerId = settings.Seller.PersonId;
    order.SellerAddressId = settings.Seller.AddressId;
    order.SellerPersonDetailId = settings.Seller.PersonDetailId;
    order.SellerBankAccountId = settings.Seller.BankAccountId;
    order.AccountantDetailId = settings.AccountantDetailId;
    order.StateId = OrderState.COMPLETED;
    eOrderRepository.Update(order);
    httpContext.Session.Remove("orderId");
    SendOrderEmail(order, emailBody);
}

Another method we're going to create will send an email with the order summary to the buyer. The whole summary is passed as HTML code as parameter:


 

...End of the preview...
Continue further

You will gain knowledge worth hundreds of thousands for a few crowns

You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.

Buy this course

Buy all currently available lessons with exercise submitting and other features for just $89.10
Current account balance $0
By buying this package, you'll have access to all 34 articles (34 lessons) in this course.

Before buying this article, you have to buy the previous one

This article is licensed: Premium no-reselling II, by buying this article, you agree with the terms of use.

Commercial article (licence no-reselling)

Commercial article (licence no-reselling)

This article is based on many years of experience in the IT field, and describes how to develop a professional commercial product or parts, that can be directly used to generate profit or to get as a gate into the industry.

This knowledge is only for the members of our community who are working their way up to become IT professionals. Therefore, this knowledge is only available in exchange for credits. You can use the source code from this article for one commercial project. However, you will not be able to resell it. Simply put, you can't buy our article once and then sell our code multiple times. If you need to use this code a bit more extensively, we are ready to discuss Commercial licence options with you. You can find more info on this in the following article Licence.

Are you ready to become a professional? All you have to do is click here!.

Article description

Requested article covers this content:

In this ASP.NET tutorial, we'll display the order summary and send an email to the customer. We'll buy for the first time in our online store.

You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.

Article has been written for you by Martin Petrovaj
Avatar
Activities