@model HeuristicLab.Services.Optimization.Web.Models.InvoiceModel @{ ViewBag.Title = "Invoices Overview"; }
Invoice Id | Payment | Payment Due | Order Id | Invoice Lines | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
@overdueInvoice.InvoiceId | @((from i in overdueInvoice.InvoiceLines select i.Quantity * i.ProductPrice).Sum()) Euro | @overdueInvoice.Due | @overdueInvoice.OrderId |
|
Invoice Id | Payment | Payment Due | Order Id | Invoice Lines | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
@openInvoice.InvoiceId | @((from i in openInvoice.InvoiceLines select i.Quantity * i.ProductPrice).Sum()) Euro | @openInvoice.Due | @openInvoice.OrderId |
|
Invoice Id | Payment | Payment Due | Order Id | Invoice Lines | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
@paidInvoice.InvoiceId | @((from i in paidInvoice.InvoiceLines select i.Quantity * i.ProductPrice).Sum()) Euro | @paidInvoice.Due | @paidInvoice.OrderId |
|